A. Enfoque cultural: Panoramas, Club cultura y Mi experiencia. First, read the statements below. Then, based on information from the Panoramas, Mi experiencia and Club cultura sections of ¡Arriba! Chapters 5 and 6, select the answer from the dropdown menu that best completes each sentence. If none of the answers are correct, select ninguna de las anteriores. (1 pt. each; 8 pts. total) 1. Ramón participa en la protección de las tortugas marinas en el parque nacional [blank1]. 2. El nombre emberá, que da nombre a un grupo indígena de Panamá, significa [blank2]. 3. El pueblo indígena que habita en el Archipiélago de San Blas se llama [blank3]. 4. Con la banca internacional y la expansión del canal, [blank4] atrae inversiones mundiales. 5. Chile produce casi [blank5] millones de botellas de vino cada año. 6. En el desierto de Atacama, celebran a [blank6] por el agua y el fruto de las cosechas. 7. En la región de [blank7], en Chile, hay lagos, glaciares y volcanes. 8. Una comida típica chilena son [blank8], y son ideales para un pícnic, y pueden ser de fruta o de carne.
Blog
A. En la casa: Los quehaceres domésticos. Claudia and Victor…
A. En la casa: Los quehaceres domésticos. Claudia and Victoria have a new roommate, Adriana, and they are discussing household chores. First, review their conversation below. Then, select the missing word from the dropdown menu. If none of the options are logical, select ninguna de las anteriores (none of the above). (1 pt. each; 7 pts. total) Claudia: ¡Hola, Adriana! Estamos muy contentas de tenerte como compañera de cuarto. Para tener una casa limpia y organizada, necesitamos hablar de los quehaceres. Adriana: ¡Sí, claro! ¿Tienen ustedes una rutina? Victoria: Cada una de nosotras tiene que (1) [1] su cama. También, para conservar un ambiente agradable, cada una tiene que (2) [2] su dormitorio. Claudia: Yo también saco (3) [3] del baño y de la cocina tres veces cada semana. ¿Qué más? Bueno, para mí es importante tener una cocina limpia, entonces después de la cena me gusta (4) [4] la mesa. Victoria: Y como quiero ayudar, todos los días intento (5) [5] el lavaplatos. ¿Y qué hay para ti? ¿Puedes (6) [6] la aspiradora en la sala una vez cada semana? Adriana: ¡Claro! Puedo también (7) [7] el piso de la cocina una vez cada dos semanas. Victoria: ¡Perfecto! Adriana: Es un buen plan. ¡Creo que nuestra casa va a ser la más ordenada del barrio!
Complete the Method Smart Text Trim: Suppose that you have t…
Complete the Method Smart Text Trim: Suppose that you have to trim text at a word break and not exceed a given length of text provide a method that accepts 2 parameters the data in and the max length. Create a second method that overloads the first that takes 3 parameters, data in, max length and if ellipsis (…) should be added to the end if the text exceeds maximum length. Take your time with this, I recommend doing your development in IntelliJ. Paste the code for the separate class and tester here when finished. No scanners or anything like that needed.
The dynamic type of a variable can change many times through…
The dynamic type of a variable can change many times throughout the execution of your program while the declared type never changes.
Consider the following class and its implementation of the e…
Consider the following class and its implementation of the equals(..) method: public class Creature { // note: age and name are considered significant fields of the Creature class private int age; private String name; /* creature constructor & getter methods for the above two fields elided .. */ @Override public boolean equals(Object o) { if (o == null) { return false; } // as per the contract for equals(..) // return false if o is not a Creature object if (! (o instanceof Creature) ) { return false; } Creature oAsCreature = (Creature) o; // downcast o to a Creature if (!this.name.equals(oAsCreature.getName())) { return false; } if (this.age != oAsCreature.getAge()) { return false; } return true; // this creature and the other creature ‘o’ are the same/equal }} Identify from the following options any visible issue Creature class shown above.
Suppose the class Sub extends class Sandwich. Which of the f…
Suppose the class Sub extends class Sandwich. Which of the following assignments are legal? Sandwich x = new Sandwich();Sub y = new Sub();a.) x = y;b.) y = x;c.) y = new Sandwich();d.) x = new Sub(); You can assume a-d above execute in order. Select only the assignments that are valid. Note the checkboxes may be shuffled by canvas (so when considering each, assume it’s in the order shown in the code above — each one is labeled a-d for this reason)
Given the following method: public static int findChar(c…
Given the following method: public static int findChar(char letterToFind, String source) { if ((source == null) || (source.isEmpty())) { throw new IllegalArgumentException(“must provide a string”); } char[] chars = source.toCharArray(); for (int i =0; i< chars.length; i++){ char c = chars[i]; if (c == letterToFind){ return i; } } return -1;} If called as follows:int result = findChar('w',"The bird sang woe is me"); What is the result?
Java is a statically typed language.
Java is a statically typed language.
In Lawrence v. Texas (2003), the Supreme Court invalidated t…
In Lawrence v. Texas (2003), the Supreme Court invalidated the laws in fourteen states that criminalized private sexual behavior, ruling them a violation of _____ rights.
How did Americans’ attitudes about the role of government ch…
How did Americans’ attitudes about the role of government change as a result of the Great Depression and Roosevelt’s New Deal?