Which wireless networking protocol has the fastest transmission speed?
a. 802.11b
b. 802.11a
c. 802.11g
d. 802.11n
C. 802.11n has a transmission speed up to 150–600 Mbps, depending on the number of data streams.
You might also like to view...
Any field declared with keyword ________ is constant.
a. static b. const c. constant d. final
Consider the code segment below.
``` if (gender == 1) { if (age >= 65) ++seniorFemales; ``` This segment is equivalent to which of the following? a. if (gender == 1 || age >= 65) ++seniorFemales; b. if (gender == 1 && age >= 65) ++seniorFemales; c. if (gender == 1 AND age >= 65) ++seniorFemales; d. if (gender == 1 OR age >= 65) ++seniorFemales;
Which software application would you use to calculate and manipulate numerical data?
a. Microsoft Office Excel b. Apple iWork Numbers c. Apache OpenOfficeCalc d. all of the above
What objects will not use the caption instead of the field names?
A) Forms B) Reports C) Datasheets D) Macros