Abbreviation Mock Test With Answer
<!–✅ Bengali Text Stored Safely in to keep UTF-8–>
[
{“q”:”What is the full form of C.E.O?”,”a”:”Chief Electoral Officer”,”o”:[“Chief Electoral Officer”,”Chief Executive Officer”,”Central Election Office”,”Chief Education Officer”]},
{“q”:”What is the full form of C.I.D?”,”a”:”Criminal Investigation Department”,”o”:[“Crime Information Department”,”Criminal Investigation Department”,”Central Intelligence Division”,”Civil Investigation Department”]},
{“q”:”What does C.I.S stand for?”,”a”:”Commonwealth of Independent State”,”o”:[“Commonwealth of Indian States”,”Commonwealth of Independent State”,”Central International Society”,”Council of Industrial States”]},
{“q”:”What is the full form of D.A?”,”a”:”Dearness Allowance”,”o”:[“Daily Allowance”,”Development Allowance”,”Dearness Allowance”,”Departmental Allocation”]},
{“q”:”What does D.R.D.O stand for?”,”a”:”Defence Research and Development Organisation”,”o”:[“Defence Research and Development Organisation”,”Department of Rocket Design Office”,”Directorate of Research and Defence Operation”,”Digital Radar Development Organisation”]},
{“q”:”What is the full form of D.S.B?”,”a”:”Digital Satellite Broadcasting”,”o”:[“Direct Signal Broadcasting”,”Digital Satellite Broadcasting”,”Data System Board”,”Digital Service Bureau”]},
{“q”:”What does D.D.T stand for?”,”a”:”Dichloro Diphenyl Dichloroethane”,”o”:[“Diethyl Dichloro Toluene”,”Dichloro Diphenyl Dichloroethane”,”Dimethyl Dioxide Toluene”,”Dichloro Diatomic Trihydride”]},
{“q”:”What is the full form of D.V.D?”,”a”:”Digital Video Disk”,”o”:[“Digital Video Disk”,”Data Visual Device”,”Digital Voice Disk”,”Dynamic Visual Display”]},
{“q”:”What does E.D stand for?”,”a”:”Enforcement Directorate”,”o”:[“Economic Department”,”Energy Division”,”Enforcement Directorate”,”External Development”]},
{“q”:”What is the full form of E-MAIL?”,”a”:”Electronic Mailing”,”o”:[“Electronic Message Access Internet Link”,”Electronic Mailing”,”Electronic Mailbox”,”External Messaging Alert Link”]},
{“q”:”What does E.M.U stand for?”,”a”:”Electric Multiple Unit”,”o”:[“Electric Motor Unit”,”Electric Multiple Unit”,”Energy Management Unit”,”Electronic Measurement Unit”]},
{“q”:”What is the full form of E.C.G?”,”a”:”Electrocardiogram”,”o”:[“Electrocardiogram”,”Electrochemical Graph”,”Electronic Circuit Grid”,”Electric Card Group”]},
{“q”:”What does E.S.S.A stand for?”,”a”:”Essential Services Maintenance Act”,”o”:[“Essential Services Maintenance Act”,”Emergency Support System Agreement”,”Environmental Safety Service Act”,”Essential Safety Standard Authority”]},
{“q”:”What is the full form of F.I.R?”,”a”:”First Information Report”,”o”:[“Final Investigation Report”,”First Information Report”,”Federal Intelligence Record”,”Forensic Investigation Report”]},
{“q”:”What does F.I.F.A stand for?”,”a”:”Federation of International Football Association”,”o”:[“Football International Federation Authority”,”Federation of International Football Association”,”Federation of Indian Football Association”,”Football Institution of Federation Asia”]},
{“q”:”What is the full form of F.C.I?”,”a”:”Food Corporation of India”,”o”:[“Food Corporation of India”,”Food Committee of India”,”Fertilizer Control Institute”,”Foreign Commerce Institution”]},
{“q”:”What does F.B.I stand for?”,”a”:”Federal Bureau of Investigation”,”o”:[“Federal Bureau of Investigation”,”Federal Branch of Intelligence”,”Foreign Bureau of Information”,”Federal Base Investigation”]},
{“q”:”What is the full form of F.A.O?”,”a”:”Food and Agriculture Organisation”,”o”:[“Food and Agriculture Organisation”,”Foreign Agricultural Office”,”Food Analysis Organisation”,”Federal Agriculture Organisation”]},
{“q”:”What does G.S.I stand for?”,”a”:”Geological Survey of India”,”o”:[“Geographical Study of India”,”Geological Survey of India”,”General Science Institute”,”Global System of Investigation”]},
{“q”:”What is the full form of G.A.T.T?”,”a”:”General Agreement on Tariffs and Trade”,”o”:[“General Association of Taxes and Tariffs”,”General Agreement on Tariffs and Trade”,”Global Association for Trade and Transport”,”Government Agreement on Trade and Tariff”]}
]
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();
});
.related-posts-box{
background:#ffffff;
margin:20px 0;
padding:20px;
border-radius:15px;
box-shadow:0 4px 15px rgba(0,0,0,0.10);
font-family:’Inter’,sans-serif;
}
.related-posts-box h3{
font-size:22px;
margin-bottom:15px;
font-weight:700;
color:#222;
text-align:left;
border-left:5px solid #4CAF50;
padding-left:10px;
}
.related-posts-list{
display:flex;
flex-direction:column;
gap:12px;
}
.related-posts-list a{
text-decoration:none;
padding:12px 15px;
border-radius:10px;
background:#f7f7f7;
color:#333;
font-size:16px;
font-weight:600;
border:1px solid #e5e5e5;
transition:0.3s;
}
.related-posts-list a:hover{
background:#4CAF50;
color:#fff;
transform:translateX(5px);
}
@media (max-width:600px){
.related-posts-box{
padding:15px;
}
.related-posts-list a{
font-size:15px;
}
}
Frequently Asked Questions (FAQ)
1. What is the full form of C.E.O?
The full form of C.E.O is Chief Electoral Officer. It refers to the official responsible for managing election processes in a state or country.
2. What is the full form of C.I.D?
The full form of C.I.D is Criminal Investigation Department, a specialized branch of the police responsible for solving crimes and investigations.
3. What does D.R.D.O stand for?
D.R.D.O stands for Defence Research and Development Organisation. It is an Indian government agency responsible for military research and innovations.
4. What is the full form of F.I.R?
The full form of F.I.R is First Information Report. It is the first written document prepared by police when they receive information about a crime.
5. What does F.B.I stand for?
F.B.I stands for Federal Bureau of Investigation. It is the main intelligence and security agency of the United States.
{
“@context”: “https://schema.org”,
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “What is the full form of C.E.O?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “The full form of C.E.O is Chief Electoral Officer. It refers to the official responsible for managing election processes in a state or country.”
}
},
{
“@type”: “Question”,
“name”: “What is the full form of C.I.D?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “The full form of C.I.D is Criminal Investigation Department, a specialized branch of the police responsible for solving crimes and investigations.”
}
},
{
“@type”: “Question”,
“name”: “What does D.R.D.O stand for?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “D.R.D.O stands for Defence Research and Development Organisation. It is an Indian government agency responsible for military research and innovations.”
}
},
{
“@type”: “Question”,
“name”: “What is the full form of F.I.R?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “The full form of F.I.R is First Information Report. It is the first written document prepared by police when they receive information about a crime.”
}
},
{
“@type”: “Question”,
“name”: “What does F.B.I stand for?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “F.B.I stands for Federal Bureau of Investigation. It is the main intelligence and security agency of the United States.”
}
}
]
}
