Question 25
The following pseudocode is executed using the "Words" dataset.
D = { }while (Table 1 has more rows) { Read the first row X in Table 1 D[X.Seq_No] = X.Word Move row X to Table 2}
i = 0a = 0, b = 0, c = 0, d = 0aList = [ ], bList = [ ], cList = [ ], dList = [ ]while (i < length(keys(D)) - 1) { if (first letter of word D[i] is a vowel) { if (first letter of word D[i +1] is a vowel) { a = a + 1 aList = aList ++ [D[i]] } else { b = b + 1 bList = bList ++ [D[i]] } } else { if (first letter of word D[i +1] is a vowel) { c = c + 1 cList = cList ++ [D[i]] } else { d = d + 1 dList = dList ++ [D[i]] } } i = i + 1}Study the pseudocode given above and answer the subquestions:
TRUE
FALSE