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 / murad shaikh

here int1=12
int2=18 (int=18, is given as int2)
int3=21

so
int1 < int2 && int2 < int3
12 < 18 && 18 < 21

ans = 21;

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is exception handling? Does c++ support exception handling?

589


What is the need of a destructor?

638


Can a class be static in c++?

572


What is near, far and huge pointers? How many bytes are occupied by them?

661


What is the syntax for a for loop?

602






what is the use of void main() in C++ language?

641


Does c++ have a hash table?

544


What is the most useful programming language?

608


What do the keywords volatile and mean mutable?

608


What is the difference between new() and malloc()?

618


Is it possible to have a recursive inline function in c++?

554


Is c++ a programming language?

594


write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)

1804


Is c++ low level?

582


What is a rooted hierarchy?

683