What type of computer is recommended when you want to allow the server to do most of the computing but would like to connect to the server via a browser?

A. Thick client
B. Thin client
C. Virtual client
D. Zero client

Answer: B

Computer Science & Information Technology

You might also like to view...

When using the SUBTOTAL function, entering a number from 1 to 10 in the SUBTOTAL function's first argument will result in the filtered only data being used

Indicate whether the statement is true or false.

Computer Science & Information Technology

In Fig. 11.5, the stream extraction and stream insertion operators were overloaded for input and output of objects of the PhoneNumber class. Rewrite the stream extraction operator to perform the following error checking on input. The operator>> function will need to be reimplemented.

a) Input the entire phone number into an array. Test that the proper number of characters has been entered. There should be a total of 14 characters read for a phone number of the form (800) 555-1212. Use ios_base-member-function clear to set failbit for improper input. b) The area code and exchange do not begin with 0 or 1. Test the first digit of the area-code and exchange portions of the phone number to be sure that neither begins with 0 or 1. Use ios_base-member-function clear to set failbit for improper input. c) The middle digit of an area code used to be limited to 0 or 1 (although this has changed recently). Test the middle digit for a value of 0 or 1. Use the ios_base-member-function clear to set failbit for improper input. If none of the above operations results in failbit being set for improper input, copy the three parts of the telephone number into the areaCode, exchange and line members of the PhoneNumber object. If failbit has been set on the input, have the program print an error message and end, rather than print the phone number.

Computer Science & Information Technology