Can you explain to me why these are true and false im having a hard time understanding what makes them true and false.
- What type of statement is best suited for this and how would you write the code to do that?
- A coach wants to send a note to all of his players who have scored 5 or more points during a game this season and tell them that they have done a great job. All of the players that have scored 4 or fewer points during a game should receive a note inviting them to a sports clinic.
- ?Please evaluate the following to a final True or False value:
a = 10
b = 20
a == b OR a > b
a != b OR b == a
a != b OR b == a
a >= b AND b <= a
a < b OR b > a
a == b AND a > b
a < b AND b > a
a >= b OR b <= a
(a >= b OR a >= b) OR (a <= b AND b > a)
(a == b AND a > b) OR (a == b AND b == a)
(a >= b OR b <= a) AND (a != b OR b == a)
(a != b AND b == a) AND (a <= b OR b > a)