answersLogoWhite

0

the repeating sequences is 13-17 bases

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Natural Sciences

How is STR data used in a DNA Paternity Test?

In a DNA paternity test, Short Tandem Repeat (STR) data is used by comparing the number of repeats of specific DNA sequences between the alleged father and the child. A paternity match is determined by analyzing the similarity or differences in the STR patterns between the two individuals. The more similar the STR patterns, the higher the likelihood of paternity.


What are telomeres made of?

Telomeres are made of repetitive DNA sequences and associated proteins. The DNA part typically consists of a repeating sequence like TTAGGG in vertebrates. These structures cap the ends of chromosomes, protecting them from degradation and maintaining chromosomal stability.


How many repeating units are in a monomer?

there are not repeating units in a monomer.


Which DNA fingerprinting technique examines the length variation of DNA repeat sequences in human DNA?

The DNA fingerprinting technique that examines the length variation of DNA repeat sequences in human DNA is called Short Tandem Repeat (STR) analysis. STRs are short sequences of DNA that are repeated at specific locations in the genome, and the number of repeats can vary among individuals. This variability is used in forensic science, paternity testing, and genetic studies to create unique DNA profiles. By analyzing multiple STR loci, a highly discriminative DNA fingerprint can be generated.


4. An extremely long molecule formed from numerous smaller molecules is called?

Polymers; often one-dimensional and predictable/repeating sequences of atoms along the polymer.

Related Questions

How is STR data used in a DNA Paternity Test?

In a DNA paternity test, Short Tandem Repeat (STR) data is used by comparing the number of repeats of specific DNA sequences between the alleged father and the child. A paternity match is determined by analyzing the similarity or differences in the STR patterns between the two individuals. The more similar the STR patterns, the higher the likelihood of paternity.


What are telomeres made of?

Telomeres are made of repetitive DNA sequences and associated proteins. The DNA part typically consists of a repeating sequence like TTAGGG in vertebrates. These structures cap the ends of chromosomes, protecting them from degradation and maintaining chromosomal stability.


What are triple consonants?

Triple consonants are sequences of three consonant sounds occurring together in a word. These sequences can be found in various languages and typically create a more complex or challenging pronunciation for speakers. Examples include "str" in "street" or "nth" in "tenth."


Is decision points consists of logical operators?

no its repeating loops


How many repeating units are in a monomer?

there are not repeating units in a monomer.


To display string in a title case in c?

#include<stdio.h> #include<conio.h> #include<string.h> int main() { int tmp,i; char str[30]; printf("Enter any string: "); gets(str); for(i=0; str[i]!='\0'; i++) { if(str[i-1]==' ' i==0) { if(str[i]>='a' && str[i]<='z') str[i]=str[i]-32; else if(str[i]>='A' && str[i]<='Z') str[i]=str[i]+32; } printf("%c",str[i]); } getch(); return 0;}


Which DNA fingerprinting technique examines the length variation of DNA repeat sequences in human DNA?

The DNA fingerprinting technique that examines the length variation of DNA repeat sequences in human DNA is called Short Tandem Repeat (STR) analysis. STRs are short sequences of DNA that are repeated at specific locations in the genome, and the number of repeats can vary among individuals. This variability is used in forensic science, paternity testing, and genetic studies to create unique DNA profiles. By analyzing multiple STR loci, a highly discriminative DNA fingerprint can be generated.


A c program which will remove all the spaces from a given string?

RemoveSpaces (char *str) { char *new = str; while (*str != '\0') { if (*str != ' ') *(new++) = *str; str++; } *new = '\0'; }


How do you write a C program to input a string of lowercase alphabets and convert it to uppercase using a loop?

void to_uppercase (char* str) { if (str == 0) return; while (*str != '\0') { if (*str>='a' && *str<='z') *str-=32; ++str; } }


write aprogramme to display vowels in c?

Here's a simple C program to display vowels from a given string: #include <stdio.h> int main() { char str[100]; printf("Enter a string: "); fgets(str, sizeof(str), stdin); printf("Vowels in the string: "); for (int i = 0; str[i] != '\0'; i++) { if (str[i] == 'a' || str[i] == 'e' || str[i] == 'i' || str[i] == 'o' || str[i] == 'u' || str[i] == 'A' || str[i] == 'E' || str[i] == 'I' || str[i] == 'O' || str[i] == 'U') { printf("%c ", str[i]); } } return 0; } This program prompts the user for a string, then iterates over each character to check if it's a vowel, and displays the vowels found.


How do you toggle case of string in c code. Example is TogGle will turn into tOGgLE?

#include<stdio.h> int main() { char str[100]; int i; printf("Please enter a string: "); // gets(str); // fgets is a better option over gets to read multiword string . fgets(str, 100, stdin); // Following can be added for extra precaution for '\n' character // if(str[length(str)-1] == '\n') str[strlen(str)-1]=NULL; for(i=0;str[i]!=NULL;i++) { if(str[i]>='A'&&str[i]<='Z') str[i]+=32; else if(str[i]>='a'&&str[i]<='z') str[i]-=32; } printf("String in toggle case is: %s",str); return 0; }


A repeating segment of time that consists of steady pulses and a set pattern of accents is called a?

Rhythm