Class 3 Grammar MCQ Quiz শিক্ষার্থীদের ইংরেজি ব্যাকরণ শেখার একটি সহজ ও মজার উপায়। এই আর্টিকেলে আমরা ২০টি গুরুত্বপূর্ণ Grammar MCQ প্রশ্নোত্তর তুলে ধরেছি, যেখানে noun, verb, pronoun, adjective, adverb, article, preposition ও punctuation–এর মতো বেসিক টপিক অন্তর্ভুক্ত রয়েছে। প্রতিটি প্রশ্নের সঙ্গে দেওয়া আছে সহজ ব্যাখ্যা ও উদাহরণ বাক্য, যা ছোটদের দ্রুত বুঝতে সাহায্য করবে। যারা Class 3 English Grammar অনুশীলন করতে চায়, তাদের জন্য এই কুইজটি অত্যন্ত উপযোগী।
(adsbygoogle = window.adsbygoogle || []).push({});
English Grammar MCQ Class 2
<!–✅ Bengali Text Stored Safely in to keep UTF-8–>
[
{“q”:”Which is a noun?”,”a”:”Dog”,”o”:[“Run”,”Happy”,”Dog”,”Quickly”]},
{“q”:”Which is a verb?”,”a”:”Jump”,”o”:[“Table”,”Jump”,”Chair”,”Pen”]},
{“q”:”Which is a pronoun?”,”a”:”He”,”o”:[“Boy”,”Apple”,”He”,”School”]},
{“q”:”Choose the correct plural of child.”,”a”:”Children”,”o”:[“Childs”,”Childes”,”Children”,”Child”]},
{“q”:”Which is an adjective?”,”a”:”Big”,”o”:[“Run”,”Eat”,”Big”,”Jump”]},
{“q”:”Choose the correct sentence.”,”a”:”She is my friend.”,”o”:[“She are my friend.”,”She is my friend.”,”She am my friend.”,”She be my friend.”]},
{“q”:”Which is a proper noun?”,”a”:”India”,”o”:[“city”,”girl”,”India”,”school”]},
{“q”:”Choose the correct article: ___ apple”,”a”:”an”,”o”:[“a”,”an”,”the”,”no article”]},
{“q”:”Which is a preposition?”,”a”:”Under”,”o”:[“Big”,”Under”,”Play”,”Fast”]},
{“q”:”Choose the opposite of hot.”,”a”:”Cold”,”o”:[“Warm”,”Cold”,”Big”,”Fast”]},
{“q”:”Which is a singular word?”,”a”:”Boy”,”o”:[“Boys”,”Girls”,”Cats”,”Boy”]},
{“q”:”Choose the correct verb: The cat ___ milk.”,”a”:”drinks”,”o”:[“drink”,”drinks”,”drinking”,”drank”]},
{“q”:”Which is an adverb?”,”a”:”Slowly”,”o”:[“Quick”,”Slowly”,”Big”,”Dog”]},
{“q”:”Choose the correct pronoun: Rita is my sister. ___ is kind.”,”a”:”She”,”o”:[“He”,”She”,”It”,”They”]},
{“q”:”Choose the correct word: I ___ to school every day.”,”a”:”go”,”o”:[“go”,”goes”,”going”,”gone”]},
{“q”:”Which is a conjunction?”,”a”:”And”,”o”:[“Run”,”Big”,”And”,”Cat”]},
{“q”:”Choose the correct sentence.”,”a”:”He goes to school.”,”o”:[“He go to school.”,”He goes to school.”,”He going to school.”,”He gone to school.”]},
{“q”:”Which is a verb?”,”a”:”Play”,”o”:[“Pen”,”Desk”,”Play”,”Road”]},
{“q”:”Which is a proper noun?”,”a”:”Riya”,”o”:[“girl”,”city”,”Riya”,”school”]},
{“q”:”Choose the correct punctuation: What is your name___”,”a”:”?”,”o”:[“.”,”!”,”?”,”;”]}
]
document.addEventListener(“DOMContentLoaded”, () => {
const quizData = JSON.parse(document.getElementById(“quizData”).innerHTML);
let current = 0, score = 0;
const questionText = document.getElementById(‘questionText’);
const optionsContainer = document.getElementById(‘optionsContainer’);
const nextBtn = document.getElementById(‘nextBtn’);
const resultContainer = document.getElementById(‘resultContainer’);
const scoreText = document.getElementById(‘scoreText’);
function loadQuestion() {
const q = quizData[current];
questionText.innerHTML = `${current + 1}. ${q.q}`;
optionsContainer.innerHTML = ”;
q.o.forEach(opt => {
const btn = document.createElement(‘button’);
btn.textContent = opt;
btn.style.cssText = “display:block;width:100%;text-align:left;margin:8px 0;padding:10px;border-radius:8px;border:1px solid #ddd;background:#f8f9fa;cursor:pointer;transition:all 0.3s;”;
btn.onclick = () => checkAnswer(btn, q.a);
optionsContainer.appendChild(btn);
});
}
function checkAnswer(btn, correct) {
const buttons = optionsContainer.querySelectorAll(‘button’);
buttons.forEach(b => b.disabled = true);
if (btn.textContent.trim() === correct.trim()) {
btn.style.background = ‘#28a745’;
btn.style.color = ‘#fff’;
score++;
} else {
btn.style.background = ‘#dc3545’;
btn.style.color = ‘#fff’;
// Highlight correct answer
buttons.forEach(b => {
if (b.textContent.trim() === correct.trim()) {
b.style.background = ‘#28a745’;
b.style.color = ‘#fff’;
}
});
}
}
nextBtn.onclick = () => {
current++;
if (current < quizData.length) {
loadQuestion();
} else {
document.getElementById('questionContainer').style.display = 'none';
resultContainer.style.display = 'block';
scoreText.innerHTML = `আপনার স্কোর: ${score} / ${quizData.length}`;
}
}
loadQuestion();
});
Sentence: He is my best friend.
Sentence: The children are in the classroom.
Explanation: “She” এর সাথে “is” বসে।
Sentence: I live in India.
Sentence: The cat is under the table.
Sentence: The water is cold.
Sentence: The cat drinks milk.
Sentence: He walks slowly.
Explanation: মেয়েদের জন্য “She” ব্যবহার হয়।
Sentence: She is kind.
Explanation: “I” এর সাথে “go” বসে।
Sentence: I go to school every day.
Explanation: Conjunction দুইটি শব্দ বা বাক্য জোড়ে।
Sentence: I like apples and bananas.
Explanation: He এর সাথে verb-এ “s” বসে।
Sentence: He goes to school daily.
