Question
a.
Using break is equivalent to using a goto that jumps to the statement immediately following the loop
b.
Continue is used to by-pass the remainder of the current pass of the loop
c.
If comma operator is used, then the value returned is the value of the right operand
d.
All of the above
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Which of the following comments about for loop are correct ?
Similar Questions
Discover Related MCQs
Q. Choose the correct answers
View solution
Q. Consider the following program fragment
if (a > b)
if (b > c)
s1 ;
else s2;
s2 will be executed if
View solution
Q. If switch feature is used, then
View solution
Q. The switch feature
View solution
Q. Break statement can be simulated by using
View solution
Q. The body of the following for loop
for( putchar( 'a' ); putchar (0); putchar (' c ') ) putchar ( 'b') ;
will be executed
View solution
Q. Using goto inside for loop is equivalent to using
View solution
Q. The for loop
for( i=0; i<10; ++i)
printf("%d", i & 1);
prints
View solution
Q. In the following loop construct, which one is executed only once always.
for(exp1; exp2; exp3)
View solution
Q. The continue statment cannot be used with
View solution
Q. goto can be used to jump from main to within a function?
View solution
Q. Which loop is guaranteed to execute at least one time.
View solution
Q. A labeled statement consist of an identifier followed by
View solution
Q. do-while loop terminates when conditional expression returns?
View solution
Q. c = (n) ? a : b; can be rewritten as
exp1 ? exp2 : exp3;
View solution
Q. For loop in a C program, if the condition is missing?
View solution
Q. Which of the following statement about for loop is true ?
View solution
Q. In the context of "break" and "continue" statements in C, pick the best statement.
View solution
Q. In _______, the bodies of the two loops are merged together to form a single loop provided that they do not make any references to each other.
View solution
Q. What is the Priority of C Logical Operators?
NOT (!), AND (&&) and OR (||)
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!