Computer Science, asked by kavyadivyarg, 3 days ago

write an algorithm to combine M DNA samples to form new mutants if the DNA samples remaining after a few combinations less than M then all those remaining samples will be combined.

Answers

Answered by brijeshkumarroy7026
0

Abstract

The human genome holds an extraordinary trove of information about human development, physiology, medicine and evolution. Here we report the results of an international collaboration to produce and make freely available a draft sequence of the human genome. We also present an initial analysis of the data, describing some of the insights that can be gleaned from the sequence.

Answered by meenakshigupta02sl
0

Answer:

Program to print DNA sequence

Let the value of n i.e, the number of lobes be 8.

Following is the print of the double-helix structure of Deoxyribonucleic acid(DNA).

Input: n = 8

Output:

  AT

 T--A

A----T

T------A

T------A

G----C

 T--A

  GC

  CG

 C--G

A----T

A------T

T------A

A----T

 A--T

  GC

  AT

 C--G

T----A

C------G

C------G

T----A

 G--C

  AT

  AT

 T--A

A----T

T------A

T------A

G----C

 T--A

  GC

Explanation:

DNA is mainly composed of four hydrocarbons. H. Cytosine [C], guanine [G], adenine [A], thymine [T].

DNA bases pair  

 T and A

C and G are combined to form a unit called a base pair.

#SPJ3

Similar questions