answersLogoWhite

0

Dna Replicase Enzymes are primarily responsible for this - not by any stretch of Imagination alone.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How is information from the DNA passed on from one cell to another?

The DNA makes a copy of itself to be passed to the new cells.


What makes a copy of itself?

the only thing that can make a copy of itself is a cell.


What makes copy of itself?

the only thing that can make a copy of itself is a cell.


When the chromosome makes a copy of itself it is said to what?

duplicate or replicate


What is the name of the process by which DNA makes copy of itself?

asexual reproduction


What happens before cell division can happen?

the DNA makes a copy of itself


What do you call the process when DNA zips itself and makes a second copy?

replication


What small DNA strand makes a copy of itself?

A virus is a small strand of DNA or RNA that copies itself.


What happens before cell division can take place?

the DNA makes a copy of itself


What is Dna replication said to be?

Based on how it occurs, it is said to be 'semi-discontinuous' replication.


When argument are passed by value the function works with the original arguments in the calling program?

When a function is passed by value the calling function makes a copy of the passed argument and works on that copy. And that's the reason that any changes made in the argument value does gets reflected to the caller.


Why not sending arefrence to copy constructor will cause an infinite loop?

A copy constructor gets called any time an object needs to be copied. Unlike in some of the newer languages like Java, you can chose to pass objects either by reference or by value. When you pass by reference, only the address of the function is copied. However, if you pass by value, the whole object must be copied. In order to copy the object, the copy constructor will get called. If the copy constructor's parameter is not a reference, then the object will get passed by value. When the object gets passed by value, it needs to get copied so it will call the same copy constructor. Because the object is still being passed by value it'll call itself again to create a copy of itself. The copy constructor will continue to call itself until the stack overflows.