0
problem with quiz in the end of part 2 question 3
the right answer dosen't work
2 Respuestas
+ 1
a || b is true if either a or b is true
(a&&b) || c is true if c is true
you must check this answers
0
a && b is true if both a and b is true.
(a && b) || c is true if either a and b is true OR if c is true.