<!DOCTYPE html>
<html lang="hi">
<head>
<meta charset="UTF-8">
<title>Pioneer Computer Institute Quiz</title>
<style>
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #eef2f3; padding: 20px; display: flex; justify-content: center; }
.quiz-card { background: white; width: 100%; max-width: 700px; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
.header { text-align: center; color: #004a99; margin-bottom: 20px; border-bottom: 2px solid #004a99; padding-bottom: 10px; }
.q-text { font-size: 1.25em; font-weight: bold; margin-bottom: 20px; color: #333; }
.option { padding: 12px; border: 2px solid #ccc; margin: 10px 0; cursor: pointer; border-radius: 8px; transition: 0.2s; font-size: 1.1em; }
.option:hover { background: #e7f3ff; border-color: #004a99; }
.correct { background: #28a745 !important; color: white; border-color: #28a745; }
.wrong { background: #dc3545 !important; color: white; border-color: #dc3545; }
#next-btn { margin-top: 20px; padding: 12px 25px; cursor: pointer; background: #004a99; color: white; border: none; border-radius: 5px; display: none; width: 100%; font-size: 16px; font-weight: bold; }
</style>
</head>
<body>
<div class="quiz-card">
<div class="header">
<h1 style="margin:0;">Pioneer Computer Institute</h1>
<p style="margin:5px 0;">Kaptanganj, Azamgarh, U.P., 276141</p>
</div>
<div id="quiz-area">
<div id="q-count" style="margin-bottom: 10px; color: #666; font-weight: bold;"></div>
<div id="question" class="q-text"></div>
<div id="options"></div>
<button id="next-btn" onclick="nextQ()">अगला प्रश्न (Next Question) →</button>
</div>
<div id="result" style="display:none; text-align:center;">
<h2>Quiz Complete!</h2>
<p id="score" style="font-size: 1.8em; font-weight: bold; color: #004a99;"></p>
<button onclick="location.reload()" style="padding:10px 20px; cursor:pointer;">Restart Quiz</button>
</div>
</div>
<script>
const quizData = [
{q: "1. KYC means / के वाई सी का अर्थ है", o: ["Know Your Customer (नो योर कस्टमर)", "Know Your Character (नो योर कैरेक्टर)", "Know Your Consumer (नो योर कन्जयूमर)", "Know Your Card (नो योर कार्ड)"], c: 0},
{q: "2. In RTGS, T stands for / आर टी जी एस में टी का अर्थ है", o: ["Time (टाइम)", "Tea (टी)", "Today (टूडे)", "Transfer (ट्रांसफर)"], c: 0},
{q: "3. Bank provides loans for / बैंक द्वारा ऋण उपलब्ध कराया जाता है", o: ["Home (गृह)", "Education (शिक्षा)", "Vehicle (वाहन)", "All of above (उपरोक्त सभी)"], c: 3},
{q: "4. Which of the following is least secure method of authentication? / निम्नलिखित में से कौन-सी विधि प्रमाणीकरण की न्यूनतम सुरक्षित विधि है?", o: ["Keycard (की-कार्ड)", "Fingerprint (फिंगरप्रिंट)", "Retina Pattern (रेटिना पैटर्न)", "Password (पासवर्ड)"], c: 3},
{q: "5. POS is / पी ओ एस है", o: ["Point of sale (प्वाइन्ट ऑफ सेल)", "Position of sale (पोजीशन ऑफ सेल)", "Picture of sale (पिक्चर ऑफ सेल)", "None of these (कोई भी नहीं)"], c: 0},
{q: "6. Banks pay interest on / बैंक किस पर ब्याज देते हैं?", o: ["Deposits (जमा)", "Loans (ऋण)", "Withdrawl (निकासी)", "Transaction (लेन-देन)"], c: 0},
{q: "7. Bank charges interest on / बैंक किस पर ब्याज लेते हैं?", o: ["Deposits (जमा)", "Loans (ऋण)", "Withdrawl (निकासी)", "Transactions (लेन-देन)"], c: 1},
{q: "8. Who is Bank Mitra? / बैंक मित्र कौन है?", o: ["Banking correspondents (बैंकिंग संवाददाता)", "Valuable customer (मूल्यवान ग्राहक)", "Security guard (सुरक्षा गार्ड)", "Bank accountant (बैंक एकाउंटेण्ट)"], c: 0},
{q: "9. Aadhaar is / आधार एक", o: ["12-digit number card", "ID Proof by UIDAI", "A saving account", "Both (A) & (B)"], c: 3},
{q: "10. PAN means / पैन का अर्थ है", o: ["A kind of Account", "Primary Account Number", "Permanent Account Number", "Position Account Number"], c: 2},
{q: "11. Why is one time password safe? / वन टाइम पासवर्ड क्यों सुरक्षित है?", o: ["Easy to generate", "Cannot be shared", "Different for every access", "Complex encrypted"], c: 2},
{q: "12. Valid document for KYC? / KYC के लिए वैध दस्तावेज?", o: ["Only PAN", "Passport and PAN", "All of these", "None"], c: 2},
{q: "13. Which of these is a mobile banking service? / इनमें से कौन-सी मोबाइल बैंकिंग सेवा है?", o: ["Balance enquiry", "Account transaction", "Payment", "All of the above"], c: 3},
{q: "14. Which channel is NOT used for IMPS? / IMPS के लिए क्या माध्यम नहीं है?", o: ["SMS", "PAN", "Bank App", "Internet Banking"], c: 1},
{q: "15. IRCTC is a/an / IRCTC एक है", o: ["Plastic money", "Email services", "Railway services", "e-wallet"], c: 2},
{q: "16. Which cannot be done through Internet Banking? / इंटरनेट बैंकिंग से क्या नहीं हो सकता?", o: ["Applying for loan", "Withdrawing cash", "Viewing account statements", "Viewing recent transactions"], c: 1},
{q: "17. Mode preferred for large transactions? / बड़े लेनदेन के लिए पसंदीदा मोड है", o: ["IMPS", "NEFT", "UPI", "RTGS"], c: 3},
{q: "18. RTGS stands for / RTGS का पूर्ण रूप है", o: ["Real Time Gain Settlement", "Real Time Gross Settlement", "Real Time Gross Statement", "Rotational Transaction"], c: 1},
{q: "19. Which is NOT a benefit of Internet Banking? / इंटरनेट बैंकिंग का लाभ क्या नहीं है?", o: ["Get higher interest", "Pay bills online", "Transfer funds", "View account statements"], c: 0},
{q: "20. What is Adhar Seeding? / आधार सीडिंग क्या है?", o: ["Linked Adhar to Bank", "Linked to Post Office", "Linked to Gas", "None"], c: 0},
{q: "21. Indian Currency Symbol composed of which two languages? / भारतीय मुद्रा चिह्न किन दो भाषाओं से बना है?", o: ["Devanagari, Arabic", "Arabic, Persian", "Devanagari, Roman", "All of above"], c: 2},
{q: "22. Which happens first, authorization or authentication? / पहले क्या होता है?", o: ["Authorization", "Authentication", "Both same", "None"], c: 1},
{q: "23. Bank provides gold loan only / बैंक गोल्ड लोन देता है", o: ["To do business", "To buy gold", "Pledge gold jewelry", "All of above"], c: 2},
{q: "24. DFS stand for / DFS का विस्तारित रूप है", o: ["Digital Full Service", "Digital File Service", "Digital Final Service", "Digital Financial Service"], c: 3},
{q: "25. Indian Currency sign was officially adopted? / भारतीय मुद्रा चिह्न कब अपनाया गया?", o: ["5 May 2010", "11 July 2010", "13 July 2010", "15 July 2010"], c: 3},
{q: "26. Faster processing of large volume of cheques? / चेकों के तेज निस्तारण के लिए?", o: ["Bar-Code Reader", "OCR", "MICR", "OMR"], c: 2},
{q: "27. UPI stand for / UPI का विस्तारित रूप है", o: ["Unified Payment Interface", "Unified Pay Interface", "Immediate Payment Interface", "None"], c: 0},
{q: "28. IMPS stand for / IMPS का विस्तारित रूप है", o: ["Immediate Payment Service", "Immediate Pay Service", "Immediate Payment System", "None"], c: 0},
{q: "29. Which banks provide net banking? / नेट बैंकिग की सुविधा?", o: ["SBI", "HDFC", "Bank of Baroda", "All of above"], c: 3},
{q: "30. What is RuPay debit card? / RuPay डेबिट कार्ड क्या है?", o: ["Domestic debit card", "Issued by NPC", "Accepted by all", "All of the above"], c: 3},
{q: "31. Digits on ATM-cum-Debit card? / डेबिट कार्ड पर कितने अंक होते हैं?", o: ["12", "14", "16", "10"], c: 2},
{q: "32. Who is Bank Correspondent? / बैंक कॉरसपॉन्डेंट कौन है?", o: ["Banking agent", "Housing agent", "Money lender", "None"], c: 0},
{q: "33. Charges for using UPI? / यूपीआई शुल्क?", o: ["0.50 per transaction", "1 per transaction", "1.50 per transaction", "Free of cost"], c: 3},
{q: "34. What is QR code? / क्यूआर कोड क्या है?", o: ["Binary code", "A type of bar code", "Programming code", "None"], c: 1},
{q: "35. Credit Card is essential for: / क्रेडिट कार्ड अनिवार्य है:", o: ["E-Commerce", "Internet Commerce", "Both (A) & (B)", "None"], c: 2},
{q: "36. PIN stands for / PIN का अर्थ है:", o: ["Portable ID", "Permanent ID", "Personal Identification Number", "None"], c: 2},
// True/False Questions
{q: "37. Personal loan is not issued on basis of profession. / व्यक्तिगत लोन पेशे के आधार पर नहीं दिया जाता।", o: ["True", "False"], c: 1},
{q: "38. Gold Loan is issued against gold. / गोल्ड लोन सोना गिरवी रखने पर मिलता है।", o: ["True", "False"], c: 0},
{q: "39. Demand draft can be issued against cash or cheque. / डिमाण्ड ड्राफ्ट नकद/चेक से बनता है।", o: ["True", "False"], c: 0},
{q: "40. Savings must be at the top priority. / बचत प्राथमिकता होनी चाहिए।", o: ["True", "False"], c: 0},
{q: "41. Internet banking is used to pay utility bills. / बिल भुगतान हेतु नेट बैंकिंग।", o: ["True", "False"], c: 0},
{q: "42. Mudra is Micro Units Development and Refinance Agency. / मुद्रा योजना फुल फॉर्म।", o: ["True", "False"], c: 0},
{q: "43. Kishore covers loans upto 5 lakhs. / किशोर ऋण ₹ 50,000 से 5 लाख।", o: ["True", "False"], c: 0},
{q: "44. Banks act as a medium for the transfer of money. / बैंक धन हस्तांतरण का माध्यम है।", o: ["True", "False"], c: 0},
{q: "45. PMSBY is an accidental insurance scheme. / प्रधानमंत्री सुरक्षा बीमा योजना दुर्घटना बीमा है।", o: ["True", "False"], c: 0},
{q: "46. An overwritten or cheque with cutting is acceptable. / ओवरराइटिंग चेक स्वीकार्य है।", o: ["True", "False"], c: 1},
{q: "47. MICR is used for faster processing of cheques. / MICR चेक निस्तारण हेतु।", o: ["True", "False"], c: 0}
];
let curr = 0, score = 0;
function loadQuestion() {
let q = quizData[curr];
document.getElementById('q-count').innerText = "प्रश्न " + (curr + 1) + " / " + quizData.length;
document.getElementById('question').innerText = q.q;
let ops = document.getElementById('options'); ops.innerHTML = '';
q.o.forEach((o, i) => {
let div = document.createElement('div');
div.className = 'option';
div.innerText = o;
div.onclick = () => checkAnswer(i);
ops.appendChild(div);
});
document.getElementById('next-btn').style.display = 'none';
}
function checkAnswer(i) {
let q = quizData[curr];
let opts = document.querySelectorAll('.option');
if(i === q.c) { opts[i].classList.add('correct'); score++; }
else { opts[i].classList.add('wrong'); opts[q.c].classList.add('correct'); }
opts.forEach(o => o.style.pointerEvents = 'none');
document.getElementById('next-btn').style.display = 'block';
}
function nextQ() {
curr++;
if(curr < quizData.length) loadQuestion();
else {
document.getElementById('quiz-area').style.display = 'none';
document.getElementById('result').style.display = 'block';
document.getElementById('score').innerText = "आपका कुल स्कोर: " + score + " / " + quizData.length;
}
}
loadQuestion();
</script>
</body>
</html>
CCC 8-1
CCC 10-2
a Cybersecurity Quiz - Pioneer Computer Institute Pioneer Computer Institute Kaptanganj, Az...
-
1. कंप्यूटर की परिभाषा ( Definition of Computer) · कंप्यूटर एक इलेक्ट्रॉनिक गणना करने वाली मशीन ( Electronic Calculating Device) है...
-
IT Calculator FY 2025-26 Print to PDF / Page Income Tax Calculation Sheet New Tax Regime | F.Y...
-
Unified Computer Quiz (149 Questions) - English and Hindi Unified Computer Quiz (English & Hindi)...