Question
a.
if (Condition1)
{// Some statement}
b.
if (Condition1) {// Some statement}
else {// Some statement}
c.
if (Condition1) {// Some statement}
else {// Some statement}
else if ( Condition2){//Some statement}
d.
if ( Condition1 ) {// Some statement}
else if ( Condition2 ) {// Some statement}
else {// Some statement}
Posted under C# programming
else {// Some statement}
else if ( Condition2){//Some statement}
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 is the incorrect form of Decision Control instruction?
Similar Questions
Discover Related MCQs
Q. Which of the following statements is correct?
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!