KP (কলকাতা পুলিশ ) 2025 Quiz
(adsbygoogle = window.adsbygoogle || []).push({});
<!–✅ Bengali Text Stored Safely in to keep UTF-8–>
[
{“q”:”MMS এর পূর্ণরূপ কী?”,”a”:”Multimedia Messaging Service”,”o”:[“Micro Messaging Service”,”Multimedia Messaging Service”,”Master Media System”,”Mobile Message Setup”]},
{“q”:”MAT এর পূর্ণরূপ কী?”,”a”:”Management Aptitude Test”,”o”:[“Management Ability Test”,”Management Aptitude Test”,”Master Aptitude Test”,”Managerial Assessment Test”]},
{“q”:”MLA এর পূর্ণরূপ কী?”,”a”:”Member of Legislative Assembly”,”o”:[“Member of Local Assembly”,”Member of Legislative Association”,”Member of Legislative Assembly”,”Minister of Legislative Affairs”]},
{“q”:”MAC এর পূর্ণরূপ কী?”,”a”:”Media Access Control”,”o”:[“Mobile Access Code”,”Management Access Control”,”Media Access Control”,”Massive Access Channel”]},
{“q”:”MSI এর পূর্ণরূপ কী?”,”a”:”Micro Star International”,”o”:[“Macro Star India”,”Micro Star International”,”Mini System International”,”Micro Software Institute”]},
{“q”:”NSE এর পূর্ণরূপ কী?”,”a”:”National Stock Exchange of India Ltd”,”o”:[“National Share Exchange”,”New Stock Exchange”,”National Stock Exchange of India Ltd”,”National Sales Enterprise”]},
{“q”:”NATO এর পূর্ণরূপ কী?”,”a”:”North Atlantic Treaty Organisation”,”o”:[“National Atomic Treaty Organisation”,”North Atlantic Treaty Organisation”,”Northern Aero Treaty Office”,”National Alliance Treaty Organisation”]},
{“q”:”NCERT এর পূর্ণরূপ কী?”,”a”:”National Council of Educational Research and Training”,”o”:[“National Centre for Education and Research Training”,”National Council of Educational Research and Training”,”National Committee of Education Research Team”,”National College of Education Research & Training”]},
{“q”:”NGO এর পূর্ণরূপ কী?”,”a”:”Non Government Organisation”,”o”:[“National Government Organisation”,”Non Government Organisation”,”New Generation Organisation”,”Non Global Organisation”]},
{“q”:”NABARD এর পূর্ণরূপ কী?”,”a”:”National Bank for Agriculture and Rural Development”,”o”:[“National Bank for Agricultural Research”,”National Bank for Agriculture and Rural Development”,”National Agriculture Board”,”National Board for Rural Development”]},
{“q”:”NRC এর পূর্ণরূপ কী?”,”a”:”National Register of Citizen”,”o”:[“National Record of Citizens”,”National Register of Citizens”,”National Rural Census”,”National Resident Certificate”]},
{“q”:”NASA এর পূর্ণরূপ কী?”,”a”:”National Aeronautics and Space Administration”,”o”:[“National Air & Space Agency”,”North American Space Association”,”National Aeronautics and Space Administration”,”National Aerospace Authority”]},
{“q”:”ONGC এর পূর্ণরূপ কী?”,”a”:”Oil and Natural Gas Corporation”,”o”:[“Oil and Natural Gas Company”,”Oil and Natural Gas Corporation”,”Organisation of Natural Gas Corporation”,”Oil National Gas Corporation”]},
{“q”:”OPEC এর পূর্ণরূপ কী?”,”a”:”Organisation of Petrol Exporting Countries”,”o”:[“Organisation of Petrol Exporting Countries”,”Oil Producing Economy Council”,”Organisation of Petroleum Energy Countries”,”Oil and Petroleum Export Committee”]},
{“q”:”OAPEC এর পূর্ণরূপ কী?”,”a”:”Organisation of Arab Petroleum Exporting Countries”,”o”:[“Organisation of Arab Petroleum Exporting Countries”,”Oil and Petroleum Export Council”,”Organisation of Asian Petroleum Exporting Countries”,”Organisation for Arab Petroleum Economy”]},
{“q”:”OIGS এর পূর্ণরূপ কী?”,”a”:”On India Government Service”,”o”:[“On India Government Service”,”Official India Government Sector”,”Office of Indian Government Service”,”Organisation of Indian Government Services”]},
{“q”:”PAN এর পূর্ণরূপ কী?”,”a”:”Permanent Account Number”,”o”:[“Permanent Account Name”,”Permanent Account Number”,”Personal Account Number”,”Public Allocation Number”]},
{“q”:”PIN এর পূর্ণরূপ কী?”,”a”:”Postal Index Number”,”o”:[“Personal Identification Number”,”Public Index Number”,”Postal Index Number”,”Post Information Number”]},
{“q”:”PWD এর পূর্ণরূপ কী?”,”a”:”Public Works Department”,”o”:[“Public Welfare Department”,”Public Works Division”,”Public Works Department”,”People’s Work Department”]},
{“q”:”PDF এর পূর্ণরূপ কী?”,”a”:”Portable Document Format”,”o”:[“Portable Digital File”,”Public Document Format”,”Portable Document Format”,”Print Document File”]},
{“q”:”PC এর পূর্ণরূপ কী?”,”a”:”Personal Computer”,”o”:[“Personal Calculator”,”Personal Computer”,”Professional Computer”,”Primary Computer”]},
{“q”:”RTI এর পূর্ণরূপ কী?”,”a”:”Right to Information”,”o”:[“Right to Instruction”,”Right to Information”,”Right to Issue”,”Right to Intelligence”]},
{“q”:”ROM এর পূর্ণরূপ কী?”,”a”:”Read Only Memory”,”o”:[“Read Only Memory”,”Random Optical Memory”,”Remote Operating Module”,”Reassigned Output Memory”]},
{“q”:”RAW এর পূর্ণরূপ কী?”,”a”:”Research and Analysis Wing”,”o”:[“Research and Action Wing”,”Research and Administration Wing”,”Research and Analysis Wing”,”Regional Analysis Wing”]}
]
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();
});
(adsbygoogle = window.adsbygoogle || []).push({});
.related-box{max-width:900px;margin:20px auto;padding:0 10px}
.related-title{font-size:1.2rem;font-weight:700;margin-bottom:12px}
.related-grid{display:grid;gap:10px;grid-template-columns:1fr}
.related-item{background:#fff;border:1px solid #e6e6e6;border-radius:8px;padding:12px;transition:0.2s}
.related-item:hover{background:#f7f7f7}
.related-item a{text-decoration:none;color:#0a4a7b;font-weight:600;font-size:0.95rem;line-height:1.4}
@media(min-width:520px){
.related-grid{grid-template-columns:1fr 1fr}
}
@media(min-width:850px){
.related-grid{grid-template-columns:1fr 1fr 1fr}
}
{
“@context”: “https://schema.org”,
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “PAN-এর পূর্ণরূপ কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Permanent Account Number (পার্মানেন্ট অ্যাকাউন্ট নাম্বার)”
}
},
{
“@type”: “Question”,
“name”: “PIN-এর পূর্ণরূপ কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Postal Index Number (পোস্টাল ইনডেক্স নাম্বার)”
}
},
{
“@type”: “Question”,
“name”: “RTI এর পূর্ণরূপ কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Right to Information (রাইট টু ইনফরমেশন)”
}
},
{
“@type”: “Question”,
“name”: “PDF-এর পূর্ণরূপ কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Portable Document Format (পোর্টেবল ডকুমেন্ট ফরমেট)”
}
},
{
“@type”: “Question”,
“name”: “NGO-এর পূর্ণরূপ কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Non Government Organisation (নন গভারমেন্ট অর্গানাইজেশন)”
}
}
]
}
/* Minimal, responsive FAQ styling – paste in head or just above the HTML block */
.faq-wrap { max-width: 820px; margin: 18px auto; font-family: system-ui,-apple-system,Segoe UI,Roboto,”Helvetica Neue”,Arial; padding: 0 12px; }
.faq-item { border-bottom: 1px solid #e6e6e6; }
.faq-q {
display:flex; align-items:center; justify-content:space-between;
padding: 14px 8px; cursor:pointer; user-select:none;
font-weight:600; font-size:16px;
}
.faq-q .chev { transition: transform .22s ease; }
.faq-q[aria-expanded=”true”] .chev { transform: rotate(90deg); }
.faq-a { padding: 0 8px 14px 8px; line-height:1.6; color:#222; font-size:15px; display:none; }
.faq-a p{margin:0;}
/* small screens */
@media (max-width:420px){ .faq-q{font-size:15px} .faq-a{font-size:14px} }
প্রায়শই জিজ্ঞাসিত প্রশ্ন (FAQ)
উত্তর: Permanent Account Number (পার্মানেন্ট অ্যাকাউন্ট নাম্বার)
উত্তর: Postal Index Number (পোস্টাল ইনডেক্স নাম্বার)
উত্তর: Right to Information (রাইট টু ইনফরমেশন)
উত্তর: Portable Document Format (পোর্টেবল ডকুমেন্ট ফরমেট)
উত্তর: Non Government Organisation (নন গভারমেন্ট অর্গানাইজেশন)
/* Tiny accordion JS — unobtrusive and fast */
/* Keeps code minimal for fastest load. Works with keyboard (Enter/Space) */
(function(){
var wrap = document.getElementById(‘faqWrap’);
if(!wrap) return;
var buttons = wrap.querySelectorAll(‘.faq-q’);
for(var i=0;i<buttons.length;i++){
(function(btn){
btn.addEventListener('click', toggle);
btn.addEventListener('keydown', function(e){
if(e.key === 'Enter' || e.key === ' '){ e.preventDefault(); toggle.call(btn); }
});
})(buttons[i]);
}
function toggle(){
var expanded = this.getAttribute('aria-expanded') === 'true';
// close all
var allBtns = wrap.querySelectorAll('.faq-q');
var allAns = wrap.querySelectorAll('.faq-a');
for(var j=0;j<allBtns.length;j++){
allBtns[j].setAttribute('aria-expanded','false');
}
for(var k=0;k<allAns.length;k++){
allAns[k].style.display = 'none';
}
// if previously closed, open this
if(!expanded){
this.setAttribute('aria-expanded','true');
var aid = this.getAttribute('aria-controls');
var a = document.getElementById(aid);
if(a) a.style.display = 'block';
}
}
})();
