What is the value of the following expressions given the following declarations? int n = 10; int m = 0; 1) 5 < 10 true 2) n != m true 3) n == m true 4) n + 5 < 8 + m false 5) n = m false Write code that gets scores for 2 teams and outputs which team won (has the higher score) or "Tie Game" if they had the same score. cout << "Enter Team A's score: "; int team_A_score; cin >> team_A_score; cout << "Enter Team B's score: "; int team_B_score; cin >> team_B_score; if (team_A_score > team_B_score) { cout << "Team A won\n"; } else if (team_B_score > team_A_score) { cout << "Team B won\n"; } else { cout << "Tie Game\n"; } What is the value of the following expressions? 1) "Abracadabra" < "Astrology" true 2) "crazy" < "crabby" false 3) "cali" < "california" true 4) "CA" < "CA" false 5) "CA" <= "ca" true 6) "apple" != "oranges" true