Moderate

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: B. 8 7

  • A. 7 8
  • B. 8 7
  • C. 9 8
  • D. None

Explanation

A leading zero makes an integer literal octal in Java, so 010 equals decimal 8 and 07 equals decimal 7. The program therefore prints 8 followed by 7.

Last updated

Practise Software Design and Architecture

493 free Software Design and Architecture MCQs from Software Engineering, each with the correct answer and an explanation. Unlimited attempts, no account needed.

Exams that ask Software Engineering questions like this

Software Engineering is on this paper prepared for on TestUstad, and all of them draw the same bank, so this question is worth knowing for it.

Related questions