Prog: Final Exam
Pre-processor commands, began with a blank sign
#
When diagrams are used to describe the algorithm, the description is referred to as...
Flow chart
Three different forms of repetition statement are provided in C++ while blank and do while
For
See, C++ in Java are all examples of what type of language
High level
Because the variable created in a function are conventionally available only to the function they are said to be blank variables
Local
The software development procedure consist of three overlapping phases program, development, and design documentation, and ...
Maintenance
Programs with a structure consisting of interrelated segments, called blank, are arranged in a logical, easily understandable order to form an integrated and complete unit
Modules
Blank loops are especially useful when dealing with two dimensional arrays, because they allow the programmer to designate and cycle through each element easily.
Nested
Including one or more, if statements inside an existing, if statement is called a blank if statement
Nested
The blank error means the loop executes either one too many or one too few times than was intended
Off by one
A blank is a list of related by use all having the same data type that stored with a single group name
One dimensional array
The names in parentheses in the hitter are called the formal blank of the function
Parameters
Passing addresses is referred to as a function blank
Pass by reference
When Adia was passed to a called function with only copies of the values contain in the argument at the time of the car, the past argument is referred to as a blank
Passed by value
Blank loops always execute the loop statements, at least once before the condition is tested
Posttest
The declaration statement for a function is referred to as a function blank
Prototype
In C++, a two dimensional array is initialize in blank order
Row
Blank is concerned with creating readable, efficient, reliable, and maintainable programs in systems
Software engineering
Each individual array element is referred to as an index variable, or a blank variable
Subscripted
A common problem with the if-else statement is using the assignment Operator =, in place of the relational operator ==
True
Array elements can be initialized in their declaration statements in the same manner as scalar variables, except that the initialized elements must be included in braces
True
Arrays are extremely useful in any application that requires multiple passes through same set of data elements
True
Because of the way, computer store, single precision, or double position numbers, you should avoid testing for equality of single position in double precision values in variables by using the relational operator ==
True
C++ functions are constructed to be independent
True
C++ is predominantly a compiled language
True
Modular programs are easier to develop correct and modify, then programs constructed in some other manner
True
One or more if-else statements can be included in either part of an if-else statement
True
The do while construct is an example of a posttest loop
True
In C++, the expression sum=sum+10 can be written as
sum +=10
Logical operators AND, OR, and NOT are represented by the symbol &&, blank, and respectively
||
Using a mathematical library function without including the processor statement #include <cmath> is a common programming error in C++
True
To determine the address of a variable we can use C++ 's address operator blank which means the address of
&
In a relational expression, the value of the expression can be only the integer value 1 or
0
The relational operator blank is used to represent the condition "less than"
<
In C++, the blank symbol is called the assignment operator
==
A blank is defined as a step-by-step sequence of instructions that must terminate in that describe how the data is to be processed to produce the desired outputs
Algorithm
Blank is the first step in the program, development and design phase
Analyzing the problem
Every C++ function consist of two parts of function header in a function blank
Body
A statement forces an immediate exit, form switch while, for, and dual statements
Break
The function that does the calling is referred to as the blank function
Calling
In the switch statement, the blank keyword identifies values that are compared with the switch expression 's value
Case
Because of blank, the value assigned to the variable on the left side of the assignment, operator is forced into the data byte of the variable to which is assigned
Coercion
A blank statement is a sequence of single statements contain between braces
Compound
The main () function is referred to as a blank function, because it tells other functions that sequence in which they execute
Driver
Each item in an array is called a blank or component of the array
Element
C++ allows up to two dimensions to be declared for arrays
False
Programs in C++ can have more than one main() function.
False
The construction for (; cout <=20 ;) is invalid
False
The switch statement required you to terminate each case with a break statement
False
You should make all your variables global if possible
False
The blank declaration qualifier specifies that declared identifier is read only after it's initialized
const
A useful modification of if-else statements involves omitting the blank part of the statement
else
The blank statement in C++ is used to implement a decision structure in its simplest form, choosing between two alternatives
if-else
A blank loop is a loop that never ends
infinite
C++ provide the capability of using the same function name for more than one function, referred to as a function blank
overloading
The C++ operator blank provides the number of bytes used to store values for any data type named in the operators parenthesis
size of ()