C# Programming - Control Instructions - Discussion

Discussion Forum : Control Instructions - General Questions (Q.No. 8)
8.
Which of the following is the incorrect form of Decision Control instruction?
if (Condition1) 
{// Some statement}
if (Condition1) {// Some statement} 
else {// Some statement}
if (Condition1) {// Some statement} 
else {// Some statement} 
else if ( Condition2){//Some statement}
if ( Condition1 ) {// Some statement} 
else if ( Condition2 ) {// Some statement} 
else {// Some statement}
if ( Condition1 ) {// Some statement} 
else if ( Condition2 ) {// Some statement} 
else if ( Condition3 ) {// Some statement} 
else {// Some statement}
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Inathi Gqola said:   1 decade ago
If, else if, else.

Post your comments here:

Your comments will be displayed after verification.