answersLogoWhite

0

What name of d n a?

User Avatar

Anonymous

15y ago
Updated: 8/18/2019

Deoxyribonucleic acid.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the name for N?

salt.:D


How do you make a program in C using do-while loop?

do statement; while (condition);ordo { statements } while (condition);


What is a girls last name that starts with n and ends with d?

Ned


How do you spell the name Kendra?

K-E-N-D-R-A


How do you spell Taylor lodnerd last name?

L-O-D-N-E-R-D (o_O)


Write a shell script to accept file name from the user and confirm whether it is a file a directory?

echo -n "Name: "read nif [ -f $n ]; thenecho $n is a fileelseif [ -d $n ]; thenecho $n is a directoryfi


What is the degrees for a regular polygon?

If you name the degree of the angle d, then the exterior angle is 180 - d. The exterior angles have to add up to 360, a full circle to get back to where you started. So if there are nsides and n angles,n(180-d) = 360Solving for d, you get180 n - nd = 360-nd = 360 - 180n-d = 360/n - 180and thend = 180 - 360/n


WHAT Irish name begins with a d?

Declan. In the Irish language it is Deaglán.


A faction in witch the numbers is greater than or equal to the denominator?

Suppose the number is n/d. Then n/d >= d => n <= d2 if d < 0 or n >= d2 if d > 0.


How do you get the square of an integer in PHP?

printf ("square of %d is %d\n", $n, $n*$n);


L N G E D N A?

E N G L A N D


Write a program in C programming language to prepare the mark-list of six subjects using if-else statements?

#include<stdio.h> #include<conio.h> void main() { char name[100][100]; //array of strings int roll[100],English[100],maths[100],tamil[… clrscr(); printf("Enter the number of students"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("Enter the name of student no %d :",i); scanf("%s",name[i]); printf("Enter the roll number of student %s :",name[i]); scanf("%d",&roll[i]); printf("Enter the English mark of student %s :",name[i]); scanf("%d",&English[i]); printf("Enter the maths mark of student %s :",name[i]); scanf("%d",&tamil[i]); printf("Enter the science mark of student %s :",name[i]); scanf("%d",&science[i]); printf("Enter the maths mark of student %s :",name[i]); scanf("%d",&maths[i]); clrscr(); } for(i=1;i<=n;i++) { printf("\nName: %s \nRoll No: %d \n",name[i],roll[i]); printf("English :%d \nTamil:%d \nscience: %d \nmaths:%d",English[i],tamil[i],science[… } getch(); }