203k views
5 votes
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)

User Kphil
by
4.8k points

1 Answer

3 votes

Answer:

11. a, 12.c

Step-by-step explanation:

bc numbers must be declared as ints and 15 is greater than 13 but lesser than 17

User Aghaux
by
4.5k points