Java Games: Flashcards, matching, concentration, and word search.

Java 1-3 Vocab Review

Review vocab words for Chapter 1-3.

AB
binaryThe base-2 number system consisting of digits 0 and 1.
camelcaseA convention for naming variables that capitalizes the first letter of every word without spaces.
classA collection of code that serves a common purpose.
code walk-throughA process of learning or testing a section of code, one line at a time, while manually recording variable values and other important information.
commentsHelpful information written into your program, but ignored by the compiler.
compilerTo convert human-readable code to machine-readable code.
concatenationAdding two String objects together using the + operator.
integer overflowA condition that occurs when a very large integer exceeds its storage capacity.
iteration/iterateAlso called looping, the process of repeating the same steps using a convenient construct, such as a for or while statement.
Java Virtual Machine JVMSoftware that allows a Java program to run on a wide variety of operating systems.
methodSimilar to a function or procedure, a method is a collection of code that describes what an object can do, for example setTitle("").
nested loop A looping construct that consists of two loops, one loop inside of another  
objectA representation of data that serves a similar purpose or is related in some way.
object-orientedA type of programming based on objects that represent data.
operatorThe order in which operators are executed.
pseudocodeA documentation style that is structured like a programming language but does not use the syntax of the language.
static methodDefines an object but do not require instance data. Therefore, they can be called directly with the class name, such as Math.random().
static variable Also called a class variable, it is shared across all instances (objects) of the class. All instances have access to the value stored in the variable. 
while loopA way to iterate using a conditional statement that evaluates to true or false, such as (x >= 0).
whitespaceBlank or non-visible characters such as spaces, tabs and newlines.


Computer Instructor
Capital Christian School
CA

This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities