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
Leave a comment