answersLogoWhite

0

No. Thread has nothing to do with cell division.

User Avatar

Wiki User

15y ago

What else can I help you with?

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


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.


Mitosis comes from the Greek word mitos which means?

Mitos means thread.


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.


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.


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 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?