🚨 Quiz Instructions:
Attempt all questions first.
✔️ Click SUBMIT at the end to unlock VIEW ANSWER buttons.
Quiz Mode:

Top 20 Named Entity Recognition (NER) MCQs with Answers

What is Named Entity Recognition (NER) in NLP?

Named Entity Recognition (NER) is a core task in Natural Language Processing (NLP) that identifies and classifies important entities in text into predefined categories such as Person, Location, Organization, Date, Time, and Money. It helps machines understand real-world objects mentioned in unstructured text data.

For example, in the sentence "Elon Musk founded SpaceX in 2002", NER identifies:

  • Elon Musk → Person
  • SpaceX → Organization
  • 2002 → Date

Why is Named Entity Recognition Important?

  • Improves information extraction from text
  • Used in chatbots and virtual assistants
  • Enhances search engines and recommendation systems
  • Supports resume parsing and document analysis
  • Plays a key role in AI and data science applications

NER MCQs for Practice

Below are 20 carefully selected Named Entity Recognition MCQs with answers and explanations to help you prepare for exams, interviews, and competitive tests in NLP, Machine Learning, and Data Science.

1.
What is the primary goal of Named Entity Recognition (NER)?






Correct Answer: B

Explanation:

NER extracts entities such as names, locations, organizations, and dates from text and classifies them into predefined categories.

2.
Which of the following is NOT a typical NER entity category?






Correct Answer: C

Explanation:

NER identifies real-world entities, not grammatical categories like verbs.

3.
In the sentence “Apple released the new iPhone in California”, what is “Apple”?






Correct Answer: B

Explanation:

“Apple” refers to a company (organization) rather than a fruit in this context.

4.
Which tagging format is commonly used in NER?






Correct Answer: B

Explanation:

BIO tagging marks the beginning, inside, and outside of named entities.

5.
What does the “B” in BIO tagging represent?






Correct Answer: B

Explanation:

“B” indicates the beginning of a named entity.

6.
Which of the following is an example of BIO tagging?






Correct Answer: A

Explanation:

BIO tagging labels tokens based on their position within entities.

7.
Which algorithm is commonly used in traditional NER systems?






Correct Answer: B

Explanation:

CRFs are widely used for sequence labeling tasks like NER.

8.
Why are CRFs preferred over HMMs in NER?






Correct Answer: C

Explanation:

CRFs allow flexible feature engineering without strong independence assumptions.

9.
Which modern model achieves state-of-the-art performance in NER?






Correct Answer: C

Explanation:

Transformers like BERT capture contextual meaning effectively for NER.

10.
What is the role of tokenization in NER?






Correct Answer: B

Explanation:

Tokenization breaks text into smaller units like words or subwords, which are essential for NER processing.

11.
Which metric is commonly used to evaluate NER models?






Correct Answer: C

Explanation:

F1-score balances precision and recall, making it the most suitable metric for NER evaluation.

12.
What challenge does NER face with ambiguous words like “Amazon”?






Correct Answer: B

Explanation:

Polysemy refers to words having multiple meanings depending on context, which is a major challenge in NER.

13.
Which dataset is widely used for NER benchmarking?






Correct Answer: C

Explanation:

CoNLL-2003 is a standard dataset used for evaluating NER systems.

14.
In BIO tagging, what does “O” represent?






Correct Answer: B

Explanation:

“O” indicates that the token does not belong to any named entity.

15.
Which is a limitation of rule-based NER systems?






Correct Answer: B

Explanation:

Rule-based systems require manual updates and do not scale well to new domains.

16.
What is entity linking in NER?






Correct Answer: B

Explanation:

Entity linking maps recognized entities to structured databases like Wikipedia or knowledge graphs.

17.
Which feature is important in traditional NER?






Correct Answer: B

Explanation:

Features like capitalization and word patterns are strong indicators of named entities.

18.
What issue arises when multiple words form a single entity like “New York City”?






Correct Answer: B

Explanation:

NER systems must correctly identify and group multiple tokens into a single entity.

19.
Which technique improves NER performance in deep learning models?






Correct Answer: B

Explanation:

Pretrained models like BERT capture deep contextual representations, significantly improving NER performance.

20.
Which is a real-world application of NER?






Correct Answer: C

Explanation:

NER is widely used in resume parsing to extract names, skills, organizations, and other structured information.