Given the code fragment:

Given:

What will be the result of compiling and executing Test class?
package com.udayan.oca;
public class Test {
static String msg; //Line 2
public static void main(String[] args) {
String msg; //Line 4
if(args.length > 0) {
msg = args[0]; //Line 6
}
System.out.println(msg); //Line 8
}
}
What will be the result of compiling and executing Test class?
package com.udayan.oca;
import java.util.ArrayList;
import java.util.List;
public class Test {
public static void main(String[] args) {
List
list.add(100);
list.add(7);
list.add(50);
list.add(17);
list.add(10);
list.add(5);
list.removeIf(a -> a % 10 == 0);
System.out.println(list);
}
}
Which statement is true about the switch statement?
© Copyrights Oracledumps 2025. All Rights Reserved
We use cookies to ensure that we give you the best experience on our website (Oracledumps). If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the Oracledumps.