M01 Flashcards
The basic commands that a computer performs are input, output, storage, and performance of arithmetic and logical operations.
True
Main memory is directly connected to the CPU.
True
When the computer is turned off, everything in secondary memory is lost.
False
The devices that feed data and programs into computers are called output devices.
False
Information stored in main memory must be transfered to some other device for permanent storage.
True
The device that stores information permanently (unless the device becomes unusable or you change the information by rewriting it) is called primary storage.
False
The command that does the linking on Visuall C++ 2010 Express and Visual Studio 2010 is Make or Remake.
False
When you compile your program, the compiler identifies the logic errors and suggests how to correct them.
False
To develop a program to solve a problem, you start by analyzing the problem.
True
C++ programs have always been portable from one compiler to another.
False
Several categories of computers exist, such as ____.
mainframe, midsize, and micro
The basic commands that a computer performs are ___, and performance of arithmetic and logical operations.
input, output, storage
Main memory is called ____.
random access memory
The ___ is the brain of the computer and the single most expensive peice of harware in your personal computer.
CPU
Main memory is an ordered sequence of items, called ___.
memory cells
The devices that feed data and programs into computers are called ___ devices.
input
The devices that the computer uses to display results are called ___ devices.
output
When the power is switched off, everything in ___ is lost.
main memory
___ progrmas perform a specific task.
Application
___ represent information with a sequence of 0s and 1s.
Digital signals
In C++ reserved words are the same as predefined identifiers.
False
The maximum number of significant digits in values of the double type is 15.
True
The maximum number of significant digits in float values is up to 6 or 7.
True
An operator that has only one operand is called a unique operator.
False
If a C++ arithmetic expression has no parentheses, operators are evaluated from left to right.
True
A mixed arithmetic expression contains all operands of the same type.
False
Suppose a = 5. After the execution of the statement ++a; the value of a is 6.
True
The escape sequence /r moves the insertion point to the beginning of the next line.
True
A comma is also called a statement terminator.
False
Suppose that sum is an int variable. The statement sum += 7; is equivalent to the statement sum = sum + 7.
True
The ___ rules of programming language tell you which statements are legal, or accepted by the programming language.
syntax
Is a reserved word in C++
char
___ is a valid char value.
‘A’
An example of a floating point data type is ____.
double
The memory allocated for a float value is ___ bytes.
four
The value of the expression 33/10, assuming both values are integral data types is ____.
3
The value of the expression 17 % 7 is ____.
3
The expression static_cast
9
A sequence of eight bits is called a ____.
byte
The digit 0 or 1 is called a binary digit or ____.
bit
The term GB refers to ___.
gigabyte
___ consists of 65,536 characters.
Unicode
A program called a ____ translates instructions written in high-level languages into machine code.
compiler
A program called a ___ combines the object program with the programs from libraries.
linker
A program that loads an executable program into main memory is called a ___.
loader
A step-by-step problem-solving process in which a solution is arrived at in a finite amount of time is caled an ____.
algorithm
To develop a program to solve a problem, you start by ____.
analyzing the problem
Dividing a problem into smaller subproblems is called ___ design.
structured
An ___ consists of data and the operations on those data.
object
The programming language C++ evolved from ____.
C
The programming language C++ was designed by Bjarne Stroustrup at Bell Laboratories in the early ____.
1980s
The ____ monitors the overall activity of the computer and provides services such as memory management, input/output activities, and storage management.
operating system
___ signals represent information with a sequence of 0s and 1s.
Digital
Word processors, spreadsheets, and games are examples of ____.
applications
A sequence of 0s and 1s is sometimes referred to as ____ code.
binary
The ASCII data set consists of ___ characters.
128
Assemble language uses easy-to-remember instructions called ____.
mnemonic
A program called an _____ translates the assembly language instructions into machine language.
assembler
___ languages include FORTRAN, COBOL, Pascal, C, C++, and Java.
High-level
The term ___ is used to describe a program that has been written in a high-level language.
source program
In a C++ program, statements that begin with the symbol # are called ____ directives.
preprocessor
The machine language verson of the high-level language program is called ____.
object program
The structured design approach is also known as ____.
top-down design
In object-oriented design, the first step in the problem-solving process is to identify the components called ___, which form the basis of a solution, and to determine how they interact with one another.
objects
In ___ design, the final program is a collection of interacting objects.
object oriented
In C++, the mechanism that allows you to combine data and operationso f the data into a single unit is called a ____.
class
In C++, reserved words are the same as predefined identifiers.
False
The escape sequence \r moves the insertion point to the beginning of the next line.
False
The expression static_cast(6.9) + static_cast(7.9) evaluates to ____.
13
In a C++ program, one and two are double variables and input values are 10.5 and 30.6. After the statement cin»_space; one»_space; two; executes, ____.
one = 10.5, two = 30.6
Suppose that count is an int variable and count = 1. After the statement count++; executes, the value of count is ____.
2
Suppose that alpha and beta are int variables. The statement alpha = –beta; is equivalent to the statement(s) ____.
beta = beta - 1; alpha = beta;
Suppose that alpha and beta are int variables. The statement alpha = beta++; is equivalent to the statement(s) ____.
alpha = beta; beta = beta + 1;
Suppose that alpha and beta are int variables. The statement alpha = ++beta; is equivalent to the statement(s) ____.
beta = beta + 1; alpha = beta;
Choose the output of the following C++ statement:
cout
Sunny
Day
Which of the following is the new line character?
\n
Consider the following code.
// Insertion Point 1
using namespace std;
const float PI = 3.14;
int main() { //Insertion Point 2
float r = 2.0;
float area;
area = PI r r;
cout
insertion point 1
____ are executable statements that inform the user what to do.
prompt lines
The declaration int a, b, c; is equivalent to which of the following?
int a,b,c;
Suppose that alpha and beta are int variables and alpha = 5 and beta = 10. After the statement alpha *= beta; executes, ____.
alpha = 50
Suppose that sum and num are int variables and sum = 5 and num = 10. After the statement sum += num executes, ____.
sum = 15
When reading data into a char variable, after skipping any leading whitespace characters, the extraction operator»_space; finds and stores only the next character; reading stops after a single character.
True
If input failure occurs in a C++ program, the program terminates immediately and displays an error message.
False
In an output statement, each occurrence of endl advances the cursor to the end of the current line on an output device.
False
You can use the function getline to read a string containing blanks.
True
Suppose that x and y are int variables. Which of the following is a valid input statement?
cin»_space; x»_space; y;
Suppose that alpha is an int variable and ch is a char variable and the input is:
17 A
What are the values after the following statements execute?
cin»_space; alpha;
cin»_space; ch;
alpha = 17, ch = ‘A’
Suppose that x is an int variable, y is a double variable, z is an int variable, and the input is:
15 76.3 14
Choose the values after the following statement executes:
cin»_space; x»_space; y»_space; z;
x = 15, y = 76.3, z = 14
Suppose that x and y are int variables, z is a double variable, and the input is:
28 32.6 12
Choose the values of x, y, and z after the following statement executes:
cin»_space; x»_space; y»_space; z;
x = 28, y = 32, z = 0.6
Suppose that x and y are int variables, ch is a char variable, and the input is:
4 2 A 12
Choose the values of x, y, and ch after the following statement executes:
cin»_space; x»_space; ch»_space; y;
This statement results in input failure
Suppose that ch1 and ch2 are char variables, alpha is an int variable, and the input is:
A 18
What are the values after the following statement executes?
cin.get(ch1);
cin.get(ch2);
cin»_space; alpha;
ch1 = ‘A’, ch2 = ‘ ‘, alpha = 18
Suppose that ch1, ch2, and ch3 are variables of the type char and the input is:
A B
C
What is the value of ch3 after the following statements execute?
cin. get(ch1);
cin. get(ch2);
cin. get(ch3);
‘B’
When you want to process only partial data, you can use the stream function ____ to discard a portion of the input.
ignore
Suppose that alpha, beta, and gamma are int variables and the input is:
100 110 120
200 210 220
300 310 320
What is the value of gamma after the following statements execute?
cin >> alpha; cin.ignore(100, '\n'); cin >> beta; cin.ignore(100,'\n'); cin >> gamma;
300
Suppose that ch1 and ch2 are char variables and the input is:
WXYZ
What is the value of ch2 after the following statements execute?
cin.get(ch1);
cin.putback(ch1);
cin»_space; ch2;
W
Suppose that ch1 and ch2 are char variables and the input is:
WXYZ
What is the value of ch2 after the following statements execute?
cin»_space; ch1;
ch2 = cin.peek();
cin»_space; ch2;
X
In C++, the dot is an operator called the ____ operator.
member access
____ is a parameterized stream manipulator.
setfill
Manipulators without parameters are part of the ____ header file.
iostream
Which of the following is an int value? 46259 -32.00 46,259 462.59
46259
A … can be helpful for all phases of the software development process
walk through
Which of the following is a legal identifer program_1 program 1 1program program!
program_1
Consider the following program segment.
ifstream inFile; //Line 1
int x, y; //Line 2
… //Line 3
inFile»_space; x»_space; y; //Line 4
inFile.open(“progdata.dat”);
… are aspects of programs that cause the programs to do other than what you intended
bugs
In C++, you use a … to instruct a program to mark those memory locations in which data is fixed throughout program execution.
named constant
What does a reserved word have to start with?
a lowercase
Suppose that alpha and beta are int variables. The statement alpha = beta–; is equivalent to the statement(s) ____.
alpha = beta; beta = beta - 1;
The expression static_cast(9.9) evaluates to…
9
To turn your Java source code into bytecode for the JVM, (from the command-line) you use:
the javac compiler
Which phase of the fetch-decode-execute cycle might use a circuit in the arithmetic-logic unit?
execute
The early high-level programming language designed around the notation of Lambda Calculus and used to develop early artificial intelligence programs was named ___________________.
LISP
When you create a Java program, using your text editor, your program will have the extension:
.java
Here is a portion of the source code for a computer program:
69 6D 70 6F 72 74 20 6A-61 76 61 2E 61 77 74 2E
2A 3B 0D 0A 69 6D 70 6F-72 74 20 6A 61 76 61 2E
61 77 74 2E 65 76 65 6E-74 2E 2A 3B 0D 0A 69 6D
This program is an example of _____________________________.
machine language
If your Java source code program compiles, but displays an error message when you run it, then it must have a:
runtime error
Each memory cell has a unique location in main memory, called the ____.
address
The source program is written in ____.
a high-level language
Which of these identifiers follows the Java conventions (not just the syntax rules) for a constant name?
TOTAL_COST
Which of these words that can appear in a Java program are reserved or keywords?
class
In a method definition, the word public is called:
the access specifier
The method in the PrintStream class that displays a line of output on the console, and that does not advance the printing “cursor” to the next line is named:
When “sending a message” to an object, the method that you want to call is called:
the request
What characters may appear when writing a literal of type double:
All of these may appear in a double literal.
Instance variables:
are automatically initialized
A local variable:
can only be used inside the method where it is defined.
To change the default foreground or background color of your applet, you’ll normally use the _____________ method
init();
Object variables contain ________________.
object references
Suppose x = 2 and y = 3. If the statement
x *= y;
is executed once, what is the value of y?
3
Evaluate the following expression. Make sure that your answer is the correct type:
2 is an int
2.0 is a double
Math.sqrt(64)
8.0
Two-way selection in Java is implemented using ____.
if…else statements
Which of these relational expressions is incorrect [assume x is an int] :
x 3
A boolean variable can hold the values :
true and false
Font size is specified in points. A one-inch font would be ___________ points.
72
When using the Graphics fillRect() method, a rectangle passed a width of 100 will actually be drawn:
100 pixels wide
The conditional operator ?: takes _____ arguments.
3
int x = 6, y;
if (x > 5) y = 1; else if (x
1
Which of these statements does not describe a typical ACM GraphicsProgram?
consists of sequential input, output and processing steps
Given the nested if-else structure below: if (a > 0) if (b 5) x = x + 4; else x = x + 3; else x = x + 2; If x is currently 0, a = 1 and b = -1, what will x become after the above statement is executed?
5
Suppose that outFile is an ofstream variable and output is to be stored in the file outputData.out. Which of the following statements opens the file outputData.out and associates outFile to the output file?
outFile.open(“outputData.out”)
The code shown here: new Color(0, 255, 0) constructs an object with the color \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_.
green
What is the result of evaluating the expression below? Your answer must be the correct type:
· 2 is an int
· 2.0 is a double
· “2” is a String (remember the quotes)
“2 + 2 “ + (3 + 4) “2 + 2 7”