If the user entered the title: Marketing Director . What will be the output from line 4?

Given the code: (numbers are used only for referencing the lines.)

1.
```
char title[30];
```

2.
```
cout << "enter the employee’s title: ";
```

3.
```
cin >> title;
```

4.
```
cout << "The title is: "<< title;
```

A. enter the employee’s title:
B. The title is: Marketing Director
C. The title is: Marketing
D. Marketing


C. The title is: Marketing

Computer Science & Information Technology

You might also like to view...

What value is assigned to q in the statement

q = f(3, 3, 4); if f is defined as follows? ``` int f(int q, int b, int c) { int p; p = q * b + 2 * c; return (p); } ``` a. 17 b. 36 c. 44 d. 50 e. none of the above

Computer Science & Information Technology

What are the small squares that appear in all four corners of the range finder?

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

Computer Science & Information Technology

What type of connector would be used with CAT 6 cable?

A) S/PDIF B) RJ-11 C) RJ-45 D) ST

Computer Science & Information Technology

The mesh is helpful to see how much distortion has been added to an image.

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

Computer Science & Information Technology