35751. The operator that releases previously allocated memory is _____
35752. When a language has the capability to produce new data types, it is said to be
35753. A compound statement does not consist of
35754. Which of the following statements will display the word "Hello" on the computer screen?
35755. The preprocessor directive always starts with the symbol
35756. The ratio of total power in the Amplitude modulated wave to the unmodulated carrier power when the modulation index is ‘m’
35757. Evaluate the following expression: 7 >=3 + 4 || 6<4 && 2<5
35758. The base class for most stream classes is the _____ class
35759. Which of the following while clause will stop the loop when the value in the age variable is less than the number 0?
35760. The most efficient data type for a variable that stores the number 4.6e20 is the _____ data type
35761. Which of the following is a C++ object?
35762. Which of the following can be used to declare the main function?
35763. You _____ write your own container classes
35764. If an integer object is thrown with a throw statement, then a subsequent catch block has a usable match if the type of the catch argument is
35765. The highest level of cohesion is
35766. You separate a derived class name from its access specifier with
35767. The last statement in a function is often a(n) _____
35768. When the function int someFunction(char c) throw( ) is executed, _____
35769. The two statements that can be used to change the flow of control are
35770. If p and q are assigned the values 2 and 3 respectively then the statement p = q++
35771. Which of the following is the insertion operator?
35772. If you want only one memory location to be reserved for a class variable, no matter how many objects are instantiated, you should declare the variable as
35773. To use a template class member function, use the ________ with the instantiation
35774. When a class is derived from another derived class, the newly derived class
35775. If you assign a default value to any variable in a function prototype's parameter list, then _____
35776. The dot operator (or class member access operator) connects the following two entities (reading from left to right):
35777. Which of the following calls a function named displayName, passing it no actual arguments?
35778. The feature that allows you to use the same function name for separate functions that have different argument lists is called _____
35779. Which of the following are valid characters constants?
35780. With a template class, _____ type is generic
35781. If you want to use a class to define objects in many different programs, you should define the class in a C++ _____ file
35782. Functions that returns information about an object's state can be classified as ________
35783. An auxiliary function _____
35784. To create and execute a C++ program, you need to have access to
35785. If you omit any constructor argument when you instantiate an object, you must use default values______
35786. Many programmers separate a class into two files: _____
35787. Files whose names end in .h are called _____ files
35788. When accessing a structure member, the identifier to the left of the dot operator is the name of
35789. Assume that a program contains a programmer-defined void function. When C++ encounters the function's closing brace (}), C++ returns to the statement _____
35790. Inheritance occurs when a class adopts all the traits of _________
35791. Template classes that have already been written to perform common class tasks are called _____
35792. A _____ is a single item of information about a person, place, or thing
35793. Which (if any) of the following is NOT a programmer-defined type
35794. Assume a program contains a void function named displayName, which requires no formal parameters. Which of the following is a correct function prototype for this function?
35795. A file pointer always contains the address of the file
35796. You declare a function with a function _____, which is typically entered at the beginning of the program, below the #include directives
35797. The function whose prototype is Item getData(void); returns _____
35798. Using new may result in less _____ memory than using an array
35799. The most common operation used in constructors is
35800. In a simple 'if' statement with no 'else'. What happens if the condition following the 'if is false?