Which one is the proper way to declare a constant?
const int a;
Final int a;
final int a;
final int a=3;
Reference types deals with which value?
Ivalue
rvalue
dvalue
literal value
Choose the odd one from the following
17,250.23
172.E7
-.00625
17.5
Unary operator can be defined as
Operatothat act on only one opearand
Opearator that gives only one value
Operator that precedes operands
Operator that combines opearands
Which one from the following is an illegal string value?
"abc"
"/abc/"
"\abc"
"\abc\"
Int count =0, sum, sum2; sum=count+(++count); in the lines of code. what will be the values of sum and sum2?
1 and 0
0 and 1
0 and 2
0 and 0