Computer Programming MCQs Java concepts and its programming
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); } } ?
  • A A. 7 8
  • B B. 8 7
  • C C. 9 8
  • D D. None
Leave a Comment