Given the Team class, what is the output of each code fragment?

(Corrections from the original are in bold)

1)
Team teamA;
Team teamB;
teamA = new Team("Giants",35);
teamB = new Team("Patriots",30);
System.out.println(teamA.getName());

2)
Team team1;
team1 = new Team("Strong Waffles", 7);
team1 = new Team("Mild sauce", 14);
System.out.println(team1.getName());

3)
Team teamA;
Team teamB;
teamA = new Team("Brute Force",13);
teamB = new Team("Geek Squad", teamA.getSkill()+7);
System.out.println(teamB.getName()+" "+teamB.getSkill());

4)
Team teamA;
Team teamB;
teamA = new Team("Ducks", 100);
teamB = teamA;
teamA.changeSkill(10);
teamB.changeSkill(1);
System.out.println(teamA.getSkill());
System.out.println(teamB.getSkill());

5)
Team winner;
String food;
food="muffinS";
winner = new Team(food, 3);
food = "hot dog";
System.out.print(winner.getName());
System.out.print(food);

6)
Team exercise;
int skillz = 12;
exercise = new Team("Runners",skillz);
skillz = skillz + 6;
exercise.changeSkill(skillz);
System.out.println(skillz);
System.out.println(excercise.getSkill());

7)
Team tame;
tame = new Team("meat", 23);
tame.setName("meta" + tame.getName());
System.out.println(tame.getName());