Answers

Question and Answer:

  Home  Basic C++ Syntax

⟩ What is conditions when using boolean operators?

A. !( 1 || 0 ) ANSWER: 0

B. !( 1 || 1 && 0 ) ANSWER: 0 (AND is evaluated before OR)

C. !( ( 1 || 0 ) && 0 ) ANSWER: 1 (Parenthesis are useful)

 200 views

More Questions for you: