MCQ Single Best Answer Not Set

QWhat is the output for the below code?
1. public class Test{
2.       public static void main(String[] args){
3.             byte b = 6;
4.             b+=8;
5.             System.out.println(b);
6.             b = b+7;
7.             System.out.println(b);
8.       }
9. }

ID: #2023 Java Data Types and Variables - MCQ 817 views
Question Info
#2023Q ID
Not SetDifficulty
Java Data Types and Variables - MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 14 21
  • B 14 13
  • C Compilation fails with an error at line 6
  • D Compilation fails with an error at line 4
Correct Answer: Option C

Explanation

Compilation fails with an error at line 6

Share This Question

Challenge a friend or share with your study group.