Which phase do the chromosomes line up in the middle

Answers

Answer 1

Answer:

metaphase

Explanation:

the cells chromosomes line themselves in the middle of the cell through a type of cellular tug of war.

Answer 2

Answer:

metaphase

Explanation:

During metaphase, the cell's chromosomes align themselves in the middle of the cell through a type of cellular "tug of war." The chromosomes, which have been replicated and remain joined at a central point called the centromere, are called sister chromatids.


Related Questions

The sun’s core is made of solid rock. True or false

Answers

Answer:

False

Explanation:

Heres what its made of:

The core is made of hot, dense plasma (ions and electrons), at a pressure estimated at 265 billion bar (3.84 trillion psi or 26.5 petapascals (PPa)) at the center. Due to fusion, the composition of the solar plasma drops from 68–70% hydrogen by mass at the outer core, to 34% hydrogen at the core/Sun center.

"Henry mixed salt and water together in a cup until he observed a clear solution. He measured the mass of the solution. Then he placed the cup outside for several sunny days during the summer. After a week, he observed that only solid salt remained in the cup and the mass had decreased. Henry concluded that a physical and chemical change occurred in this investigation."

Which statements correctly defend or dispute his conclusion?

A.)He is correct. Dissolving salt in water is a physical change, but evaporating the water is a chemical change. Formation of a solid is evidence that a chemical change occurred.

B.)He is correct. Evaporation is a physical change, but dissolving salt in water is a chemical change. The change in mass is evidence that a chemical change occurred.

C.)He is incorrect. Dissolving salt in water and evaporation of the water are both physical changes. The reappearance of salt is evidence that the change was reversible by a physical change, so it could not be a chemical change.

D.)He is incorrect. Dissolving salt in water and evaporation of the water are both chemical changes. The reappearance of salt is evidence that the change was reversible by a chemical change, so it could not be a physical change.

Answers

Answer:

C.)He is incorrect. Dissolving salt in water and evaporation of the water are both physical changes. The reappearance of salt is evidence that the change was reversible by a physical change, so it could not be a chemical change.

Explanation:

From the analogy of the problem presented, we can see that Henry is grossly incorrect. His conclusion from the process of the experiment he carried out is completely wrong.

Physical changes are changes that alters the physical properties of matter particularly the form and state.

Chemical changes leads to the formation of a new kind of matter.

 We can see that since the salt was obtained back after evaporation, no change has occurred to it.

Therefore, evaporation in itself is a physical change process.

Answer:

c on ed

Explanation:

____ power is generated from the heat released when uranium atoms split in a process known as fission.

Answers

This is definitely nuclear power , I hope it helps u :)
Other Questions
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 Can someone help please 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? 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? 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. i need help pls! Which one do i put in front before the french sentences? Do i put le or la? Help me pls thank u