M02 Flashcards
A control structure alters the normal sequential flow of execution in a program.
True
The result of a logial expression cannot be assigned to an int variable, but it can be assigned to a bool variable.
False
In C++, both ! and != are relational operatios.
False
The expression (x >= 0 && x = 100).
False
Suppose P and Q are logical expressions. The logical expression P && Q is true if both P and Q are true.
True
In C++, has a higher precedence than l l .
True
The operator != and == have the same order of precedence.
True
A compound statement functions as if it was a single statement.
True
if the expression is an assert statement evaluates to true, the program terminates.
False
In a __ control structure, the computer executes particular statements depending on some condition(s).
selection
What does
less than or equal to
Which of the following is a relational operator?
a. =
b. ==
c. !
d.
b. ==
Which of the follwing is the “not equal to” relational operator?
a. !
b. l
c. !=
d.
c. !=
Suppose x is 5 and y is 7. Choose the value of the following expression:
(x != 7) && (x
true
Suppose that x is an int variable. Which of the following expressions always evaluates to true?
a. (x > 0) || ( x = 0) || (x == 0)
c. (x > 0) && ( x 0) && (x == 0)
a. (x > 0) || ( x
Which of the following expressions correctly determines that x is greater than 10 and less than 20?
a. 10
c. 10
What is the output of the following C++ code?
int x = 35;
int y = 45;
int z;
if (x > y)
z = x + y;
else
z = y - x;
cout
35 45 10
What is the output of the following code?
if (6 > 8)
{
cout
*
Which of the following will cause a logical error if you are attempting to compare x to 5?
a. if (x = 5)
c. if (x == 5)
d. if (x = 5)
d. if (x = 5)
What is the output of the following code?
char lastInitial = ‘S’;
switch (lastInitial)
{
case ‘A’:
cout
section 5
char lastInitial = ‘A’;
switch (lastInitial)
{
case ‘A’:
cout
section 1
What is the output of the following C++ code?
int x = 55;
int y = 5;
switch (x % 7) { case 0: case 1: y++; case 2: case 3: y = y + 2; case 4: break; case 5: case 6: y = y - 3; }
cout
2
You can disable assert statements by using which of the following?
a. #include
b. #define
c. #clear NDEBUG
d. #define NDEBUG
d. #define NDEBUG
The __ holds the insturctions currently being executed.
IR
The __ carries out all arithmetic and logical operations.
ALU
True or False: All registers proved temporary storage.
True
True or False: All software is written in programming languages.
True
True or False: The screen (such as a touch screen) and keyboard are examples of input devices.
True
True or False: The ALU performs arithmetic operations and finds logical errors.
False
True or False: Analog signals represent information with a sequence of 0s and 1s.
False
True of False: When you compole your program, the compiler not only identifies the logic errors, but also typically suggests how to correct them.
False
True or False: Examples of output devices are the mouse and secondary storage.
False
True or False: Assembly, C, C++, and Java are all high-level languages.
False
True or False: The CPU contains several components, including the CU and ALU.
True
True or False: Programming is a process of problem solving.
True
True or False: In assembly language, an instruction is an easy to remember form called a mnemonic.
True
An __ is 1,024 bytes.
kilobyte
How do you convert a seven bit binary representation of an ASCII character to an eight bit binary representation?
Add zeros in the front so that there is 8 characters
The Finch Robot could be considered an example of an input device, output device, or both?
both
An __ is 1,024 gigabytes.
terabyte
How many digits are used when writing numbers in base 6?
6
True or False: The include statement belongs before using namespace std;.
True
Suppose count = 1. After the statement count ++ executes, the value of count is __.
2
True or False: A reserved word can be used as an identifier name.
False
True or False: Suppose that count is an int cariable. The statements
–coutn; and count–; both decrement the value of count by 2.
False
True or False: The conversion of a value from one data type to another is called type casting.
True
True or False: The value ‘*’ belongs to the char data type.
True
True or False: An identifier can be ANY sequence fo digits, letters, and the underscore character.
False
True or False: If a C++ arithmetic expression has no parentheses, operators are evaluated from left to right following the order of operations.
True
True or False: Suppose a = 4. After the execution of statement b = a++; b is 4 and a is 5.
False
True or False: A C++ program si processed by the preprocessor before being processed by the compiler.
True
True or False: The value fo a variable cannot change during program execution.
False
True or False: Suppose a = 5. After the execution of the statement ++a; the value of a is 6.
True
True or False: Multiplication and division have the same operator precedence
True
True or False: Suppose that count is an int variable. The statements ++count and ++count both increment the value of count by 1.
True
True or False: The following is a legal C++ identifier: Hello!
False
True or False: All prepprocessor commands start with the symbol #.
True
True or False: Every C++ program must have a function called main.
True
True or False: In C++, reserved words are the same as predefined identifiers.
False
True or False: Suppose x = 8. After the execution of the statement y = x++; y is 9 and x is 8.
False
%
modulus operator
–
decrement operator
=
assignment operator
> >
stream extraction
stream insertion
++
increment operator
When one control statement is located within another, it is said to be __.
nested
What determines that x is greater than 10 and less than 20?
10
In a __ control structure, the computer executes particular statements depending on some conditions.
selection
Which of the following operators has the lowest precedence? | | ! = &&
=
A(n) … statement causes an immediate exit from the switch structure.
break
True or False: If you are comparing x to 5, ( x = 5 ) will cause a logical error.
True
Which of the following is a relational operator? ! &;&; == =
==
The appearance of = in place of == resembles a __.
silent killer
Note that although ___ aren’t required in a switch statement, it’s good practice to include them, even if you think they’ll never be needed.
defaults
The expression in an if statement is sometimes called a(n) ___.
selection statement
Which of the following operators has the highest precedence? * = ! %
!
What is the not equal to operator?
!=
When a switch expression evaluates to a logical value, the __ label is not reachable.
default
A ternary operator takes __ arguments.
3
T or F: Every if statement must have a corresponding else
F
T or F: The operators != and == have the same order of precedence.
T
T or F: The value of the expression ‘a’
F
T or F: Conditional statements help incorporate decision making into programs
T
T or F: The value of the expression 7 + 8
T
T or F: A control structure alters the normal sequential flow of execution in a program
T
T or F: In C++, all relational operators are evaluated before logical operators.
T
In C++, && has a higher precedence than l l
True
Including a semicolon before the action statement in a one way selection causes a syntax error
False
In C++, !, &&, and l l are called relational operators.
False
The symbol > is a logical operator.
True
If a semicolon is placed after the expression in and if…else statement, the else statement is always executed
False
With short circuit evaluation, the computer evaluates the logical expression from left to right
True
Suppose x = 10 and y = 20. The value of the expression ((x >= 10) && (y
True
In C++, both ! and != are relational operators
False
In C++,»_space; is called the stream insertion operator
False
A program uses repetition to implement a branch
False
In C++, the logical operator and is &&
True
A compound statement or block of statements is treated as a single statement.
True
Suppose found = true and num = 6. The value of the expression (!found) l l (num > 6) is false
True
In a switch statement, every case must have a break
False
Suppose P and Q are logical expressions. The logical expression P && Q is true if both P and Q is true.
True