What will be the output of the following Java code?
class Output
{
public static void main(String args[])
{
int x=y=z=20;
}
}
compile and runs fine
20
run time error
compile time error
Quiz Recommendation System API Link - https://fresherbell-quiz-api.herokuapp.com/fresherbell_quiz_api
# | Quiz |
---|---|
1
Discuss
|
Which right shift operator preserves the sign of the value?
Solution |
2
Discuss
|
Which of these lines of Java code will give better performance? 1. a | 4 + c >> b & 7; 2. (a | ((( 4 * c ) >> b ) & 7 ))
Solution |
3
Discuss
|
What will be the output of the following Java program?
Solution |
4
Discuss
|
What will be the output of the following Java program?
Solution |
5
Discuss
|
Which of these operators can skip evaluating right hand operand?
Solution |
6
Discuss
|
What will be the output of the following Java program?
Solution |
7
Discuss
|
What is the value stored in x in the following lines of Java code? int x, y, z; x = 0; y = 1; x = y = z = 8;
Solution |
8
Discuss
|
Decrement operator, −−, decreases the value of variable by what number?
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