A variable that can have values only in the range 0 to 65535 is a

a) four-byte int
b) four-byte unsigned int
c) two-byte int
(d) two-byte unsigned int


(d) two-byte unsigned int

Computer Science & Information Technology

You might also like to view...

What does "Open" on the Welcome screen allow you to do?

What will be an ideal response?

Computer Science & Information Technology

In C, a string is terminated by a special end-of-string symbolic constant named NULL.

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

Computer Science & Information Technology

Links that connect the pages within a website are always very important because they help viewers navigate through the pages of the site.

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

Computer Science & Information Technology

If m is a 7 ? 7 integer matrix, what is displayed by this code fragment?

``` for ( int i = 0; i < 7; ++i ) cout << m[3][i]; cout << endl; ``` a. The first three rows of m. b. The first three columns of m. c. The middle row of m. d. The middle column of m.

Computer Science & Information Technology