Consider the following code snippet: int score = 0; double price = 100; if (score > 0 && price < 200 && price / score > 10) { System.out.println("buy"); } Which of the following statements is true on the basis of this code snippet? The output is buy. The code snippet compiles and runs, but there is no output. The code snippet doesn't compile. The code snippet causes a divide-by-zero error.

Respuesta :

Answer:

The code snippet compiles and runs, but there is no output.

Explanation:

The condition is

  • score > 0 && price < 200 && price / score > 10

score = 0

price = 100

[(0) > 0]  and [(100) < 200] and [100)/(0) > 10]

false and ........

Since the first condition is false, the program will not validate the other conditions because the conditional "and" is false when at least one of the conditions is false

ACCESS MORE
EDU ACCESS
Universidad de Mexico