asked 95.8k views
2 votes
Given the variables, which boolean condition is true?
int a = 7;
int b = 7;

asked
User Fylax
by
7.9k points

1 Answer

6 votes

Answer:

The boolean condition that is true is a == b, which checks if the values of the variables a and b are equal. Since both a and b have been assigned the value of 7, this condition will evaluate to True.

answered
User Ffriend
by
7.8k points

No related questions found