What is the result? Given: What is the result? Given: What is the result? A. Compilation fails B. The code compiles, but does not execute. C. Paildrome D. Wow E. Mom Show Hint ← Previous question Next question →
Roger public class Palindrome { public static void main(String[] args) { System.out.println(args[1]); return 0; } } A: it does not compile because return type is interger Reply
b
public class Palindrome {
public static void main(String[] args) {
System.out.println(args[1]);
return 0;
}
}
A: it does not compile because return type is interger