Why do you GET in a CAR but you get ON A BUS

Answers

Answer 1

Answer:

what are you talking about need to he more specific

Answer 2
You sit in a car. You immediately get into your seat. However you get onto a bus because you have to walk onto the bus and then to your seat. Similarly to why you get onto a plane.

Related Questions

Can someone help be my friend

Answers

Answer:

1) claim. 2) reasons/evidence. 3) counterargument. 4) i dont know this one

Explanation:

Match the definition to the term

1. a change in the form of a word
2.verb form used for factual statements
3.uninflected verb form
4.positive statement
5.unacceptable usage

inflection,affirmative,infinitive, indicative, double negative

Answers

Answer:

1) inflection

2) indicative

3) infinitive

4) affirmative

5) double negative

Correct the following sentences.
1. the dog was chasing a rabbit
2. Can i please have one more chance to win the game
3. Jane run to the store this morning.
4. Mr. owen is our principal.
5. Sometimes I like to ride my motorcycle whe the sun is shined.

Answers

Answer:

1. The dog was chasing a rabbit.

2. Can I please have one more chance to win the game.

3. Jane ran to the store this morning.

Explanation:

4. Mr. Owen is our principal.

5. I like to ride my motorcycle when the sun is shining.

Answer:

you dog water at the game kid get good

Explanation:


If it correct write correct if it wrong correct the answer now

Answers

Answer:

i would say that is correct

Explanation:

How are Mr. Hyde and Dr. Jekyll similar to each other??

Answers

Answer:

90% of people marry there 7th grade love. since u have read this, u will be told good news tonight. if u don't pass this on nine comments your worst week starts now this isn't fake. apparently if u copy and paste this on ten comments in the next ten minutes you will have the best day of your life tomorrow. you will either get kissed or asked out in the next 53 minutes someone will say i love you

Explanation:

i dont understand srry

2 . Select the correct text in the passage. Which sentence best gets across the author's message in the story? A True Victory Kelso and his best friend, Adiel, had spent weeks building their go-cart for the annual Wolf Club go-cart race. Then, at the last minute, another team's go-cart broke down. Adiel and Kelso decided to let that team use their go-cart. But now they were regretting their decision. It was painful watching the race from the sidelines. When the first cart crossed the line, Adiel and Kelso couldn't helping wondering how it would have felt if they had won. Within seconds, other carts raced by. Instead of feeling glum, Kelso began to laugh. He delighted in the breeze that blew through his hair as the go-karts rushed past. Adiel noticed a genuine smile spread wide across Kelso's face. Adiel realized that this sense of happiness was also surging throughout his body, even though he had not raced. "You did a really nice thing today," whispered a nearby Wolf Club leader. "Thanks," said Adiel. "I guess I won't ever know if I could've won the race." "Well winning isn't one of the Wolf Club mottos," said the leader. "But we do believe that we should promise to do our best and do something good for somebody every day. I'd say you proved yourself today as one of the worthiest people here to be called a Wolf Cub." Adiel's mother soon appeared. "And I'm more proud of you now than I ever could have been if you had come in first," she said.​

Answers

Answer:

Its the option that starts with "But"

Explanation:

I got 5/5 on mine so I know is right

Answer:

3. "But we do believe that we should promise to do our best and do something good for somebody every day.

Explanation:

I got the answer right on edmentum

Other Questions
solve 3(2x-5)-2x=3(X+7) How are imperialized people viewed by the writer? If the toothpaste market is monopolistically competitive, product differentiation would not take the form of: production of many varieties of toothpaste, including those with whitening agents. quality differences among the various brands. setting the price of the product well below the price charged by the rivals. differentiation in the locations where certain toothpastes are available. Given the following perfect square trinomial, fill in the missing term. (2 points)4x^2+16x+____ qual o resultado dessa conta 28+X=50? Please please answer I really need help calcular el nmero de lados de aquel poligono cuyo nmero de diagonales. 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 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? Read each of the sentences below about what you do after school. Then use avocabulary expression to write a second sentence that has the same meaning.16. Je voyage en autobus.17. Je retourne chez moi.18. Je mets les livres sur mon bureau et les vtements dans le placard.19. Je joue avec mon petit frre et je lui prpare quelque chose manger.20. Je fais des problmes de maths. Consider the net of a prism below. Describe the prism that the net models. How can I use coordinates to find distances determine perimeter and geometric shapes The Cold War was a conflict between __________.A.Europe and RussiaB.China and the Soviet UnionC.the United States and EuropeD.the United States and the Soviet UnionFIRST PERSON TO ANSWER (with no links) GETS BRAINLIEST!! Please help me with this homework squares and rectangles both have four angles that measure 45 each true or false Landon has a points card for a movie theater. He receives 70 rewards points just for signing up. He earns 5.5 points for each visit to the movie theater. He needs 125 points for a free movie ticket. How many visits must Landon make to earn a free movie ticket? According to the law of demand, as prices fall, ceteris paribusquantity demanded decreases.demand increases.quantity demanded increases.demand decreases A computer and printer cost $1128. The cost of the computer is three times the cost of the printer. Find the cost of each item. (Also have a great day :D) What term is used by chemists to quantitatively describe a solution in which a relatively small amount of solute is dissolved? this classroom is very quite change it into exclamatory sentence