Evaluate !(1&&1||1&&0)
a) Error
b) False
c) True
No Answer is Posted For this Question
Be the First to Post Answer
What is conditions when using boolean operators?
what is Member Functions in Classes?
Does std endl flush?
what are Access specifiers in C++ class? What are the types?
What are the c++ access specifiers?
What do you mean by overhead in c++?
template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }
What is a singleton class c++?
What are inline functions?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
const char * char * const What is the differnce between the above two?
What are templates? where we should use it?