What will be result of the following statement
boolean a= true;
boolean b = false;
System.out.println( a || b);
Answers
Answered by
0
Answer: TRUE
Step-by-step explanation:
a
b
a && b (AND)
a || b (OR)
false false false false
false true false true
true false false true
true true true true
Similar questions
Science,
1 month ago
Science,
1 month ago
Computer Science,
2 months ago
Math,
9 months ago
Math,
9 months ago