Answer:
Five variations od BLAST are as following:-
- BLASTP
- BLASTX
- TBLASTX
- BLASTN
- TBLASTN
Explanation:
BLASTP - Searches a protein database with a protein sequence.
BLASTX - This program searches protein database using a translated nucleotide sequence.
TBLASTX - Searches DNA databases using a protein query.
BLASTN -Searches a nucleotide sequence against DNA database.
TBLASTN - Searches nucleotide sequence to a DNA database.
Answer:
False
Explanation:
vector is like a dynamic array that has a special ability to resize automatically when it required.
vector has several functions:
like, insert() to insert the element in the vector.
delete() for delete the one element at a time.
empty() is also the function used in the vector. It is used for checking the vector is empty or not.
it gives the Boolean value (TRUE or FALSE), if the vector is empty it gives the output TRUE if the vector is not empty it gives the output FALSE.
It is not used for empty or deletes all elements of the vector.
Therefore, the answer is False.