Question: public static void mystery(Scanner console) { int x = 0; int y = 1; int next = console.nextInt(); // Point A while (next != 0)
public static void mystery(Scanner console) { int x = 0; int y = 1; int next = console.nextInt(); // Point A while (next != 0) { // Point B y = y * next; if (next < 0) { x++; // Point C } next = console.nextInt(); // Point D } // Point E System.out.println(y + " " + x); } For each designated Point in the code, determine whether the boolean expression is ALWAYS, NEVER, or SOMETIMES true.
next == 0 | x > 0 | |
| Point A | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] |
| Point B | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] |
| Point C | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] |
| Point D | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] | [ Select ] ["ALWAYS", "NEVER", "SOMETIMES"] |
| Point E |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
