Difference between revisions of "Glossary"

From CompSciWiki
Jump to: navigation, search
(- A -)
(- A -)
Line 5: Line 5:
 
*'''Argument''' - A value passed to a method's parameter during a method call.
 
*'''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'''- An object that can contain many values of the same type.  '''[ABU]'''
 +
*'''Array Length''' - Array length means the maximum size of the array.
  
 
====- C -====
 
====- C -====

Revision as of 04:20, 22 March 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.

- 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.

- 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.