Please answer in complete sentences and write clearly. These…

Please answer in complete sentences and write clearly. These responses should reflect a thoughtful and detailed understanding of the music. Each response will be graded based on the clarity, depth, and accuracy of your observations. Gustav Mahler, Symphony No. 2 “Resurrection”, Movement V  This piece is often described as epic, emotional, and transcendent. Based on what you hear, what musical elements support that description? Focus on specific things you notice: instrumentation, dynamics, tempo changes, mood shifts, and anything else that contributes to the emotional power of the piece.

A class collected information from students at their school…

A class collected information from students at their school about the method students use to get to school and made the bar graph. Answer the following questions about the graph. Blank #1: How many more students walked to school than biked to school?  Blank #2: How many students rode in a car to school?  Blank #3: How many students rode their bike or walked to school?  Blank #4: If a new student enrolled in the school, what method do you think they would use to get to school? 

What will be the display output of the following code? class…

What will be the display output of the following code? class Rivers:    def __init__(self, itemList):          self.riverList = itemList    def __iter__(self):          return RiverIterator(self.riverList) class RiverIterator:    def __init__(self, rlist):          self.rlist = rlist          self.index = 0    def __next__(self):          if self.index >= len(self.rlist):                raise StopIteration         self.index += 1           return self.rlist EuroRivers = r1 = Rivers(EuroRivers)riverMenu = iter(r1) next(riverMenu))print (next(riverMenu))next(riverMenu))print(next(riverMenu))print(riverMenu))next(riverMenu))next(riverMenu))print(next(riverMenu))print (‘End of rivers’)