Now, write suggestions for Raúl (from the activity above) wh…

Now, write suggestions for Raúl (from the activity above) who recently got his first job. Use the USTED command forms and use at least 4 different verbs from the list of “verbos posibles below”. Follow the model:  Raúl, sea puntual tu primer día de trabajo.  VERBOS POSIBLES: Ser, Llegar, Hablar, Trabajar, Leer, Contestar

Generating a Number Series Application Name: FLastnameChart…

Generating a Number Series Application Name: FLastnameChartingI4Description:  Write a C program that takes user input and allows the user to generate a series of numbers from 1 to 100 based on their choice.  Requirements: Display Menu: 1 – Odd Numbers 2 – Even Numbers 3 – Multiples of 10 Prompt the user to enter their choice (1,2, or 3) Validate user input: If the user enters an invalid option show an error message and allow them to reenter their choice. Loop Implementation: Use a for loop to display the odd numbers. Use a while loop to display the even numbers. Use a do-while loop to display the multiples of 10. You can use either a switch or if/else construct to use the different loops based on entry. Display the generated series in a well-formatted way.

Gramática. Los pronombres de objeto directo e indirecto. En…

Gramática. Los pronombres de objeto directo e indirecto. En la empresa. Complete the following conversation between a boss and his employee with the appropriate direct or indirect object pronouns. (10 x 1 pt. each = 10 pts.)   jefe:                 Peláez, ¿(1)  (le / les) enviaste el informe al Sr. Semprún? empleado:        Sí, ya (2)  (nos los / se lo)  envié. jefe:                 Perfecto. ¿Y (3)   ( le / les) escribiste la carta a los gerentes? empleado:        No, (4) ( te lo / se la ) estoy escribiendo en este momento. jefe:                 De acuerdo. Ramón (5) ( te / le) dejó a ti los documentos en la mesa.                                     ¿(6)  (la / los)  viste? empleado:        Sí. Están completos. También (7) ( te / me) dejó a mí unas solicitudes de trabajo para el                                     puesto de contador. ¿(8)  (las / lo) quiere ver? jefe:                 No, ahora no puedo. ¿(9) ( nos / me) mandaron el informe de ventas a nosotros? empleado:        Sí, (10) ( nos lo / nos las) mandaron la semana pasada. jefe:                 Pues, todo está listo entonces. Hiciste un buen trabajo. empleado:        Gracias.    

Loopy Numbers Application Name: FLastnameChartingI4Descript…

Loopy Numbers Application Name: FLastnameChartingI4Description:  Write a C program that takes user input and allows the user to generate a series of numbers from 100 to 200 based on their choice.  Requirements: Display Menu: 1 – Odd Numbers 2 – Even Numbers 3 – Multiples of 10 Prompt the user to enter their choice (1,2, or 3) Validate user input: If the user enters an invalid option show an error message and allow them to reenter their choice. Loop Implementation: Use a for loop to display the odd numbers. Use a while loop to display the even numbers. Use a do-while loop to display the multiples of 10. You can use either a switch or if/else construct to use the different loops based on entry. Display the generated series in a well-formatted way.

Number Series Generator Application Name: FLastnameChartingI…

Number Series Generator Application Name: FLastnameChartingI4Description:  Write a C program that takes user input and allows the user to generate a series of numbers from 1 to 100 based on their choice.  Requirements: Display Menu: 1 – Even Numbers 2 – Odd Numbers 3 – Multiples of 5 Prompt the user to enter their choice (1,2, or 3) Validate user input: If the user enters an invalid option show an error message and allow them to reenter their choice. Loop Implementation: Use a for loop to display the even numbers. Use a while loop to display the odd numbers. Use a do-while loop to display the multiples of 5. You can use either a switch or if/else construct to use the different loops based on entry. Display the generated series in a well-formatted way.