COGNITIVE ASSESSMENT
IF YOU RECEIVE AN EMAIL MESSAGE IN ALL CAPITAL LETTERS, WHAT DOES THIS SIGNIFY?

A. THE EMAIL IS IMPORTANT.
B. THE EMAIL WAS SENT FROM A GOVERNMENT AGENCY.
C. THE PERSON WHO WROTE THE EMAIL WAS SHOUTING AT YOU.
D. THE CAPSLOCK KEY ON YOUR KEYBOARD IS MALFUNCTIONING.

Answer: C

Computer Science & Information Technology

You might also like to view...

Excel's ________ function finds the largest value in a selected range of cells

A) MAX B) COUNTIF C) MIN D) MEDIAN

Computer Science & Information Technology

Here are several function members of a class. Tell whether each may be used as an l-value, only, an r-value only or both. B is a class that has mutators.

a) ``` //declarations of these appear together in the //definition of class A int& A::f( ){ /* */} const int& A::f( )const{ /* */} ``` b) ``` const int& A::f( ){ /* */} ``` c) ``` const B A::f( ){ /* */} ``` d) ``` B A::f( ){ /* */} ```

Computer Science & Information Technology