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
816 views
Question Info
#2023Q ID
Not SetDifficulty
Java Data Types and Variables - MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option C
Explanation
Compilation fails with an error at line 6
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic