36001. The instruction "If it's raining outside, then take an umbrella to work" is an example of the _____ structure
36002. Which of the following statements will assign the address of the age variable to the agePtr pointer?
36003. The >> (extraction) operator stops reading characters from the keyboard as soon as the user _____
36004. In the statement template<class T>,
36005. The null character is represented by
36006. The break statement is
36007. A variable w with a value 67 may be defined with _______
36008. An expression contains relational, assignment and arithmetic operators. In the absence of parentheses, the order of evaluation will be
36009. The keyword virtual indicates that
36010. Ten,15V batteries each having an internal resistance of 3 Ohm are connected in series such that one is aiding the others.Its Norton’s equivalent circuit has:
36011. Variables that are declared in a block are known as _____ variables to that block
36012. The pow and sqrt functions return a(n) _____ type number
36013. Declaring variables is advantageous because it
36014. The generic name used for unexpected errors that occur during the execution of a program is
36015. You add the desired type to a specific template class instantiation by placing the type's name ______
36016. The switch variable can be of
36017. Reference variables and const class members _____
36018. You can code a default exception handler by creating a catch block
36019. Which of the following are void functions?
36020. Hiding individual components of an entry is _____
36021. When all of the operations in a function contribute to the performance of only one task, a function has
36022. A function that uses variable types is called __________
36023. Having more than one function with the same name is called
36024. An object is _____
36025. Two access specifers in C++ are
36026. A data member holds a 1 or 0 depending on whether taxes have been paid. The best identifier for this member is _____
36027. Assume a class Derv that is privately derived from class Base. An object of class Derv located in main() can access
36028. Which of the following is an access specifier?
36029. Machine code is _____
36030. The contents of two pointers that point to adjacent of type float differ by
36031. Which of the following is a valid condition for an if statement? (The condition should be both syntactically and logically valid.)
36032. A pattern for creating an object is called a(n) _____
36033. An asterisk placed after a data type means .
36034. An object is a(n) _____ of a class
36035. Which of the following statements creates and initializes a pointer named salesPtr?
36036. With communicational cohesion
36037. The function printDataMembers() is mot likely a(n) ________
36038. The data type listed at the beginning of a value-returning function's header indicates the type of data the function will _____
36039. The code class Descendant : virtual public Ancestor indicates that
36040. The value of specific gravity of a lead acid battery under fully charged condition is approximately:
36041. Which of the following formulas can be used to generate random integers between 1 and 10?
36042. Format flags may be combined using the _____
36043. Which of the following will store the number 320000 as a Float number?
36044. The arguments that determine the state of the cout object are called
36045. If a class will serve as a base class, most often the base class data members are
36046. You can use the C++ _____ function to assign a value to a String variable
36047. A measure of the strength of the connection between two functions is
36048. The following statement where T is true and F is false T&&T||F&&T
36049. Which of the following statements declares a variable that can contain a decimal number?
36050. The statement int num[2][3]={ {1,2}, {3,4}, {5, 6} };