Name ______________________
Assume the following:
int k = 10; int j = 6; boolean b = true;
Show the value (true or false) of each of the following expressions.
1 > 2bk > j && j != 5j < k && k == 10k/2 >= j && j/2 == 3k > k && j == 7k > j || j != 5j < k || k == 10k/2 >= j || j/2 == 3k > k || j == 7