Overseas Citizen of India (OCI) | NDA,CDS,UPSC,AFCAT,RRB,IBPS-PO,SSC,KVS,CLAT Exams Notes

⭐⭐⭐⭐ (4.3/5 from 154 reviews)

Overseas Citizen of India (OCI)

Q1: Who is eligible for an Overseas Citizen of India (OCI) card?

A: The Government of India grants OCI status to individuals who meet the following criteria:

  • A person who is now a citizen of another country but was a citizen of India at or after the commencement of the Constitution.
  • A person who was a citizen of another country but was eligible to become a citizen of India at the commencement of the Constitution.
  • A person who is a citizen of another country but belonged to a territory that became part of India.
  • A child, grandchild, or great-grandchild of the above such citizens.

Q2: Can a person from Pakistan or Bangladesh get an OCI card?

A: No, persons from Pakistan and Bangladesh are not eligible for an OCI card.

Q3: What recent changes have been made to the OCI card?

A: The Government of India has merged the Persons of Indian Origin (PIO) card with the OCI card.

Who are Non-Resident Indian ?

A : A citizen of India, having Indian passport and staying temporarily in another country for purpose of employment, education for more than 6 months.


Multiple-Choice Questions (MCQs) with Answers and Explanations

Q1: Which of the following statements about the OCI card is correct?
A) OCI cardholders are given Indian citizenship.
B) OCI cardholders have the right to vote in Indian elections.
C) OCI cardholders can reside in India indefinitely.
D) OCI cardholders cannot visit India.

Answer: C) OCI cardholders can reside in India indefinitely.
Explanation: The OCI card allows a foreign national of Indian origin to live and work in India indefinitely without requiring a visa. However, they do not have the right to vote, hold constitutional posts, or apply for government jobs in India.

Q2: Which of the following categories of people are NOT eligible for an OCI card?
A) Citizens of Pakistan and Bangladesh.
B) A person whose great-grandfather was an Indian citizen.
C) A foreigner married to an Indian citizen for over five years.
D) A US citizen who was born in India.

Answer: A) Citizens of Pakistan and Bangladesh.
Explanation: The OCI scheme is not applicable to individuals who are or were citizens of Pakistan or Bangladesh due to diplomatic reasons.

Q3: What major change was introduced regarding OCI and PIO cards?
A) PIO and OCI cards were discontinued.
B) PIO cardholders were automatically granted Indian citizenship.
C) PIO cards were merged with OCI cards.
D) OCI cards were abolished.

Answer: C) PIO cards were merged with OCI cards.
Explanation: To streamline the process and benefits for foreign nationals of Indian origin, the Government of India merged the PIO card with the OCI card, making OCI the sole long-term residency document for eligible individuals.


OCI Quiz body { font-family: Arial, sans-serif; padding: 20px; } .quiz-container { max-width: 600px; margin: auto; } .question { font-size: 18px; font-weight: bold; margin-bottom: 10px; } .options { list-style: none; padding: 0; } .options li { margin: 5px 0; cursor: pointer; padding: 10px; border: 1px solid #ccc; } .correct { background-color: #d4edda; border-color: #155724; } .incorrect { background-color: #f8d7da; border-color: #721c24; } .explanation { font-size: 14px; margin-top: 5px; display: none; } .score { font-size: 20px; font-weight: bold; margin-top: 20px; }
const quizData = [ { question: “Who is eligible for an Overseas Citizen of India (OCI) card?”, options: [“Any foreign national”, “Person of Indian origin who meets eligibility criteria”, “Only Indian citizens”, “Diplomats”], correct: 1, explanation: “Only persons of Indian origin who meet the government’s criteria are eligible for an OCI card.” }, { question: “Can an OCI cardholder vote in Indian elections?”, options: [“Yes”, “No”, “Only in local elections”, “Only in general elections”], correct: 1, explanation: “OCI cardholders do not have voting rights in India.” }, { question: “Which countries’ citizens are not eligible for an OCI card?”, options: [“USA & UK”, “Pakistan & Bangladesh”, “Canada & Australia”, “Nepal & Sri Lanka”], correct: 1, explanation: “Citizens of Pakistan and Bangladesh are not eligible for an OCI card due to diplomatic reasons.” }, { question: “Which of the following is a benefit of an OCI card?”, options: [“Right to work in government jobs”, “Indefinite stay in India”, “Right to own agricultural land”, “Voting rights”], correct: 1, explanation: “OCI cardholders can stay in India indefinitely but do not have voting or government job rights.” }, { question: “Which document is required to apply for an OCI card?”, options: [“Aadhaar Card”, “Valid Indian Visa”, “Indian Birth Certificate”, “All of the above”], correct: 3, explanation: “Multiple documents, including a valid Indian visa and birth proof, are required to apply for an OCI card.” }, { question: “Can OCI cardholders own property in India?”, options: [“Yes, any type of property”, “No property ownership”, “Only residential and commercial property”, “Only ancestral property”], correct: 2, explanation: “OCI cardholders can own residential and commercial property but not agricultural land.” }, { question: “What major change was introduced regarding OCI and PIO cards?”, options: [“OCI scheme was abolished”, “PIO cards were merged with OCI”, “OCI was replaced with NRI”, “PIO holders got full Indian citizenship”], correct: 1, explanation: “The government merged PIO cards with OCI to streamline the process.” }, { question: “Can an OCI cardholder apply for Indian citizenship?”, options: [“Yes, after 5 years”, “No”, “Yes, after 10 years of residency”, “Only if they renounce foreign citizenship”], correct: 3, explanation: “OCI cardholders can apply for Indian citizenship if they meet specific criteria and renounce foreign citizenship.” }, { question: “Can an OCI cardholder work in India?”, options: [“Yes, in private sector”, “No, not at all”, “Only in government jobs”, “Only with a special work permit”], correct: 0, explanation: “OCI holders can work in India but are not eligible for government jobs.” }, { question: “What is the validity of an OCI card?”, options: [“5 years”, “10 years”, “Lifetime”, “Until age 50”], correct: 2, explanation: “OCI cards are valid for a lifetime, but updates are required upon reaching specific age milestones.” } ];let currentQuestion = 0; let score = 0;function loadQuestion() { const quizContainer = document.getElementById(“quiz”); quizContainer.innerHTML = “”; let qData = quizData[currentQuestion]; let questionElement = document.createElement(“div”); questionElement.className = “question”; questionElement.innerHTML = `Q${currentQuestion + 1}: ${qData.question}`; quizContainer.appendChild(questionElement);let optionsList = document.createElement(“ul”); optionsList.className = “options”; qData.options.forEach((option, index) => { let optionItem = document.createElement(“li”); optionItem.innerHTML = option; optionItem.onclick = () => checkAnswer(index); optionsList.appendChild(optionItem); }); quizContainer.appendChild(optionsList); }function checkAnswer(selectedIndex) { let qData = quizData[currentQuestion]; let options = document.querySelectorAll(“.options li”); options.forEach((opt, index) => { if (index === qData.correct) { opt.classList.add(“correct”); } else if (index === selectedIndex) { opt.classList.add(“incorrect”); } opt.onclick = null; }); let explanation = document.createElement(“div”); explanation.className = “explanation”; explanation.innerHTML = `Explanation: ${qData.explanation}`; explanation.style.display = “block”; document.getElementById(“quiz”).appendChild(explanation); if (selectedIndex === qData.correct) score++; document.getElementById(“score”).innerText = `Score: ${score}/${quizData.length}`; }function nextQuestion() { if (currentQuestion < quizData.length – 1) { currentQuestion++; loadQuestion(); } else { alert("Quiz completed! Final Score: " + score + "/" + quizData.length); } }loadQuestion();

Why Choose Our Study Material?

  • Covers all major exams: NDA, CDS, UPSC, AFCAT, RRB, IBPS-PO, SSC, KVS, CLAT.
  • Detailed explanations for MCQs.
  • Frequently updated with the latest exam pattern and syllabus.
  • High-quality content designed by experts.

Buy Now at: https://publishers.anandclasses.co.in/


Contact Details

Proprietor: NIRMAL ANAND Educations
Written by: Neeraj Anand
Published by: Anand Technical Publishers Under Anand Classes
Contact: +91-9463138669
Email: anandclasses1996@gmail.com

Buy Complete Study Material for NDA, CDS, UPSC, AFCAT, RRB, IBPS-PO, SSC, KVS, CLAT Exams

Buy now at: https://publishers.anandclasses.co.in/

⬅️ Commonwealth Citizenship | NDA,CDS,UPSC,AFCAT,RRB,IBPS-PO,SSC,KVS,CLAT Exams Notes Citizenship Amendment Act 2015 | NDA, CDS, UPSC, AFCAT, RRB, IBPS-PO, SSC, KVS, CLAT Notes ➡️

RELATED TOPICS