Question: Suppose we have a Scanner trying to read over the following: 4.2 abc 4 Select all correct answer(s) below: nextInt() tries to read next token


Suppose we have a Scanner trying to read over the following: 4.2 abc 4 Select all correct answer(s) below: nextInt() tries to read next token 4.2, couldn't process it as an int. java.util.Input MismatchException nextDouble() returns 4.2 as a double, It tried to read next token, succeeded because it could be read as a double. next() returns "4.2" as a String nextLine() returns "4.2 abc 4" as a String. Select all correct answer(s): 1 2 2 3 public static void main(String[] args) { int x = 15; 20; mystery(x); } int y 5 4. 5 6 7 00 8 9 public static void mystery(int y) { System.out.println(y); } The value 15 will be passed to mystery Reference to x will be passed to mystery Code will print out 20 Code will print out 15
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
