answersLogoWhite

0

No. Thread has nothing to do with cell division.

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Biology

When a eukaryotic cell is not undergoing mitosis the DNA and its associated proteins appear as a visible thread like mass called the?

chromatin


What are Examples of plants cells undergoing mitosis?

Well this question is hard. A cell that goes through mitosis would be cells like skin cells, and any other somatic cell. You can also be asking of any practical applications of mitosis. Healing is an example of mitosis, growing is an example of mitosis, even cancer is an example of mitosis.


In a human body give an example of a where mitosis may occur Give an example of where meiosis would occur?

Mitosis occurs in somatic cells to generate new cells for growth and repair throughout the body. For example, mitosis occurs in skin cells to replace old or damaged skin cells. Meiosis occurs in reproductive cells to produce gametes (sperm and eggs). For example, meiosis occurs in the testes to produce sperm cells in males and in the ovaries to produce egg cells in females.


Is mitosis occurs in both plants and animals?

Yes, mitosis occurs both in plants, as well as animals. Mitosis is the reproduction of an organism's cells. For example, when a woman who is pregnant waits for her child to be born, mitosis occurs. Same thing with plants. Hope that helped!


Is the end product of mitosis haploid or diploid?

Mitosis produces DIPLOID cells- remember in mitosis your INCREASING the number of CELLS but the chromosome number is the SAME as the parentso a parent that has a (DIPLOID number of 10)will produce at the end of mitosis will produce 2 children with a diploid number of (10)That is why Mitosis is CONSERVATIVE.So in actuality, 1 diploid cell will produce 2 diploid cells in mitosisThe above is only true if the starting cell is itself diploid. However there are plenty of instances, especially in plants, in which cells that are haploid (the ones that give rise to pollen and egg, and endosperm nuclei, for example) or multiploid (hexaploid wheat, for example) undergo mitosis, and the cells that are produced have the same ploidy as the starting cell. Always. As noted above, mitosis is conservative. However, you ought not assume that you started with a diploid cell.

Related Questions

What does Mitosis mean in Greek?

The word Mitosis means "thread" in Greek.


What does the word mitosis mean?

The Greek word Mitosis means thread


Mitosis comes from the Greek word mitos which means?

Mitos means thread.


What are non example for Mitosis?

This is an odd question. Anything that ISN'T mitosis is a NON-example. So, a sidewalk is not mitosis.


The term mitosis comes from the Greek word meaning thread explain why this word may be helpful in describing this process of nuclear division?

The term mitosis is derived from the Greek word "mitos," which means thread, because during mitosis, the chromosomes condense and form thread-like structures that are easy to visualize. This word is helpful in describing this process of nuclear division because it highlights the elongated and linear appearance of the chromosomes as they separate and move to opposite ends of the cell.


What stage of mitosis appears to have no nucleus instead highly coiled thread like objects that occur in pairs where the nucleus should be?

This stage of the Cell cycle is known as M-Phase - m for mitosis.


What is a cell splitting in two example of?

It is an example of mitosis. The opposite of which is meiosis.


What does and a thread of this belief is even shared by mean I don't know the meaning of the word thread here?

From the limited context; i would say that in this example, 'thread' means a small portion or part of. Thread of this belief would be synonymous with the smallest bit of this belief, for example.


When a eukaryotic cell is not undergoing mitosis the DNA and its associated proteins appear as a visible thread like mass called the?

chromatin


What is daemon thread in java?

Daemon thread is a kind of thread that does not prevent the JVM from exiting when the thread is still running while the program finishes. A good example of this is the garbage collection.


What is a non example of reproduction?

Mitosis. Mitosis ends with two complete cells. Meiosis ends with either four sperm cells or a single egg cell (and the other 3/4 of the material dies and is used as food by what is left). So growing new cells to repair tissue in the body is mitosis, not an example of meiosis.


Multithreading in java?

I am assuming that you want to know how to multithread in Java. 1) Write a class that implements Runnable. Put just the method run() in it. 2) Inside the run() method, put the code that you want your thread to run. 3) Instantiate the class (example: Runnable runnable = new MyRunnable();) 4) Make a new Thread (example: Thread thread = new Thread(runnable, <the name of your thread(optional)>); 5) Start the thread (example: thread.start();) 6) That's it! Your thread is now running. PS. Check the Java API for more information. Did that answer your question?