What is responsible for Earth's movement toward the Sun?

A. earths forward motion

B. suns forward motion

C. force of gravity

D. expansion of the universe

Answers

Answer 1

Answer:

C. Force of gravity would be my thought.

Answer 2

Answer:

force of gravity

Explanation:

did it on a p e x


Related Questions

g Most of the pulling force driving plate motion is produced at ________. Fill in the blank with one of the following: convergent boundary || divergent boundary || transform boundary || subduction zone || passive margin || continent-continent collision || hotspot || plate interior || continental plate interior || oceanic plate interior

Answers

The correct answer is "subduction zone."

Most of the pulling force driving plate motion is produced at the subduction zone.

In Geology terms, the subduction zone is the part of big collisions of tectonic plates on planet Earth. These plates are large pieces of crust that move very slow  -we are talking millions of years- and they move across the surface.

So in this subduction zone, the plates move and collide. One plate bends and slides under the other plate, creating the collision. This collision is so hard that is what causes earthquakes. One example is the volcanic zone called the Ring of Fire.  

What is the best Book/Website to get a lot of information of animals?

Answers

Answer:

national geographic, animal fact guide, DK find out, Ducksters

Explanation:

..

There are a few like World Wildlife Fund, National Geographic, and Australia's ABC Splash but i think National Geographiv would be your best bet since it is also a reliable source.

Other Questions
The granola Summer buys used to cost $6.00 per pound, but it has been marked up 15%. Suppose Summer buys 3.5 pounds of granola. How much more does it cost at the new price than at the old price? Please answer this correctly without making mistakes I want ace expert and genius people to answer this correctly correctly without making mistakes Russians live on the North European Plain for all of the following reasons, EXCEPT.A. the North European Plain provides more temperate climates (incorrect)B. the North European Plain provides navigable riversC. the North European Plain provides more tundra goods for loggingD. the North European Plain provides fertile soils Identify the difference between internal conflict and interpersonal conflict. Round the number above to the place where the 3 is located. 5,684.937 8. Agreement and disagreement among economists Suppose that Tim, an economist from a business school in Georgia, and Alyssa, an economist from a university in Massachusetts, are arguing over government bailouts. The following dialogue shows an excerpt from their debate: Alyssa: Thanks to recent financial crises, the concept of bailouts is a hot topic for debate among everyone these days. Tim: Indeed, it's gotten crazy! A government bailout of severely distressed financial firms is unnecessary because free markets will properly price assets. Alyssa: I don't know about that. Without a bailout of severely distressed financial firms, the economy will experience a deep recession. The disagreement between these economists is most likely due to . 6 Which expression below has a coefficient of 3?A. 5x + 9B. 2x-3C. 28? + 3x 6gx+4( IS IT A. B. C. or D.?) The perimeter of a rectangle is 48 cm. The length is 3 times as long as the width.What is the width of the rectangle?A. 4cm B.6cm C.8cm D.12.cm which diagram would it be? 4.1) My father leaves his office at 5.30.By 5.35.....................his office.4.2) They're playing football at 11 o'clock. At 11.30..................football.4.3) My little sister goes to bed at 9.30.By 10 o'clock,..............to bed. Can someone help please 10 points if you answer this Between the trade routes of which two seas was Byzantium located? Why is most of the Earths fresh water unavailable? PLZZZZZ HELP In what way did Southern states try to gain more power during the Constitutional Convention? They wanted export taxes on northern goods to increase the balance of trade. O They tried to have slaves counted in their population to gain more votes in Congress. They argued that the Southern states needed more economic support than Northern states. O They argued that their economic power should give them more representation in Congress Natalie bought a 3 - pack of erasers for $1.47. How much did each eraser cost? I am doing a power point about elbert r. robinson so can you explain about elbert r robinson? , please How was early Earth's atmosphere different from today's atmosphere? Pls place the words in the right place I'll give brainless and the points! You've created a new programming language, and now you've decided to add hashmap support to it. Actually you are quite disappointed that in common programming languages it's impossible to add a number to all hashmap keys, or all its values. So you've decided to take matters into your own hands and implement your own hashmap in your new language that has the following operations:insert x y - insert an object with key x and value y.get x - return the value of an object with key x.addToKey x - add x to all keys in map.addToValue y - add y to all values in map.To test out your new hashmap, you have a list of queries in the form of two arrays: queryTypes contains the names of the methods to be called (eg: insert, get, etc), and queries contains the arguments for those methods (the x and y values).Your task is to implement this hashmap, apply the given queries, and to find the sum of all the results for get operations.ExampleFor queryType = ["insert", "insert", "addToValue", "addToKey", "get"] and query = [[1, 2], [2, 3], [2], [1], [3]], the output should be hashMap(queryType, query) = 5.The hashmap looks like this after each query:1 query: {1: 2}2 query: {1: 2, 2: 3}3 query: {1: 4, 2: 5}4 query: {2: 4, 3: 5}5 query: answer is 5The result of the last get query for 3 is 5 in the resulting hashmap.For queryType = ["insert", "addToValue", "get", "insert", "addToKey", "addToValue", "get"] and query = [[1, 2], [2], [1], [2, 3], [1], [-1], [3]], the output should be hashMap(queryType, query) = 6.The hashmap looks like this after each query:1 query: {1: 2}2 query: {1: 4}3 query: answer is 44 query: {1: 4, 2: 3}5 query: {2: 4, 3: 3}6 query: {2: 3, 3: 2}7 query: answer is 2The sum of the results for all the get queries is equal to 4 + 2 = 6.Input/Output[execution time limit] 4 seconds (py3)[input] array.string queryTypeArray of query types. It is guaranteed that each queryType[i] is either "addToKey", "addToValue", "get", or "insert".Guaranteed constraints:1 queryType.length 105.[input] array.array.integer queryArray of queries, where each query is represented either by two numbers for insert query or by one number for other queries. It is guaranteed that during all queries all keys and values are in the range [-109, 109].Guaranteed constraints:query.length = queryType.length,1 query[i].length 2.[output] integer64The sum of the results for all get queries.[Python3] Syntax Tips# Prints help message to the console# Returns a stringdef helloWorld(name):print("This prints to the console when you Run Tests")return "Hello, " + name