if int1 has the value 12, int has the value 18, and int3 has
the value 21, what is the result:
int1 < int2 && int2 < int 3

Answer Posted / tarun

int1 = 12
int = 18 (not int 2)
int 3 = 21
then 1nt1 <int2, int2 value is not known
also int2< int3 , int2 value is not known

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is std :: flush?

570


Is c++ proprietary?

573


What is buffering in c++?

578


What is the difference between method overloading and method overriding in c++?

555


What is pointer with example?

558






Where are setjmp and longjmp used in c++?

609


What are function prototypes?

640


what is pre-processor in C++?

587


What is a modifier in c++?

625


How did c++ get its name?

564


Which is better c++ or java?

556


Write a code/algo to find the frequency of each element in an array?

599


What is the limitation of cin while taking input for character array?

1442


Does c++ support exception handling?

589


Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?

2007