65.8k views
5 votes
If (a != b) {

** code block **
if (b>c) {
** code block **
}
}

The block of code is the same as:

A. if(a==b) || (b < c)
B. if(a!=b) && (b > c)
C. if(a==b) && (b >= c)
D. if(a==b) || (b > c)
E. if(a==b) && (b < c)

1 Answer

6 votes

Answer: B

Explanation:

The given code block can be translated to the following logical expression:

css

Copy code

if (a != b) {

// code block

if (b > c) {

// code block

}

}

The logical expression for this code is:

css

Copy code

(a != b) && (b > c)

Therefore, the correct option is:

B. if(a!=b) && (b > c)

User AvgJoe
by
8.1k points