given
unsigned int ui1=3,ui2=7;
what are the outputs of
a)ui1 & ui2
b)ui1 && ui2
c)ui1 | ui2
d)ui1 || ui2
i also need the justification for the answers
thank you
Answers were Sorted based on User's Feedback
Answer / swapna
a) 3
&:bitwise and operator
3-011
7-111
3&7-011->3
b)any positive value
&&-logical and
both numbers are are positive.so and operation results in
true-so any positive value
c)7
bitwise or
d)any positive value
logical or
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / subeetha
a) 3
&:bitwise and operator
3-011
7-111
3&7-011->3
b)1
&&:logical and
both numbers are non zero.So, operation Result is true
c)7
bitwise or
d)1
&&:logical Or
both numbers are non zero.So, operation Result is true
| Is This Answer Correct ? | 0 Yes | 0 No |
What relational operators if statements in c++?
What is difference between c++ 11 and c++ 14?
What language does google use?
How do I run c++?
Can we use struct in c++?
Incase of a function declaration, what is extern means?
What is the basic structure of c++ program?
What is the use of "new" operator?
When a function is made inline. Write the situation where inline functions may not work.
In what situations do you have to use initialization list rather than assignment in constructors?
Do you know what are pure virtual functions?
What is ifstream c++?