How long does this loop run:

for(int x=0; x=3; x++)
a) Never
b) Three times
c) Forever

Answers were Sorted based on User's Feedback



How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / pracheer gupta

what r u saying guys..
the loop will run c) forever
this is bcoz in the termination part it is actually x=3 and
not x==3.
x=3 will always evaluate to true and hence the loop is
executed infinite times.

Is This Answer Correct ?    91 Yes 11 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / guest

Forever

Is This Answer Correct ?    55 Yes 9 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / manju

The correct and verified answer is the loop runs forever

the answer is c. it is so becoz in condition part we are
giving i=3 and not i==3.


so it executes infinite times.

Is This Answer Correct ?    32 Yes 3 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / eric

The loop will run forever.
K.premalatha is the foolest lady I have ever met.

Is This Answer Correct ?    17 Yes 3 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / john

the loop runs forever guys....
have you tried this? without trying u r giving the random answers?
Sentrix, Eric, Manju,Pracheer Gupta are right...
other guys please try it....

Is This Answer Correct ?    17 Yes 4 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / sentrix

Forever.

Is This Answer Correct ?    16 Yes 4 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer /

#include<stdio.h>
main()
{
for(int x=0; x=3; x++)
printf("Forever.....");
}

Is This Answer Correct ?    13 Yes 2 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / divya

hai john I tried this in online compiler but it shows some errors....didnt give exact ans...Is there any other ways to conform this answer.

Is This Answer Correct ?    2 Yes 0 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / madhupathania

forever

Is This Answer Correct ?    1 Yes 0 No

How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever ..

Answer / awaneesh dubey

Never . It will show compile time error . boolean required
at the terminationa condition not int . i.e. it should be
for(int x=0; x==3; x++) not for(int x=0; x=3; x++) .
x=3 will cause compilation error. So answer is never .

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C++ General Interview Questions

What is the use of string in c++?

0 Answers  


Describe the setting up of my member functions to avoid overriding by the derived class?

0 Answers  


What is insertion sorting?

0 Answers  


What is the role of static keyword for a class member variable?

0 Answers  


Memory is not a constraint. In a single iteration(NOTE: you can't go back), how will you find out the 10th last node/item in a linked list.

16 Answers   BNB, FDS, Goldman Sachs, Nagarro,






Is it possible to provide special behavior for one instance of a template but not for other instances?

0 Answers  


Write a program which uses functions like strcmp(), strcpy()? etc

0 Answers  


What does scope resolution operator do?

0 Answers  


What is the latest version on c++?

0 Answers  


True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

0 Answers  


Why iomanip is used in c++?

0 Answers  


Can you explicitly call a destructor on a local variable?

0 Answers  


Categories