Listen to the following dialogues between people asking for…

Listen to the following dialogues between people asking for and telling the time. Choose the option that has the same meaning as the time you hear in each dialogue. You can listen to the audio up to 3 times, and you can also pause between conversations.      1. 2. 3. 4. 5. 6.

You are going on a study abroad in Québéc, and you will be p…

You are going on a study abroad in Québéc, and you will be placed with a host family. Write a brief letter/e-mail to Mr. et Mme. Leroux to introduce yourself (~10 sentences). Keep it polite and formal. Start with a greeting and a question on how they are doing. State your name, age, origin/nationality, a few of your personality traits, what you are studying in college, what days and times you have classes, whether you work or not, and what your hobbies are. Don’t forget to say good-bye and sign.   You can copy and paste the special accented symbols from here: ÀÂÄÇÈÉÊËÎÏÔŒÙÛÜ àâäçèéêëîïôœùûü   You will be graded on overall content/flow (up to 5 pts), vocab (up to 5 pts), and grammar (up to 5 pts)

Now describe what the weather is generally like in your area…

Now describe what the weather is generally like in your area in each season using the verb faire with one of the words from the list below (do not repeat the words you used). Then, use the sentences in the previous exercise as a model to say what activities you (generally) do in those weather conditions.    beau chaud doux frais froid mauvais   EXEMPLE:    En hiver, quand il fait froid, je fais du ski avec des amis.   1. En automne, __________. 2. En hiver, __________. 3. Au printemps, __________. 4. En été __________.   You can copy and paste the special accented symbols from here: ÀÂÄÇÈÉÊËÎÏÔŒÙÛÜ àâäçèéêëîïôœùûü

Complete the following passage about seasonal activities by…

Complete the following passage about seasonal activities by conjugating the regular -er verbs or the irregular verb faire in parentheses.    En automne, je suis à la fac, mais je      (faire) du yoga et du jogging, et je      (jouer) parfois au foot le week-end. Et toi? Qu’est-ce que tu      (faire) en automne quand tu n’      (étudier) pas? En hiver, mes grands-parents      (rester) à la maison (at home). Ils      (faire) des travaux manuels et ils      (aimer) aussi regarder la télé et jouer au bridge. Au printemps, ma colocataire Cécile      (faire) du jardinage ou elle      (commencer) un «nouveau projet» dans la maison. En été, mes amis et moi, nous      (nager) ou nous      (faire) du vélo. Et toi et tes amis? Qu’est-ce que vous      (faire) en été? Est-ce que vous      (voyager)?

  public void XXXX()  { if (tail == null) { System.out.print…

  public void XXXX()  { if (tail == null) { System.out.println(“List is empty  delete.”); return; } if (head == tail) head = tail = null; else { Node temp = head; while (temp.next != tail)            temp = temp.next; temp.next = null; tail = temp; } } Consider the following linked list , if the above function XXXX is applied on the list  The number of elements in the list would be _________________________