Bijaya Rajbhandari asked a question

Makar disclosed that he had killed the merchant because he realized his mistake and Aksionov's suffering and now he wanted to make Aksionov release from the prison.

1 Thanks
2 Answers
Shibu oli asked a question

In mitosis, the prophase is further understood by dividing it into the given sub-stages:

1.Leptotene :

In this stage the nucleus enlarges in size in the chromosome. The chromosomes appear thin, thread-like and single-stranded in this stage. They have swollen or beaded structures along their length and their ends appear converged towards one side of the nucleus called bouquet.

2.Zygotene:

In this stage, the identical chromosomes come together and form bivalent or homologous pairs. Further, ...

2 Thanks
2 Answers
Nikas Ghimire asked a question


#include<stdio.h>

#include<conio.h>

#include<string.h>


int main() {

int i, nextTerm;

int t1 = 2, t2 = 2;

nextTerm = t1+t2;


printf("%d, %d, ", t1, t2);

for (i = 3; i <= 10; ++i) {

printf("%d, ", nextTerm);

t1 = t2;

t2 = nextTerm;

nextTerm = t1 + t2;

}


return 0;

}


2 Thanks
2 Answers
Close Open App