What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
int a = 1;
int b = 2;
int c = 3;
a |= 4;
b >>= 1;
c <<= 1;
a ^= c;
System.out.println(a + " " + b + " " + c);
}
}
3 1 6
2 2 3
2 3 4
3 3 6
Quiz Recommendation System API Link - https://fresherbell-quiz-api.herokuapp.com/fresherbell_quiz_api
# | Quiz |
---|---|
1
Discuss
|
What is the order of precedence (highest to lowest) of following operators? 1. & 2. ^ 3. ?:
Solution |
2
Discuss
|
Which of these operators can skip evaluating right hand operand?
Solution |
3
Discuss
|
With x = 0, which of the following are legal lines of Java code for changing the value of x to 1? 1. x++; 2. x = x + 1; 3. x += 1; 4. x =+ 1;
Solution |
4
Discuss
|
Which of these statements are incorrect?
Solution |
5
Discuss
|
What is the output of relational operators?
Solution |
6
Discuss
|
What should be expression1 evaluate to in using ternary operator as in this line? expression1 ? expression2 : expression3
Solution |
7
Discuss
|
Which of these statements is correct?
Solution |
8
Discuss
|
What will be the output of the following Java code?
Solution |
9
Discuss
|
What will be the output of the following Java code?
Solution |
10
Discuss
|
What will be the output of the following Java program?
Solution |
# | Quiz |
Copyright © 2020 Inovatik - All rights reserved