Q. What will be the output of the given code?
boolean_1 = !(3 < 4 || false) && (false || true)
puts boolean_1
boolean_1 = !(3 < 4 || false) && (false || true)
puts boolean_1
β
Correct Answer: (B)
22.5 11.5