Morphological Analysis in NLP – HOT MCQs with Instant Answers
Explore how NLP systems analyze the structure of words, identify morphemes, and handle inflectional and derivational forms.
What is morphological analysis?
Morphological analysis is the process of analyzing the internal structure of words to identify their root (stem or lemma) and affixes (prefixes, suffixes, inflections, etc.). It helps NLP systems understand how words are formed, related, and varied grammatically (like tense, number, or case).
Example:For example, from the word “running”, a morphological analyzer extracts:
- Root: run
- Suffix: -ing (indicating progressive aspect)
A. To identify sentence boundaries
B. To break words into morphemes and analyze structure
C. To remove stop words
D. To assign part-of-speech tags
Answer: B. To break words into morphemes and analyze structure
Explanation: Morphological analysis splits words into morphemes (roots, prefixes, suffixes) to reveal structure and grammatical meaning. It supports higher-level NLP tasks like tagging and parsing.
A. Tokenization
B. Stemming
C. Lemmatization
D. Stopword removal
Answer: C. Lemmatization
Explanation: Lemmatization uses linguistic rules and dictionaries to map words to their correct lemma (“running” → “run”), unlike stemming, which just trims endings (“running” → “runn”).
A. POS tagger
B. Morphological parser
C. NER model
D. Syntactic parser
Answer: B. Morphological parser
Explanation: A morphological parser or segmenter identifies prefixes, roots, and suffixes within words — e.g., “unhappiness” → un + happy + ness.
A. Inflectional morphology
B. Derivational morphology
C. Compound morphology
D. Agglutinative morphology
Answer: A. Inflectional morphology
Explanation: Inflectional morphology modifies words to express tense, number, or gender (e.g., “run” → “running,” “cat” → “cats”) without changing their category or meaning.
A. Inflection
B. Derivation
C. Lemmatization
D. Compounding
Answer: B. Derivation
Explanation: Derivational morphology forms new words by adding affixes, often changing part of speech — e.g., “teach” → “teacher,” “happy” → “happiness.”
A. A word’s POS label
B. The smallest meaningful grammatical unit
C. A character-level token
D. A semantic embedding
Answer: B. The smallest meaningful grammatical unit
Explanation: Morphemes are the smallest meaning-bearing elements in language, such as roots (“book”), prefixes (“un-”), or suffixes (“-ed”).
A. Parsing → Tokenization → Generation
B. Segmentation → Labeling → Parsing → Generation
C. Lemmatization → POS tagging → Parsing
D. Tokenization → Normalization → Generation
Answer: B. Segmentation → Labeling → Parsing → Generation
Explanation: Morphological analysis first segments words into morphemes, labels their types, parses their structure, and finally generates valid word forms.
A. Sentiment analysis
B. POS tagging and machine translation
C. Stopword removal
D. Named Entity Recognition only
Answer: B. POS tagging and machine translation
Explanation: Morphological knowledge ensures accurate translation of inflected forms and helps disambiguate grammatical roles in POS tagging.
A. Statistical Morphology
B. Finite-State Morphology
C. Neural Morphology
D. Rule-based Lemmatization
Answer: B. Finite-State Morphology
Explanation: Finite-State Morphology uses FSTs to represent bidirectional mappings between surface and lexical forms, enabling efficient word analysis and generation.
A. Tokenize words
B. Predict sentence structure
C. Generate surface word forms from roots and features
D. Remove affixes
Answer: C. Generate surface word forms from roots and features
Explanation: Morphological generation converts a lemma and grammatical features (like tense or number) into an inflected surface form — e.g., run + past → “ran.”
No comments:
Post a Comment