Abbreviation Mock Test with Answers Free | Full Form MCQ Quiz Online For Students

Abbreviation Mock Test with Answers

This free online quiz helps students learn important abbreviations and full forms easily. Practice common GK abbreviations, improve memory, and prepare for exams with interactive abbreviation and full form quiz questions with answers — simple, smart, and fun to play!
Abbreviation Mock Test with Answers Free Full Form MCQ Quiz Online For Students

<!–✅ Bengali Text Stored Safely in to keep UTF-8–>

[
{“q”:”What is the full form of A.I.F.F?”,”a”:”ALL INDIA FOOTBALL FEDERATION”,”o”:[“ALL INDIA FOOTBALL FEDERATION”,”ALL INDIA FILM FEDERATION”,”ASIAN INTERNATIONAL FOOTBALL FEDERATION”,”ALL INDIA FRIENDSHIP FOUNDATION”]},
{“q”:”What is the full form of A.I.I.M.S?”,”a”:”ALL INDIA INSTITUTE OF MEDICAL SCIENCE”,”o”:[“ALL INDIA INSTITUTE OF MANAGEMENT STUDIES”,”ALL INDIA INSTITUTE OF MEDICAL SCIENCE”,”ASIAN INSTITUTE OF MEDICAL SCIENCE”,”ALL INDIA MEDICAL SOCIETY”]},
{“q”:”What is the full form of A.I.D.S?”,”a”:”ACQUIRED IMMUNE DEFICIENCY SYNDROME”,”o”:[“ACQUIRED IMMUNE DEFICIENCY SYNDROME”,”ACTIVE IMMUNE DEFICIENCY SYSTEM”,”ADVANCED IMMUNE DEFICIENCY SYNDROME”,”AUTOMATIC IMMUNE DEFICIENCY SYNDROME”]},
{“q”:”What is the full form of A.I.T.U.C?”,”a”:”ALL INDIA TRADE UNION CONGRESS”,”o”:[“ALL INDIA TRADE UNION CONGRESS”,”ASIAN INDUSTRIAL TRADE UNION COUNCIL”,”ALL INDIA TECHNICAL UNION COUNCIL”,”ALL INDIA TRANSPORT UNION CORPORATION”]},
{“q”:”What is the full form of A.D.B?”,”a”:”ASIAN DEVELOPMENT BANK”,”o”:[“ASIAN DEVELOPMENT BANK”,”ALLIED DEVELOPMENT BANK”,”AFRICAN DEVELOPMENT BANK”,”AMERICAN DEVELOPMENT BANK”]},
{“q”:”What is the full form of A.S.I?”,”a”:”ARCHEOLOGICAL SURVEY OF INDIA”,”o”:[“ARCHEOLOGICAL SURVEY OF INDIA”,”ARCHITECTURAL SOCIETY OF INDIA”,”ASIAN SURVEY INSTITUTE”,”ARCHAEOLOGY STUDY INSTITUTE”]},
{“q”:”What is the full form of A.T.M?”,”a”:”AUTOMATED TELLER MACHINE”,”o”:[“AUTOMATED TELLER MACHINE”,”AUTOMATIC TRANSACTION MACHINE”,”AUTOMATED TRANSFER MODULE”,”ADVANCED TELLER MACHINE”]},
{“q”:”What is the full form of A.C?”,”a”:”AIR CONDITION / ALTERNATING CURRENT”,”o”:[“AIR CONDITION / ALTERNATING CURRENT”,”AIR CIRCULATION”,”ADVANCED CURRENT”,”AIR CONNECTION”]},
{“q”:”What is the full form of A.T.S?”,”a”:”ANTI TITNESS SERUM”,”o”:[“ANTI TITNESS SERUM”,”ANTI TOXIN SERUM”,”ANTI TEMPERATURE SOLUTION”,”ANTI TITANIUM SERUM”]},
{“q”:”What is the full form of A.D.F?”,”a”:”ASIAN DEVELOPMENT FUND”,”o”:[“ASIAN DEVELOPMENT FUND”,”ALLIED DEVELOPMENT FUND”,”AFRICAN DEVELOPMENT FUND”,”ADVANCED DEVELOPMENT FOUNDATION”]},
{“q”:”What is the full form of B.C.C.I?”,”a”:”BOARD OF CONTROL FOR CRICKET IN INDIA”,”o”:[“BOARD OF CONTROL FOR CRICKET IN INDIA”,”BOARD OF CRICKET COUNCIL INDIA”,”BUREAU OF CRICKET CONTROL INDIA”,”BOARD OF CENTRAL CRICKET INDIA”]},
{“q”:”What is the full form of B.A.R.C?”,”a”:”BHABHA ATOMIC RESEARCH CENTRE”,”o”:[“BHABHA ATOMIC RESEARCH CENTRE”,”BUREAU ATOMIC RESEARCH CENTRE”,”BHARAT ATOMIC RESEARCH COUNCIL”,”BHABHA ADVANCED RESEARCH CENTRE”]},
{“q”:”What is the full form of B.B.C?”,”a”:”BRITISH BROADCASTING CORPORATION”,”o”:[“BRITISH BROADCASTING CORPORATION”,”BHARAT BROADCASTING CORPORATION”,”BRITISH BUSINESS COUNCIL”,”BRITISH BROADCAST CHANNEL”]},
{“q”:”What is the full form of B.S.F?”,”a”:”BORDER SECURITY FORCE”,”o”:[“BORDER SECURITY FORCE”,”BUREAU SECURITY FORCE”,”BHARAT SECURITY FORCE”,”BORDER SERVICE FORCE”]},
{“q”:”What is the full form of B.R.O?”,”a”:”BORDER ROADS ORGANISATION”,”o”:[“BORDER ROADS ORGANISATION”,”BUREAU ROADS ORGANISATION”,”BHARAT ROAD ORGANISATION”,”BORDER ROAD OFFICE”]},
{“q”:”What is the full form of B.S.N.L?”,”a”:”BHARAT SANCHAR NIGAM LIMITED”,”o”:[“BHARAT SANCHAR NIGAM LIMITED”,”BHARAT SERVICE NETWORK LIMITED”,”BHARAT SIGNAL NETWORK LIMITED”,”BHARAT SANCHAR NATIONAL LIMITED”]},
{“q”:”What is the full form of C.I.T.U.C?”,”a”:”CENTRE OF INDIA TRADE UNION”,”o”:[“CENTRE OF INDIA TRADE UNION”,”CENTRAL INDUSTRIAL TRADE UNION COUNCIL”,”COUNCIL OF INDIAN TRADE UNION”,”CENTRAL INSTITUTE OF TRADE UNION”]},
{“q”:”What is the full form of C.B.I?”,”a”:”CENTRAL BUREAU OF INVESTIGATION”,”o”:[“CENTRAL BUREAU OF INVESTIGATION”,”CENTRAL BANK OF INDIA”,”CENTRAL BUSINESS INSTITUTE”,”CENTRAL BUREAU OF INFORMATION”]},
{“q”:”What is the full form of C.N.G?”,”a”:”COMPRESSED NATURAL GAS”,”o”:[“COMPRESSED NATURAL GAS”,”CENTRAL NATURAL GAS”,”COMBINED NATURAL GAS”,”CONDENSED NATIONAL GAS”]},
{“q”:”What is the full form of C.R.P.F?”,”a”:”CENTRAL RESERVE POLICE FORCE”,”o”:[“CENTRAL RESERVE POLICE FORCE”,”CENTRAL RAPID POLICE FORCE”,”CENTRAL RURAL POLICE FORCE”,”CENTRAL REFORM POLICE FORCE”]}
]

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 = `Your Score: ${score} / ${quizData.length}`;
}
}

loadQuestion();
});

.faq-section {
max-width: 900px;
margin: 25px auto;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 18px rgba(0,0,0,0.06);
padding: 20px;
font-family: “Noto Sans”, “Noto Sans Bengali”, sans-serif;
}
.faq-section h2 {
text-align:center;
color:#0b5ed7;
margin-bottom: 15px;
}
.faq-item {
border-top: 1px solid #e9ecef;
}
.faq-question {
background:none;
border:none;
width:100%;
text-align:left;
padding:14px 0;
cursor:pointer;
font-size:1rem;
font-weight:600;
color:#212529;
display:flex;
justify-content:space-between;
align-items:center;
}
.faq-answer {
display:none;
padding-bottom:14px;
color:#333;
line-height:1.5;
}
.faq-item.open .faq-answer {
display:block;
}
.faq-item.open .chev {
transform:rotate(180deg);
}
.chev {
transition:transform 0.3s;
color:#6c757d;
}

Frequently Asked Questions — Abbreviation Mock Test

A.I.F.F stands for All India Football Federation, the governing body of football in India.

A.I.I.M.S stands for All India Institute of Medical Science, a premier medical institute and hospital in India.

A.I.D.S means Acquired Immune Deficiency Syndrome, a disease caused by the HIV virus that weakens the immune system.

A.T.M stands for Automated Teller Machine, a self-service banking machine used to withdraw or deposit money.

B.B.C means British Broadcasting Corporation, a world-famous public service broadcaster from the United Kingdom.

document.querySelectorAll(‘.faq-question’).forEach(btn=>{
btn.addEventListener(‘click’,()=>{
const parent = btn.parentElement;
document.querySelectorAll(‘.faq-item’).forEach(i=>i.classList.remove(‘open’));
parent.classList.toggle(‘open’);
});
});

{
“@context”:”https://schema.org”,
“@type”:”FAQPage”,
“mainEntity”:[
{
“@type”:”Question”,
“name”:”What is the full form of A.I.F.F?”,
“acceptedAnswer”:{
“@type”:”Answer”,
“text”:”A.I.F.F stands for All India Football Federation, the governing body of football in India.”
}
},
{
“@type”:”Question”,
“name”:”What is the full form of A.I.I.M.S?”,
“acceptedAnswer”:{
“@type”:”Answer”,
“text”:”A.I.I.M.S stands for All India Institute of Medical Science, a premier medical institute and hospital in India.”
}
},
{
“@type”:”Question”,
“name”:”What is the full form of A.I.D.S?”,
“acceptedAnswer”:{
“@type”:”Answer”,
“text”:”A.I.D.S means Acquired Immune Deficiency Syndrome, a disease caused by the HIV virus that weakens the immune system.”
}
},
{
“@type”:”Question”,
“name”:”What is the full form of A.T.M?”,
“acceptedAnswer”:{
“@type”:”Answer”,
“text”:”A.T.M stands for Automated Teller Machine, a self-service banking machine used to withdraw or deposit money.”
}
},
{
“@type”:”Question”,
“name”:”What is the full form of B.B.C?”,
“acceptedAnswer”:{
“@type”:”Answer”,
“text”:”B.B.C means British Broadcasting Corporation, a world-famous public service broadcaster from the United Kingdom.”
}
}
]
}

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top