Answer the following statements true (T) or false (F)

1. OOP is an acronym that means Object Oriented Programming.
2. C++ not only supports OOP but also supports other programming styles.
3. The namespace facility is a tool used that assists in the study of genealogy.
4. In C++ the variables Alpha, ALPHA and AlphA are the same identifier.
5. In C++ the compiler will infer the type intended for a variable from the context in
which the variable occurs.


1. True.
OOP is currently popular and is a powerful programming technique for a
large class of problems.
2. True.
Explanation: C++ supports OOP and traditional procedure oriented programming.
3. False.
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.
4. False.
C++ is case sensitive, these are different identifiers.
5. False.
C++ requires every identifier to be declared prior to use. The type is
specified in the declaration.

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` public class Test { public static void main(String[] args) { int[][][] data = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; System.out.print(ttt(data[0])); } public static int ttt(int[][] m) { int v = m[0][0]; for (int i = 0; i < m.length; i++) for (int j = 0; j < m[i].length; j++) if (v < m[i][j]) v = m[i][j]; return v; } }``` a. 1 b. 2 c. 4 d. 5 e. 6

Computer Science & Information Technology

A physical drive will always only contain one volume

Indicate whether the statement is true or false

Computer Science & Information Technology

The ________ feature in Word enables users to share their work with others via the Internet

Fill in the blank(s) with correct word

Computer Science & Information Technology

If you attempt to enter a command and receive the ?Windows needs your permission to continue? dialog box, you should right-click a command-prompt shortcut and select _______________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology