Question: boolean x = true; boolean y = false; out.println(x&&y); out.println(x||y); out.println(!(x&&y)); out.println(!(x||y)); What is the output? Explain how you got these outputs.
boolean x = true;
boolean y = false;
out.println(x&&y);
out.println(x||y);
out.println(!(x&&y));
out.println(!(x||y));
What is the output?
Explain how you got these outputs.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
