< Back
Page 9 of 9
This chapter is from the book
Review Questions
-
What is modulus operator, and how is it used?
-
What is the difference between the following operators: && and &?
-
What is a truth table, and what does it tell you?
-
What is the result of 21 & 3?
-
What is the result of 21 | 3?
-
What is the result of 21 ^ 3?
-
What is the difference between the following operators: >> and >>>?
-
What is the result of 5 * 5 + 5?
-
What is the result of 5 + 5 * 5?
-
What is the result of the following code fragment?
int a = 5; a += 6 * ++a / 2 6 * 9 + 2
< Back
Page 9 of 9