What will the value of the result variable be after the code segment below has been run.
bool result ;
int number3 = 18, number7 = 22, number11 = 41;
result = number3 < number7 || number3 == number11 ;
The value of the variable result will be true
Comments