πŸ“Š JAVA
Q. What will be the output after compiling and running following code?
Code:
1. public class Test{
2.       public static void main(String... args){
3.             int x =5;
4.             x *= 3 + 7;
5.             System.out.println(x);
6.       }
7. }
  • (A) 22
  • (B) 50
  • (C) 10
  • (D) Compilation fails with an error at line 4
πŸ’¬ Discuss
βœ… Correct Answer: (B) 50

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
210
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Shivam
Publisher
πŸ“ˆ
94%
Success Rate