Which is a secondary source about the Civil War?

A. Gettysburg Address

B. movie about Gettysburg

C. Union soldiers' personal letters ​

Answers

Answer 1

Answer:

sjsjjj

Explanation:

jjjjnnhwhwjwjsj

Answer 2

Answer:

B

Explanation:

Just cause


Related Questions

Is there more than one central idea of the article? How do you know?

A
Yes; the article covers both the details of the Compromise of 1877 and how it would affect the future.
B
Yes; the article covers both the significance of Hayes' presidency and the culture of the South in the 1870s.
C
No; the article focuses only on explaining the causes of the Compromise of 1877.
D
No; the article focuses only on explaining what happened during the Compromise of 1877.

Answers

Answer:

srry but i need to see the artcle to answer this

Explanation:

Mark and Amanda conducted this experiment with two rocks that had the same color, luster, and hardness, but different color streaks. What can you conclude about these two rocks?

Answers

Answer:

We can conclude that when rocks have streaks of different colors, the colors of the rocks are the same.

Explanation:

The colors of the rocks are inversely proportional to the streaks of colres they have. If two rocks have streaks of different colors it means that they will have equal colors. Likewise, if two rocks have streaks of different colors, it means that they will have the same colors. This is because the colors of the rocks depend exclusively on the absorption of the wavelengths that the minerals in the composition of the rocks may or may not absorb.

Answer:

If two rocks have streaks of different colors it means that they will have equal colors. This is because the colors of the rocks depend exclusively on the absorption of the wavelengths that the minerals in the composition of the rocks may or may not absorb.

Explanation:

help!!!!!!

Because they were an island, which limited their resources, Japan used their military to do what?

a. Destroy enemies.
b. Conquer lands for resources.
c. Protect themselves against invasion.

Answers

Answer:

B, they need as much as they can get.

Which action does the "rule of law" not allow?
O An American citizen leaves the country but later returns and votes for president
O A business owner illegally dumps chemicals in a river but the police ignore it.
O A person runs to become president, loses, and then runs again 4 years later.
O Apresident of the United States is forced to leave power after a certain time.

Answers

I believe the answer is B. The police are legally required to enforce any state or federal law. The rest of the given options are totally legal.

how many countries in the world ​

Answers

Answer:

69

Explanation:

420 said so.

Answer:

there are 195 countries

In which direction would you be heading if you traveled from the North Pole along any line of longitude

Answers

You would travel south

Based on this map, identify a political impact of Napoleon's conquests in Europe.

Answers

The correct answer to this open question is the following.

Unfortunately, you did not attach the map. Without the map, we do not what you are talking about.

However, although you forgot to include it, we can help you comment on the following.

As we can see on any map of this time, Emperor Napoleon conquered many nations and territories to increase the power of his French Empire.

The political impact that Emperor Napoleon had on European history was that he spread the philosophical ideas of the Enlightenment and the French Revolution throughout Europe. These ideas were ingrained in some leaders a people of these nations who thought about the importance of the revolutions. The consequences of his invasions impacted the Americas too. For instance, when Napoleon invaded Spain, this weekend the Spanish monarchy influence in New Spain and facilitated the Independence movement in México.

Other Questions
Describe the differences between the Arctic and Antarctica Twice the difference of 1 and a number. select all relations that are functions from the choices below. What is the slope of the line (-4,-1) (1,4) An element has five isotopes. Calculate the atomic mass of this element using the information below. Show all your work. Using the periodic table, identify the element this is likely to be and explain your choice. (18 pts)A) Isotope 1 mass: 64 amu; percent abundance: 48.89%B) Isotope 2 mass: 66 amu; percent abundance: 27.81%C) Isotope 3 mass: 67 amu; percent abundance: 4.11%D) Isotope 4 mass: 68 amu; percent abundance: 18.57%E) Isotope 5 mass: 70 amu; percent abundance: 0.62% SOMEONE HELP MEEE! I WILL GIVE BRAINILEST! PLSSSSSS T-T THIS IS DUE TODAYYYYYY!How do you think Confuciuss experience working in government affected his thinking and philosophy? 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 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 Between the trade routes of which two seas was Byzantium located? Why is most of the Earths fresh water unavailable? Natalie bought a 3 - pack of erasers for $1.47. How much did each eraser cost? How was early Earth's atmosphere different from today's atmosphere? 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 Which action does the "rule of law" not allow?O An American citizen leaves the country but later returns and votes for presidentO A business owner illegally dumps chemicals in a river but the police ignore it.O A person runs to become president, loses, and then runs again 4 years later.O Apresident of the United States is forced to leave power after a certain time. TRUE or FALSE? The Spanish-American War lasted for 5 years. What is a counterclaim in an argumentative text? g n this program, you will prompt the user for three numbers. You need to check and make sure that all numbers are equal to or greater than 0 (can use an if or if/else statement for this). You will then multiply the last two digits together, and add the result to the first number. The program should then start over, once again asking for another three numbers. This program should loop indefinitely in this way. If the user enters a number lower than 0, remind the user that they need to enter a number greater than or equal to 0 and loop the program again.