Iclicker Questions 3 Flashcards
1
Q
2**13 in binary metric
A
8 ki
2
Q
2**13 in hexadecimal
A
0x2 000
3
Q
2**24 in hexadecimal
A
0x100 0000
4
Q
2**23
A
0x80 0000
5
Q
Short a = 2 ? 3:4; what is a’s value?
A
Answer: ( 3 ). // because in this case 2 is greater than zero so it is true. If false it would be 4.
6
Q
0xdead & 0x7000
A
0x5000 // & will only return 1 if 1 & 1 all will return 0. This is bit wise operators.