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

Answers were Sorted based on User's Feedback



if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int..

Answer / arikuntha varathan

since 12<18 and also 18<21 the codition becomes true

Is This Answer Correct ?    13 Yes 1 No

if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int..

Answer / 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

if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int..

Answer / 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

More C++ General Interview Questions

What are exceptions c++?

0 Answers  


What is protected inheritance?

0 Answers  


Show the declaration for a static member variable.

0 Answers  


Write the program for fibonacci in c++?

20 Answers   TATA, Wipro,


What do you know about friend class and friend function?

1 Answers  






What is Object Oriented programming.what is the difference between C++ and C?

8 Answers   Infosys,


Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?

1 Answers  


What is an object in c++?

0 Answers  


What is a sequence in c++?

0 Answers  


What is pointer to member?

0 Answers  


Explain about Virtual Function in C++?

0 Answers  


Differences between private, protected and public and give examples.

0 Answers  


Categories