Q. What will be the output of the given code?
boolean_1 = !true
puts boolean_1
boolean_2 = !true && !true
puts boolean_2
boolean_1 = !true
puts boolean_1
boolean_2 = !true && !true
puts boolean_2
β
Correct Answer: (C)
True False