Answer and Explanation:
The following answers are:
Answer a).
z%2==1
z is an odd
if z is divided by 2 and the remainder is 1 then z is odd.
Answer b).
z <= Math.sqrt(y)
checking that the y is greater than z's square root.
Answer c).
y>0
Check that y is the positive .
Answer d).
x % 2 != y % 2
check that x is an even or y is an odd.
Without using & operator.
Answer e).
y % z == 0
Check that y is the multiple of z.
Answer f).
z !=0
check that z is not 0.
Answer g).
Math.abs(y)>Math.abs(z)
z is not greater magnitude than y.
Answer h).
(x >= 0) == (z < 0)
Answer i).
y % 10 == y
y is the non-negative one digit number.
Answer j).
z>=0
z is non-negative or not a neutral.
Answer k).
x%2==0
x is an even.
Answer l).
Math.abs(x - y) < Math.abs(z - y)
x is the closer value to variable y than the variable z.