الرجوع
تسجيل الدخول

 What is the output of the code snippet below?

boolean x, y, z;
x = y = z = false;

if(!x || (!y && !z))
    System.out.println("la banana!");
else
    System.out.println("Si Si! Buena!");