Given a variable containing the value 0x06, which statement shown below results in the value 0x60?

A. var << 2
B. var << 4
C. var >> 2
D. var >> 4
E. var & 9


Answer: B

Computer Science & Information Technology

You might also like to view...

Give the recursive binary search algorithm.

What will be an ideal response?

Computer Science & Information Technology

Besides access and recovery previous version of a file, which of the following is a function that can only be performed in the OneDrive website and not by the OneDrive client?

A. delete files B. move files C. recover deleted files D. rename files

Computer Science & Information Technology

Which of the following CSS3 pseudo-elements could be used to apply styles to the last row of a table?

a. :last-of-type b. :last-row c. :tfoot d. This cannot be done with CSS.

Computer Science & Information Technology

Which of the following function declarations are illegal?

``` a. void t1(int x, int y = 0, int z); b. void t4(int x = 0, int y = 0, int z = 0); c. void t2(int x = 0, int y = 0, int z); d. void t3(int x, int y = 0, int z = 0); e. a and c ```

Computer Science & Information Technology