QUESTION 1 (Lecciones 8 & 9). Select one of the two followin…

QUESTION 1 (Lecciones 8 & 9). Select one of the two following topics (a or b) and respond to the question(s) in Spanish, writing a well-structured paragraph of 7-9 sentences. Be sure to support your answers and use a few connectors, such as, primero, segundo, también (also/too), además (furthermore/moreover), incluso (even), debido a (due to), por lo tanto (therefore), así que (so/thus), por ejemplo, como por ejemplo (such as), en primer lugar (in the first place), sin embargo (nevertheless), en resumen, por último, para concluir, … Topic a: “La cultura es la memoria del pueblo, la conciencia colectiva de la continuidad histórica, el modo de pensar y de vivir”. ¿Qué opinas sobre esa cita del novelista y ensayista checo, Milan Kundera?  ¿Compartes su perspectiva sobre qué es la cultura? Usando lo que vimos en este curso y lo que sabes sobre el tema, presenta tu opinión en un párrafo bien estructurado de 7-9 frases. Usa algunos conectores.  OR Topic b: ¿Estás de acuerdo con el escritor estadounidense Greg Tate, quien llama al femomeno de la apropiación cultural “Todo menos la carga” (“Everything but the burden”)? Según lo que has aprendido en SPAN 212 sobre la apropiación cultural, tus investigaciones y tus propias experiencias, explica por qué estás de acuerdo o no con Greg Tate. En tu explicación trata de incluir al menos un ejemplo para apoyar tu punto de vista. Escribe tu respuesta en un párrafo bien estructurado de 7-9 frases. Usa algunos conectores.  Aquí tienes una breve lista de términos clave para los temas de las lecciones 8 y 9: Creencias Tradiciones Borrar y desplazar  Falta de sensibilidad Rasgos/Características Sabiduría Comodificar Banalización Modos de vida Valores Objeto de consumo Despojar Conocimientos Normas Grupo marginado Perpetuar Prácticas Proteger Uso irrespetuoso Plagio Usos y costumbres Patrimonio Signos identitarios Cultura ajena Cultura dominante Cultura oprimida Imitar Intercambio cultural

The following diagram represents an ATM class that’s used to…

The following diagram represents an ATM class that’s used to represent ATM devices that are part of a bank’s ATM system.  The attributes are data items the ATM must store about its own state and are needed to support the usual operation of withdrawing cash.  The methods are the ATM’s behaviors, or operations, needed to support the withdrawal operation.  The cardInput() method handles the reading of the card and pin and also the validation of the pin.  Which of the following methods must be added to fully support that operation?  Select the one best choice.      

Write the display output of the following code in the space…

Write the display output of the following code in the space below. class CarInv: # Inventory for a used car lot – numbers of each model   def __init__ (self, inventory):       self.inventory = inventory     def add (self, **kwargs):       for item in kwargs:           if item in self.inventory:                   self.inventory[item] += kwargs[item]           else:               self.inventory[item] = kwargs[item] def remove (self, car): # car = tuple of (model, qty) if car[0] in self.inventory: if car[1] >= self.inventory[car[0]]: del self.inventory[car[0]] else: self.inventory[car[0]] = self.inventory[car[0]] – car[1]     def showInv(self):       for item in self.inventory:           print (item, ‘ – ‘, self.inventory[item]) originalInv = {‘Acura’: 2, ‘BMW’: 3, ‘Ford’: 11, ‘Honda’: 8, ‘Toyota’: 9}CI = CarInv(originalInv)CI.add(Honda = 2, Ford = 4, Mazda = 3, Toyota = 5, Subaru = 3)CI.remove((‘Toyota’,2) )CI.add(Kia = 2, Toyota = 1)CI.remove((‘BMW’, 3))CI.add( )CI.showInv()

What lines will appear in the display output of the followin…

What lines will appear in the display output of the following code? Type the answer below. class OnlyOdds (Exception):    def msgOut (self): print (args[2], args[0]) try:    num = 44    if int(num) % 2 != 1:         raise OnlyOdds (‘ must be odd’, ‘The number => ‘, num)    print(‘Number is odd – will process’)except OnlyOdds as OOE: print (‘Odd/even Exception raised’): OOE.msgOut()except Exception:   print(‘Something went wrong’) print(‘Cannot continue processing’)finally: print (‘Next …’)   

For the class definition of Property, below, which of the fo…

For the class definition of Property, below, which of the following definitions correctly sets up a subclass called Apartment that inherits everything from Property and adds its own attributes for ‘rent’ and ‘floor’ (floor space)? class Property (object):        def __init__(self, propID, loc, size, descr):                self.__propID = propID                self.__loc = loc                self.__size = size                self.__descr = descr