Programming Review
More Programming Review
Starting C++
C++ operations
C++ operators
100
checks your program for syntax errors
What is a translator program
100
The process of paying attention to important properties while ignoring details
What is abstraction
100
A group of statements in C++
What is a block
100
has the highest precedence of the unifying types
What is long double
100
Prefix increment operator
What is ++count
200
language that computers can understand
What is machine language
200
consists of a series of steps or procedures that take place one after the other
What is a procedural program
200
Declares a boolean data type variable, which has only two possible values—true or false
What is bool
200
has the lowest precedence of the unifying types
What is char
200
Postfix increment operator
What is count++
300
language that computers can understand
What is syntax
300
The dependability and trustworthiness of a module
What is reliability
300
The general term that C++ programmers use when referring to methods
What is a function
300
is performed automatically and without your intervention
What is an implicit cast
300
Positive value operator when used alone in front of an operand
What is +
400
works by translating the entire program at one time
What is a compiler
400
A real-life program used by a business
What is a production program
400
Object that fetches input from the keyboard
What is cin
400
rule that dictates the order in which an operator works with its operands
What is associativity
400
The address operator, a C++ unary operator that is not available for use in most other programming languages
What is &
500
translates programming language instructions one line at a time
What is an interpreter
500
A segment of C++ code that performs a task
What is a statement
500
Simplest object used for C++ output
What is cout
500
Modulus and assign operator
What is %=
500
Operators that evaluate the relationship between operands; you use them with Boolean expressions
What are relational operators