Chapter 1
Chapter 2
Chapter 3
Chapter 4
Random
100
This performs arithmetic & logical operations on a computer
What is CPU
100
This is the process of creating a program
What is programming
100
Given: int a, b; What values would be stored in memory after the following: cin >> a >> b; Given that the input is: 4 60
a = 4 b = 60
100
8 < 15 evaluates to:
What is true
100
The following operator means equal (it is not used to assign a value)
What is ==
200
This is direct memory that the computer uses to load & execute programs.
What is RAM
200
These are rules that specify which statements (instructions) are illegal or valid.
What are syntax rules
200
When using manipulators, we must include this header file.
What is iomanip
200

== != < <= > >= Are what type of operators?

What is relational

200
A keyboard and a mouse is a type of this device
What is input
300
A terabyte is this many gigabytes
What is 1024
300
This data type takes on two logical values: true and false
What is a boolean (bool) data type.
300

Given: int a; char ch; What would: cin >> ch >> a; store in memory given that: 256 is the input.

ch = '2' a = 56

300
Give that: bool age = true !age would result in:
What is false
300
This translates a program written in assembly language into machine language
What is an assembler
400
This is a character set that we use to translate computer language to human language and vice-versa. It is the most widely-used today.
What is ASCII
400
Every library has a name and is referred to by this type of file (example , , etc.
What is a header file
400
This forces output to show the decimal point and trailing zeroes.
What is the showpoint manipulator
400
This function is useful in stopping program execution when certain elusive errors occur (this is function used to make sure you get the right result before the program goes on).
What is the Assert function
400
This type of storage includes devices that store information permanently.
What is secondary storage
500
Each cell has a unique location in main memory, called the _______ of the cell
What is address
500
What would the following do? cout << 5 + 2;
It would print the number 7 on a console window.
500
What is the manipulator used to output an expression in a specified number of columns?
setw
500
In terms of order of precedence, what is the last operator used?
What is =
500
Using the && logical operator, as long as one of the two expressions is ______, then the expression results in _____.
What is false, false.