logo Practice-It logo

BJP5 Self-Check 4.2: logicExpressions1

Language/Type: Java boolean logic expressions
Author: Leslie Ferguson (on 2019/09/19)

Given the following variable declarations:

int x = 4;
int y = -3;
int z = 4;

What are the results of the following relational expressions?

x == 4
x == y
x == z
y == z
x + y > 0
x - z != 0
y * y <= z
y / y == 1
x * (y + 2) > y - (y + z) * 2

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.