A
Q. What is the output for the below code?
public class Test{
public static void main(String[] args){
int i = 010;
int j = 07;
System.out.println(i);
System.out.println(j);
}
}
- Correct Answer - Option(A)
- Views: 36
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.