Test questions Flashcards
[T/F]
A CPU really only understands instructions that are written in machine language
True
[T/F]
Software engineering is a field that encompasses designing, writing, testing, debugging, documenting, modifying, and maintaining computer programs
True
[T/F]
Machine language is an example of a high-level language
False
[T/F]
In programming, the terms “line” and “statement” always mean the same thing
False
[T/F]
Pseudocode is a form of program statement that will always evaluate to “false”
False
[T/F]
Escape sequences are always stored internally as a single character
True
[T/F]
The cin «_space;statement will stop reading input when it encounters a newline character
true
[T/F]
If you do not follow a consistent programming style, your programs will generate compiler errors.
False
[T/F]
The C++ language requires that you give variables names that indicate what the variables are used for
false
[T/F]
When a program uses the setw manipulator, the iosetwidth header file must be included in a preprocessor directive
False
[T/F]
The preprocessor executes after the compiler
False
[T/F]
Floating point constants are normally stored in memory as doubles
True
[T/F]
When the fixed manipulator is used, the value specified by the setprecision manipulator will be the number of digits to appear after the decimal point.
True
[T/F]
In c++, key words are written in all lowercase letters.
True
[T/F]
A variable called “average” should be declared should be declared as an integer data type because it will probably hold data that contains decimal points
False
You want the user to enter the length, width, and height from the keyboard. What would be the correct cin statement?
cin.get(length, width, height)
This term refers to the programmer reading the program from the beginning and stepping through each statement
desk checking
This is a set of rules that must be followed when constructing a program
syntax
In a broad sense, the two primary categories of programming languages are:
low-level and high-level
An integrated Development Environment typically consists of:
a text editor, a debugger, and a compiler
What will the following code display:
int number = 7;
cout «_space;“The number is “ «_space;“number” «_space;endl;
The number is number
The _____ causes a program to wait until information is typed at the keyboard and the enter key is presses
cin object
During which stage does the central processing unit retrieve from main memory the next instruction in the sequence of program instructions?
fetch
The purpose of a memory address is:
To identify the location of a byte in memory