Computer Science, asked by tannishadeb, 8 months ago

6) What should be the correct sequence of statements to find the total number of nouns, verbs, adjectives 5 points
and pronouns in the "Paragraph Words" dataset? It is a multiple Select Question (MSQ).
A. If part of speech is "Noun" then increment Ncount
B. Arrange all cards in a single pile called Pile 1
C. Read the top card in Pile 1
D. If part of speech is "Verb" then increment Vcount
E. If Pile 1 is empty then stop the iteration
F. If part of speech is "Adjective" then increment Acount
G. Move the current card to another pile called Pile 2 and repeat from step 3
H. Maintain four variables Ncount, Vcount, Acount, Pcount and initialize them to 0
1. If part of speech is "Pronoun" then increment Pcount
B, H, E, C, A, D, F, I, G
B, H, E, C, D, A, I, F, G
B, H, E, C, F, A, I, D, G
B, H, E, C, D, I, A, F, G
B,H, E, C, I, A, D, A G​

Answers

Answered by ridersr9
7

Answer:

The first four options are correct

Explanation:

The steps 1,2,3,4 and 9 (B,H,E,C and G) are fixed for all the options.

You can use options A,D,F,I in any way between step 4 and 5 sequence of statement doesnt matter for finding the total. But the last option B,H,E,C,I,A,D,A,G is incorrect because step A is repeated

and step F is missing.

Similar questions