Difference between revisions of "Glossary"

From CompSciWiki
Jump to: navigation, search
(- B -)
Line 6: Line 6:
 
*<div id="array">'''Array'''- An object that can contain many values of the same type.  '''[ABU]'''</div>
 
*<div id="array">'''Array'''- An object that can contain many values of the same type.  '''[ABU]'''</div>
 
*<div id="array_length">'''Array Length''' - Array length means the maximum size of the array. '''[ABU]'''</div>
 
*<div id="array_length">'''Array Length''' - Array length means the maximum size of the array. '''[ABU]'''</div>
 +
  
 
====- B -====
 
====- B -====
 
*<div id="binary">'''Binary''' - A numbering system that uses only the digits 0 and 1.  Any number can be represented in binary: 1, 2, 3, 4, 5, ... = 1, 10, 11, 100, 101, ...</div>
 
*<div id="binary">'''Binary''' - A numbering system that uses only the digits 0 and 1.  Any number can be represented in binary: 1, 2, 3, 4, 5, ... = 1, 10, 11, 100, 101, ...</div>
 +
  
 
====- C -====
 
====- C -====
 
*<div id="control_statement">'''Control Statement''' - A statement that returns a boolean value usually used to denote conditions for an if statement or the end case of a loop.</div>
 
*<div id="control_statement">'''Control Statement''' - A statement that returns a boolean value usually used to denote conditions for an if statement or the end case of a loop.</div>
 +
  
 
====- H -====
 
====- H -====
 
*<div id="hexadecimal">'''Hexadecimal''' - (sometimes abbreviated to ''hex'') A numbering system that uses a total of 16 digits: 0-9, A-F.  A-F represent the decimal values 10-15, with the hex value 10 representing 16, hex 11 representing 17, and so on.</div>
 
*<div id="hexadecimal">'''Hexadecimal''' - (sometimes abbreviated to ''hex'') A numbering system that uses a total of 16 digits: 0-9, A-F.  A-F represent the decimal values 10-15, with the hex value 10 representing 16, hex 11 representing 17, and so on.</div>
 +
  
 
====- M -====
 
====- M -====
 
*<div id="main_method">'''Main Method''' - The method which Java runs when it is told to execute a class.</div>
 
*<div id="main_method">'''Main Method''' - The method which Java runs when it is told to execute a class.</div>
 +
  
 
====- N -====
 
====- N -====
 
*<div id="nested_method_call">'''Nested Method Call''' - A method call in which another method call is used as an argument.</div>
 
*<div id="nested_method_call">'''Nested Method Call''' - A method call in which another method call is used as an argument.</div>
 +
  
 
====- P -====
 
====- P -====
 
*<div id="parameter">'''Parameter''' - An input value which that a method expects.</div>
 
*<div id="parameter">'''Parameter''' - An input value which that a method expects.</div>
 +
  
 
====- R -====
 
====- R -====
 
*<div id="return_value">'''Return Value''' - A value that a method which is finished running passes to its caller.</div>
 
*<div id="return_value">'''Return Value''' - A value that a method which is finished running passes to its caller.</div>
 
*<div id="reference_variable">'''Reference Variable''' - A variable that is used as a pointer (or an address) to an object. '''[ABU]'''</div>
 
*<div id="reference_variable">'''Reference Variable''' - A variable that is used as a pointer (or an address) to an object. '''[ABU]'''</div>
 +
  
 
====- U -====
 
====- U -====
 
*<div id="user">'''User''' - The person who is giving input to and interpreting output from your program.</div>
 
*<div id="user">'''User''' - The person who is giving input to and interpreting output from your program.</div>
 
*<div id="user-defined_method">'''User-Defined Method''' - A section of code which is declared once in a program, then used by other code sections.</div>
 
*<div id="user-defined_method">'''User-Defined Method''' - A section of code which is declared once in a program, then used by other code sections.</div>

Revision as of 20:17, 10 September 2007


Wiki 1010 Table of Contents

Chapter #

This page contains a glossary of terms used within the wiki along with definitions.

  Write a Program a Day Case Studies





Table of Contents


Glossary

- A -

  • Argument - A value passed to a method's parameter during a method call.
  • Array- An object that can contain many values of the same type. [ABU]
  • Array Length - Array length means the maximum size of the array. [ABU]


- B -

  • Binary - A numbering system that uses only the digits 0 and 1. Any number can be represented in binary: 1, 2, 3, 4, 5, ... = 1, 10, 11, 100, 101, ...


- C -

  • Control Statement - A statement that returns a boolean value usually used to denote conditions for an if statement or the end case of a loop.


- H -

  • Hexadecimal - (sometimes abbreviated to hex) A numbering system that uses a total of 16 digits: 0-9, A-F. A-F represent the decimal values 10-15, with the hex value 10 representing 16, hex 11 representing 17, and so on.


- M -

  • Main Method - The method which Java runs when it is told to execute a class.


- N -

  • Nested Method Call - A method call in which another method call is used as an argument.


- P -

  • Parameter - An input value which that a method expects.


- R -

  • Return Value - A value that a method which is finished running passes to its caller.
  • Reference Variable - A variable that is used as a pointer (or an address) to an object. [ABU]


- U -

  • User - The person who is giving input to and interpreting output from your program.
  • User-Defined Method - A section of code which is declared once in a program, then used by other code sections.