This is all in french can someone help me who understands please ? Thanks alot

This Is All In French Can Someone Help Me Who Understands Please ? Thanks Alot

Answers

Answer 1

Explanation:

1. what is your favourite subject at school?

2.do you often go to the beach?

3.how old are you?

4.What do you like to do?

5.what do you like to eat?

6.Do you have any brothers or sisters?

7.What is the weather?

8.Where do you live?

9.What is your favourite film?

10.What is your favourite dessert?

11.What is your birthday?

12.who is your best friend?

13.What are you going to do on the weekend?

14.Who is your favourite actor/actress?

15.What is your favourite animal?

Answer 2

Explanation:

1. I cookka da pizza oui merci


Related Questions

Please associate the verbs in column A to the sentences in column B.

Answers

Bonjour,

Elle revient toujours de vacances très bronzée.

Tu interviens toujours dans mes affaires.

Nous vous prévenons de notre départ la semaine prochaine.

Ils souviennent de très peu de choses. Ils ont une mauvaise mémoire.

:)

Bonjour,

Elle "revient " toujours de vacances très bronzée.

Tu "interviens" toujours dans mes affaires.

Nous vous "prévenons" de notre départ la semaine prochaine.

Ils "se souviennent" de très peu de choses. Ils ont une mauvaise mémoire.

Quelled here est- il?​

Answers

L'heure "vraie" (aussi appelée "heure solaire") est définie géométriquement de la façon suivante: il est midi vrai (=12h00) lorsque le soleil est exactement situé dans le plan méridien du lieu considéré.

Answer:

what time is it??

4:02

Explanation:

Help please!

Write this in French using imparfait and passé composé:

One time, I went to the doctor because I wasn't feeling well. I had felt dizzy and nauseous. I had a headache too. It turned out I was only dehydrated and needed to drink more water. My doctor only prescribed me some pills, and I went home.

Please do not use any translation sites! They are not always accurate. Know your French...Merci!

Answers

Un jour, je suis partie voir le docteur parce que je ne me sentais pas bien. Je me sentais étourdi and nauséeux. J’avais aussi la migraine. Il s’est avéré que j’étais déshydratée et je devais boire plus d’eau. Mon docteur a seulement prescrit quelques médicaments et je suis partie à la maison. I hope that helps you !

How do I say "Close the door!" in imperative form if I'm talking to one person?

Answers

Bonjour,

Ferme la porte !


Have a good day !! :)

Bonjour,

Answer:

Verbe "fermer" à l'impératif :

Ferme la porte ! (one person)

Fermons la porte !

Fermez la porte !

Other Questions
Can anyone tell me all the corrects answers to these? Im sorry if this is the wrong subject Im not sure what to put it under but I really need help! The depression is filled with water and forms a lake when glacial ice melts, known as calcular el nmero de lados de aquel poligono cuyo nmero de diagonales. if x/6 = 6/9 whats the value of x and pls give explanantion Which of the following describes the role of the shogun during the Tokugawa Shogunate in Japan? A. He was a powerful military leader who ruled all of Japan. B. He was elected by citizens to serve as the country's leader. C. He was a powerful landowner who controlled all of Japan's farmers. D. He was a monarch who held a symbolic role with no political power.HURRYYYYYY PLEASEEEEEEEEEEEEEEEEEREE3EEEEE List two common concepts to remember when coaching end of game situations. Basketball. Implement the above in c++, you will write a test program named create_and_test_hash.cc . Your programs should run from the terminal like so:./create_and_test_hash should be "quadratic" for quadratic probing, "linear" for linear probing, and "double" for double hashing. For example, you can write on the terminal:./create_and_test_hash words.txt query_words.txt quadratic You can use the provided makefile in order to compile and test your code. Resources have been posted on how to use makefiles. For double hashing, the format will be slightly different, namely as follows:./create_and_test_hash words.txt query_words.txt double The R value should be used in your implementation of the double hashing technique discussed in class and described in the textbook: hash2 (x) = R (x mod R). Q1. Part 1 (15 points) Modify the code provided, for quadratic and linear probing and test create_and_test_hash. Do NOT write any functionality inside the main() function within create_and_test_hash.cc. Write all functionality inside the testWrapperFunction() within that file. We will be using our own main, directly calling testWrapperFunction().This wrapper function is passed all the command line arguments as you would normally have in a main. You will print the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 2 (20 points) Write code to implement double_hashing.h, and test using create_and_test_hash. This will be a variation on quadratic probing. The difference will lie in the function FindPos(), that has to now provide probes using a different strategy. As the second hash function, use the one discussed in class and found in the textbook hash2 (x) = R (x mod R). We will test your code with our own R values. Further, please specify which R values you used for testing your program inside your README. Remember to NOT have any functionality inside the main() of create_and_test_hash.ccYou will print the current R value, the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 3 (35 points) Now you are ready to implement a spell checker by using a linear or quadratic or double hashing algorithm. Given a document, your program should output all of the correctly spelled words, labeled as such, and all of the misspelled words. For each misspelled word you should provide a list of candidate corrections from the dictionary, that can be formed by applying one of the following rules to the misspelled word: a) Adding one character in any possible position b) Removing one character from the word c) Swapping adjacent characters in the word Your program should run as follows: ./spell_check You will be provided with a small document named document1_short.txt, document_1.txt, and a dictionary file with approximately 100k words named wordsEN.txt. As an example, your spell checker should correct the following mistakes. comlete -> complete (case a) deciasion -> decision (case b) lwa -> law (case c)Correct any word that does not exist in the dictionary file provided, (even if it is correct in the English language). Some hints: 1. Note that the dictionary we provide is a subset of the actual English dictionary, as long as your spell check is logical you will get the grade. For instance, the letter "i" is not in the dictionary and the correction could be "in", "if" or even "hi". This is an acceptable output. 2. Also, if "Editors" is corrected to "editors" that is ok. (case B, remove character) 3. We suggest all punctuation at the beginning and end be removed and for all words convert the letters to lower case (for e.g. Hello! is replaced with hello, before the spell checking itself).Do NOT write any functionality inside the main() function within spell_check.cc. Write all functionality inside the testSpellingWrapper() within that file. We will be using our own main, directly calling testSpellingWrapper(). This wrapper function is passed all the command line arguments as you would normally have in a main Order the organs of the digestive system from the start to finish. anus = large intestine = mouth = esophagus = rectum = small intestine = stomach What is the area of the polygon below? NEED HELP QUICK PLEASE HELP help me pls very much appreciated luvs What expression is equivalent to 3/5 1. Most of the land occupied by theOttomans had been part of thea.Mughalb.Safavidc.Byzantined.Western Roman Help please!Write this in French using imparfait and pass compos:One time, I went to the doctor because I wasn't feeling well. I had felt dizzy and nauseous. I had a headache too. It turned out I was only dehydrated and needed to drink more water. My doctor only prescribed me some pills, and I went home.Please do not use any translation sites! They are not always accurate. Know your French...Merci! Which of the following has zero width and an infinite length? A. a point B. a line segment C. a line D. a plane 2. What field of science are homologousstructures used as evidence for?erO photosynthesisO evolutionO cell theoryO big bang Find c.Round to the nearest tenth:8 cm8255bc = [? ]cmLaw of Sines:sin Asin Csin BbPlease help asap 20. Many of California earthquakes are caused by?1.two plates sliding past one another.2.an oceanic plate and a continental plate colliding.3.two continental plates colliding.4.none of the above A student with a mass of 52 kg, starts from rest and travels down a 2 m slide. What isthe KE of the student at the bottom of the slide? The triangle and the trapezoid share a 15 inch base and height of 10 inches. The area of the trapezoid is less than twice the area of the triangle. Find the value of x. Explain your reasoning. Can the area of the trapezoid be exactly twice the area of the triangle? Explain your reasoning.