Question 1
Consider subword tokenization methods such as Byte Pair Encoding (BPE) and WordPiece as employed in transformer-based language modeling pipelines. Which of the following statements correctly describes their fundamental properties?
They always split words at true morpheme boundaries (the smallest units of meaning, e.g., “un-” + “break” + “able”).
They learn merge rules from corpus statistics (frequency/likelihood), not token semantics
They eliminate (Out Of Vocabulary) OOV by ensuring every word is a single token
They generalize perfectly to out-of-domain text without increasing sequence length.
