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

1. An unnamed namespace provides a facility for collecting names that are local to the file where the unnamed namespace is located. Such names are available in that file, and are unavailable in any other file.
2. A function defined inside an unnamed namespace requires qualification.
3. You can use the static qualifier with a global function, class or variable to get the
same effect as an unnamed namespace.
4. In a particular file, the names from the global namespace and names from an
unnamed namespace defined in the file are accesses the same way: by writing the name.


1. True
2. False
3. False
4. True

Computer Science & Information Technology

You might also like to view...

Only ______ copy/copies of a static variable are available to objects of a class.

(a) one (b) two (c) three (d) none of the above

Computer Science & Information Technology

Write the prototype of a function convert that converts kilograms to pounds and ounces, returning its results through output parameters.

What will be an ideal response?

Computer Science & Information Technology

In a doubly linked list, every node contains the address of the next node except for the ____ node.

A. middle B. last C. first D. second to last

Computer Science & Information Technology

Which Excel external data option automatically updates a table in the Access database when the Excel source file is updated?

A. import the source data into a new table B. link to the data source by creating a linked table C. append a copy of the records to a table D. copy the data source from Excel

Computer Science & Information Technology