Top 10 HOT MCQs — Morphological Analysis & Generation using FST

Each question has a View answer button to reveal the correct choice and a short explanation.


Morphological analysis and generation using Finite-State Transducers (FST) form one of the most powerful and efficient rule-based methods in Natural Language Processing (NLP). FSTs help machines break words into their meaningful components, generate correct surface forms, and handle complex morphotactics and phonological rules with high accuracy. This post provides a clear, exam-focused explanation of how FSTs work in morphological processing, along with HOT MCQs, examples, and a detailed FAQ section. Whether you're preparing for NLP, AI, ML, UGC NET, GATE, or university-level linguistic exams, this guide will strengthen your understanding of FST-based morphology and help you master one of the foundational concepts in computational linguistics.


1. In an FST-based morphological analyzer, the input tape typically contains:

A. The lemma and POS
B. The surface word form
C. The root plus affixes separated by “+”
D. The semantic features

2. What is the main reason FSTs are efficient for morphological generation?

A. They operate with recursive rules
B. They encode allomorphy as probabilistic transitions
C. They perform lookup and rule-application in a single pass
D. They use neural embeddings for transitions

3. The two-level morphology approach (Koskenniemi) represents:

A. A mapping between lemma and POS tags
B. A mapping between surface and lexical levels
C. A mapping between syntax and semantics
D. A mapping between morphemes and orthographic rules

4. Which component handles orthographic rules like “drop-e + ing → dropping” in an FST model?

A. Lexicon transducer
B. Rule transducer
C. Path minimizer
D. Feature unifier

5. In morphological generation using FSTs, the direction of the transducer operation is:

A. From surface form → lexical form
B. From lexical form → surface form
C. Always bidirectional by default
D. Determined by the POS tagger

6. What ensures that an FST for morphology remains finite even with productive affixation?

A. Looping transitions for affixes
B. Morphotactic constraints
C. Recursive rule composition
D. Neural pruning

7. A key benefit of minimizing an FST for morphological analysis is:

A. It improves semantic accuracy
B. It reduces the number of paths and states
C. It allows handling non-concatenative morphology
D. It produces continuous embeddings

8. Which of the following is MOST suitable for representing both inflectional and derivational morphology in one model?

A. Deterministic automata
B. Weighted FSTs
C. Large neural language model
D. Rule-based taggers

9. In FST-based analysis, failing to match an input string to any lexical path indicates:

A. The word is ungrammatical
B. The FST is non-deterministic
C. The word is out-of-vocabulary (OOV)
D. The FST requires stemming

10. Which statement is TRUE about FST-based morphological analyzers in modern NLP pipelines?

A. They have been fully replaced by neural seq2seq models
B. They are still widely used in low-resource languages due to rule efficiency
C. They cannot handle phonological alternations
D. They cannot be used with POS taggers