CSE :: Object Oriented Programming Using C++
-
The logical NOT operator represented by is a
-
When variables refer to attributes of an entity (such as name, address, and phone number of a person), those attributes form a _____
-
A derived class _____ override attributes of a parent class
-
Which of the following is false?
-
A function's single most important role is to
-
The delete operator returns ______ to the operating system
-
The major advantage of data hiding is that _____
-
The letter V is a _____
-
Separating parts of a program into units that remain unaffected by other parts of a program is the concept known as _____
A.
You enclose a function's statements in a set of braces
|
B.
The function header is considered a C++ statement, so it must end in a semicolon.
|
C.
The keyword void tells the C++ compiler that the function does not return a value
|
D.
A function can receive information that you send (pass) to it
|
E.
An empty set of parentheses after the function's name in the function header tells you that the function does not receive any information
|