0 of 20 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 20 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
The various bitwise operator available in c
The right shift operator represented by_____
The right shift operator represented by
The left shift operator represented by_____
The left shift operator represented by
bitwise operator can operate upon____
bits are numbered initially zero increasing from
the 1’s complement of given 8 bit number 15 is
right shift operator shift each bit from___to____
main(){
int a=5;
a=a>>2;
printf(“%d\n”,a);
}
main(){
int b=-10;
b=b>>3;
printf(“%d\n”,b);
}
left shift operator shifts each bit from____to_____
main(){
int a=-2;
a=a<<3;
printf(“%d\n”,a);
}
main(){
int a=5;
a=a<<5;
printf(“%d\n”,a);
}
the AND operator is represented by___
main(){
int i=15;
i=i&5;
printf(“%d\n”,i);
}
the OR operator is represented by
main(){
int a=10;
a=a|5;
printf(“%d\n”,a);
}
the XOR operator is represented by___
main(){
int k=1;
k=k^6;
printf(“%d\n”,k);
}
main(){
int a=15;
a=a>>15;
printf(“%d\n”,a);
}
match the following
AND |
OR |
XOR |
RIGHT SHIFT |
LEFT SHIFT |