Evaluate as true or false: !(1 &&0 || !1)

a) True

b) False

c) Invalid statement


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Explain the difference between class and struct in c++?

0 Answers  


Define the process of handling in case of destructor failure?

0 Answers  


What is stack unwinding?

0 Answers  


What is a storage class? Mention the storage classes in c++.

0 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  






Do you know what are static and dynamic type checking?

0 Answers  


What are the differences between new and malloc?

0 Answers  


write a program in c++ to implement stack using functions in header file stack.h

3 Answers   Google, Subex,


Why c++ does not have finally?

0 Answers  


What are the various oops concepts in c++?

0 Answers  


Explain how would you handle a situation where you cannot call the destructor of a local explicitly?

0 Answers  


When is dynamic checking necessary?

0 Answers  


Categories