Search

In Stock

Test Bank For Absolute C++ 5th Edition By Walter Savitch

$25.00

Test Bank For Absolute C++ 5th Edition By Walter Savitch

ISBN-10: 013283071X, ISBN-13: 978-0132830713

Chapter 1 – Test Questions

These test questions are fill in the blank, multiple choice, and true-false.  The multiple choice questions may have more than one correct answer. There is one matching question. Mark all of the correct answers for full credit.

True False questions require an explanation in addition to the true/false response, and, if false, also require a correction.

True False:

Comment required.

  1. OOP is an acronym that means Object Oriented Programming.

Answer: True.

Explanation: OOP is currently popular and is a powerful programming technique for a large class of problems.

  1. C++ not only supports OOP but also supports other programming styles.

Answer: True.

Explanation: C++ supports OOP and traditional procedure oriented programming.

  1. The namespace facility is a tool used that assists in the study of genealogy.

Answer: False.

Explanation: The namespace facility helps prevent the libraries from “preempting all the good names,” and allows us to use names we want whether the library has used them.

  1. In C++ the variables Alpha, ALPHA and AlphA are the same identifier.

Answer: False.

Explanation: C++ is case sensitive, these are different identifiers.

  1. In C++ the compiler will infer the type intended for a variable from the context in which the variable occurs.

Answer: False.

Explanation: C++ requires every identifier to be declared prior to use. The type is specified in the declaration.

  1. A C++ declaration introduces only an identifier’s spelling and specifies its type.

Answer: True.

Explanation: A declaration introduces the spelling and type, whereas a definition is a declaration that also allocates memory.

  1. A C++ declaration is a definition that also allocates storage for an identifier’s value (or function’s body etc.).

Answer: True.

Explanation: A declaration introduces the spelling and type, whereas a definition is a declaration that also allocates memory.

  1. The range of values for an int variable is from about 0 to +2

Answer: False:

Explanation: The correct range is about –2 Billion to +2 Billion.

  1. The names x, y, and z are satisfactory variable names for the lengths of the legs and hypotenuse of a triangle.

Answer: False.

Explanation: Names should communicate to the human reader the meaning of the value. These identifiers do not communicate the meaning of their values..

  1. In C++ you can assign an expression of type int to a variable of type double with no problem.

Answer: True.

Explanation: Assignment from an integer type to a floating point type can lose information and should be avoided. Some compilers will warn, others may give an error message, but you should avoid this.

  1. In C++ you can assign an expression of type double to a variable of type int with no problem.

Answer: False.

Explanation: In general assigning a floating point value to an integer variable mostly loses information. A warning message (or an error message) is issued by C++ compilers.

  1. To put a character into a cstring constant that causes the output to continue on the next line, insert the escape sequence \t into the string constant.

Answer: False.

Explanation: \t is the tab escape sequence. Use \n instead.

  1. If we execute this code in an otherwise correct and complete program:

n = 1;

n = (n++) + (n++);

the value of n is guaranteed to be 3 after the second line executes.

Answer: False.

Explanation: Some compilers may give the value 3. The result of such code is dependent on the compiler implementation. The C++ Standard says such code is illegal, and the Standard says the results are undefined, meaning the compiler can do anything with it that suits the compiler writer. One of my compilers gives the value 4 to n.

  1. If we execute the code fragment in an otherwise complete, correct program:

n = 1;

cout << n++ << ” ” << n++ << ” ” << n++ << endl;

the output is guaranteed to be 1 2 3.

Answer: False.

Explanation: The code is illegal because its execution depends on the order of evaluation of arguments.  Various compilers give different answers. One compiler this writer uses gives 3 2 1.

  1. C++ uses only /* */ for comments.

Answer: False.

Explanation: C++ uses /* */ comments and  // “here to the end of the line” comments.

Reviews

There are no reviews yet.

Write a review

Your email address will not be published. Required fields are marked *

 

 

Back to Top
Product has been added to your cart