Questions List
Browse all explanatory questions of this chapter.
1
Identify the type of expression statements:
-
aValue=8933.234;
-
aValue++;
-
System.out.println("Hello World!");
-
Bicycle myBike=new Bicycle();
aValue=8933.234;
aValue++;
System.out.println("Hello World!");
Bicycle myBike=new Bicycle();
2
Explain the following operators:
(a) ++ (Increment Operator)
(b) && (Logical AND)
(c) != (Not Equal To)
++ (Increment Operator)&& (Logical AND)!= (Not Equal To)
3
What is the difference between the >> and >>> operators?
4
What is dot operator?
5
Which Java operator is right associative?
6