____ view shows the contacts as cards but much smaller than Business Card view.

A. Mini-Business
B. Card
C. Phone
D. List

Answer: B

Computer Science & Information Technology

You might also like to view...

Which of the following commands is used to add a method to a prototype.

A. objName.prototype.function = method; B. objName.prototype.method = function; C. objClass.prototype.method = function; D. objInstance.prototype.function = method;

Computer Science & Information Technology

Show the output :

``` cout << "12345\n"; cout.width(5); cout.fill('*'); cout << 123 << "\n" << 123; ```

Computer Science & Information Technology