Which symbol is the logical operator OR? && II != public static void main(String[] args) [ boolean A = true; boolean B = false; System.out. print('A'); if (A∥∥) System out print'('B'); l else I System out print("C): 1 System out print('D'); j What will the code above print? ABCD ABD public static void main(Stringl] args) \{ boolean A= true: boolean B = false; System.out.print("A"): if (A&&B)[ System.out.print("B"); \} else \{ System.out.print("C"); 3 System.out.print("D"); 3 3 What does the code above print? ABCD ABD ACD AD Which scenario makes (A&& IB) evaluate to true? A= true; B= true; A= false; B= true; A= true; B= false; A= false; B= false; Which scenario makes (A || !B ) false? A= true; B= true; A= false; B= true; A= true; B= false; A= false; B= false; What does the logical operator! (NOT) do? It changes integer values to a negative number. It changes boolean values to false It changes boolean values to true It changes boolean values to the opposite of what they are What scenario would make the condition above false? A= true; B= true; A= false; B = true; A= true; B = false; A= false; B= false; if (A) I A=!A ] In the code above, there is only one variable in the condition and no logical operator. This means that A must be true for the condition to be true and for this section of the code to execute. What happens in the code block if the condition is true? A becomes a negative number A=0 A - false: A - true: