Evaluate x=++y+2y, given if y=6
19
20
21
22
Universal int ul=0;What is the result of the expression.!!ul
0
1
2
3
Predict the output: (6==3)&&(4==4)
error
none of these
Which is not unary from the following :
/ =
+ +
- -
size of
Equality operator is
=
= =
< =
< >
What would be the output of the following program void main ( ) { int a=1,b=2,c=4; a=c+ ++b/c; cout <<"a="<<a; }
a=3
a=0.7
a=4
a=0
a+=10 is equivalent to
a++
++a
a=a+10
none
int a=20;evaluate the following expression. a+=a+ ++a;
63
64
65
66
If a= -4,then the value of -a is :
4
-4
16
Find the odd one out :
a=a+1;
a+=1;
a++;
a=+1;