Q. What will be the output of the following code snippet?
Code:
var a = true + true + true * 3; print(a)
β
Correct Answer: (D)
5
var a = true + true + true * 3; print(a)
You must be Logged in to update hint/solution