Im having a real hard time understanding how the Boolean operators work and how to figure them out.

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)

like how did u arrive at these answers any help in understanding would b gr8.

Thanks