Quiz1 Flashcards
The ____ method displays output on the screen and positions the cursor on the next line.
Println()
A(n) ____ is a scheme or mechanism that provides a way to group similar classes.
namespace
Programmers use a computer program called a(n) ____ to translate their high-level language statements into machine code.
compiler
A(n) ____ defines the circumstances under which the method can be accessed.
access modifier
A class describes the attributes and methods of every object that is a(n) ____, or example, of that class.
instance
____ are nonexecuting statements that you add to document a program.
Program comments
To achieve a working program that accomplishes the tasks it is meant to accomplish, you must remove all syntax and logical errors from the program. This process is called ____ the program.
debugging
A(n) ____ describes potential objects.
class
____ provides the ability to extend a class so as to create a more specific class.
Inheritance
Programmers sometimes refer to encapsulation as using a “____.”
black box
When programmers adopt the style of capitalizing the first letter of all new words in an identifier, even the first one, they call the style ____.
Pascal casing
A ____ programming language allows you to use a vocabulary of reasonable terms such as “read,” “write,” or “add” instead of the sequence of on/off switches that perform these tasks.
high-level
For convenience, the individual operations used in a computer program often are grouped into logical units called ____.
methods
After you write and save a program you must ____ it into intermediate language.
compile
When you write a(n) ____ program, you use your knowledge of a programming language to create and name computer memory locations that can hold values, and you write a series of steps or operations to manipulate those values.
procedural