You want to use only one name, funct1, from name space MyNamespace. The directive #include “MyNamespace” has been places at the top of the file. You will call this function a large number of times in a block. Which of the following will make only the name funct1 available only in that block (not outside the block)?

a) Place```
using namespace std;
```
b) Place```
using namespace MyNamespace;
```
c) Place```
using namespace MyNamespace;
``` just inside the block where you want to use
d) Place```
using MyNamespace::func1;
```just inside the block where you want to use funct1.
e) Place```
#include “MyNamespace”
```#include “MyNamespace”the name func1.

d) Place```
using MyNamespace::func1;
```

Computer Science & Information Technology

You might also like to view...

The Create system image prompt gives you a choice to save a system image backup to a ________, a set of DVDs, or a network location

a. Hard drive b. USB drive c. Floppy drive d. Tape drive

Computer Science & Information Technology

Which of the following DHCP options would need to be configured to ensure certain IP addresses within a scope are not leased out?

A. DNS IP address information B. WINS IP address information C. Superscopes D. Reservations

Computer Science & Information Technology