Question 11
Methods that return a decimal value must be declared using what type?
a. int
b. void
c. double
d. String
e. null
Question 12
Which of the following is true when x = 15?
a. (x >= 15) && (x < 13)
b. !(x > 13) || (x > 16)
c. (x > 13) && (x < 17)
d. (x < 15) || (x > 15)
e. (x <= 13) || (x >= 17)