What is the problem that the C++ namespace facility solves?

What will be an ideal response?

A namespace is a collection of names (definitions of constants, variables, functions and classes) that can be made available in a scope by command. This prevents libraries from preempting names and so preventing use of these names by a programmer who is a user of the library. In large program development this facility permits different teams of programmer to use, identical names for different purposes yet avoid conflict.

Computer Science & Information Technology

You might also like to view...

Which of the following is NOT an argument in a database function?

A) Field B) Criteria C) Filter D) Database

Computer Science & Information Technology

Which of the followings is the correct CSS style rule that removes the bullet next to each list item?

a. li {list-bullet: none}; b. li {list-type: none}; c. li {list-style: none}; d. li {list-style-type: none};

Computer Science & Information Technology