Concept:
BLAST is a sequence similarity search tool. It compares a query sequence with sequences present in a database and identifies regions of local similarity.
Step 1: Input query sequence.
The BLAST process starts when the user enters a query sequence. This may be a DNA sequence, RNA sequence, or protein sequence.
\[
\text{First step} = E
\]
Step 2: Create words from query sequence.
BLAST breaks the query sequence into short words. For protein BLAST, words of three residues are commonly considered.
\[
\text{Second step} = C
\]
Step 3: Calculate match scores.
The words are compared using a substitution matrix. The sum of match scores is calculated for matched words.
\[
\text{Third step} = A
\]
Step 4: Find database sequence and extend alignment.
BLAST finds the best matching words in database sequences and extends the alignment in both directions.
\[
\text{Fourth step} = B
\]
Step 5: Determine high scoring segment.
Finally, high scoring segment pairs above the threshold are identified.
\[
\text{Fifth step} = D
\]
Therefore, the correct sequence is:
\[
E, C, A, B, D
\]
\[
\therefore \text{Correct Answer is (C)}
\]