Country And Currency Mock Test
বিভিন্ন চাকরি পরীক্ষায় আসে এমন কতগুলি দেশের মুদ্রার নাম থেকে মক টেস্ট তৈরি করা হয়েছে । Country and Currency Mock Test Free Online এর মাধ্যমে আপনারা বিভিন্ন প্রস্তুতিমূলক পরীক্ষার জন্য তৈরি হতে পারবেন।
<!–✅ Bengali Text Stored Safely in to keep UTF-8–>
[
{“q”:”পেরুর মুদ্রার নাম কী?”,”a”:”সোল”,”o”:[“পেসো”,”ডলার”,”সোল”,”রুপী”]},
{“q”:”চিলির মুদ্রার নাম কী?”,”a”:”পেসো”,”o”:[“ক্রোনি”,”পেসো”,”লিরা”,”দিরহাম”]},
{“q”:”পাকিস্তানের মুদ্রার নাম কী?”,”a”:”রুপী”,”o”:[“রুপী”,”ওন”,”ইয়ান”,”কোলন”]},
{“q”:”চীনের মুদ্রার নাম কী?”,”a”:”ইয়ান”,”o”:[“রিংগিট”,”ইয়ান”,”পাউন্ড”,”ডলার”]},
{“q”:”নরওয়ের মুদ্রার নাম কী?”,”a”:”ক্রোনি”,”o”:[“ক্রোনি”,”পেসো”,”লিরা”,”রুপী”]},
{“q”:”কলম্বিয়ার মুদ্রার নাম কী?”,”a”:”পেসো”,”o”:[“পেসো”,”দিরহাম”,”ওন”,”কায়াৎ”]},
{“q”:”নিউজিল্যান্ডের মুদ্রার নাম কী?”,”a”:”ডলার”,”o”:[“ডলার”,”রিংগিট”,”ক্রোনি”,”কোলন”]},
{“q”:”কোস্টারিকার মুদ্রার নাম কী?”,”a”:”কোলন”,”o”:[“কোলন”,”রুপী”,”পেসো”,”ওন”]},
{“q”:”নামিবিয়ার মুদ্রার নাম কী?”,”a”:”র্যান্ড”,”o”:[“র্যান্ড”,”ডলার”,”লিরা”,”পাউন্ড”]},
{“q”:”কিউবার মুদ্রার নাম কী?”,”a”:”পেসো”,”o”:[“পেসো”,”ক্রোনি”,”কায়াৎ”,”দিরহাম”]},
{“q”:”মেক্সিকোর মুদ্রার নাম কী?”,”a”:”পেসো”,”o”:[“ডলার”,”পেসো”,”রিংগিট”,”ওন”]},
{“q”:”চেকোশ্লোভাকিয়ার মুদ্রার নাম কী?”,”a”:”করনা”,”o”:[“করনা”,”পেসো”,”রুপী”,”লিরা”]},
{“q”:”মালয়েশিয়ার মুদ্রার নাম কী?”,”a”:”রিংগিট”,”o”:[“রিংগিট”,”কোলন”,”ডলার”,”ওন”]},
{“q”:”ইথিওপিয়ার মুদ্রার নাম কী?”,”a”:”ডলার”,”o”:[“ডলার”,”র্যান্ড”,”পেসো”,”ক্রোনি”]},
{“q”:”মায়ানমারের মুদ্রার নাম কী?”,”a”:”কায়াৎ”,”o”:[“কায়াৎ”,”রুপী”,”লিরা”,”দিরহাম”]},
{“q”:”ভারতের মুদ্রার নাম কী?”,”a”:”রুপী”,”o”:[“রুপী”,”পাউন্ড”,”ইয়ান”,”ডলার”]},
{“q”:”তুরস্কের মুদ্রার নাম কী?”,”a”:”লিরা”,”o”:[“লিরা”,”পেসো”,”রিংগিট”,”ক্রোনি”]},
{“q”:”লেবাননের মুদ্রার নাম কী?”,”a”:”পাউন্ড”,”o”:[“পাউন্ড”,”দিরহাম”,”ওন”,”রুপী”]},
{“q”:”ইউএই-এর মুদ্রার নাম কী?”,”a”:”দিরহাম”,”o”:[“দিরহাম”,”পেসো”,”লিরা”,”কোলন”]},
{“q”:”কোরিয়ার মুদ্রার নাম কী?”,”a”:”ওন”,”o”:[“ওন”,”রিংগিট”,”ডলার”,”ক্রোনি”]},
{“q”:”উরুগুয়ের মুদ্রার নাম কী?”,”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;”;
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’;
}
}
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();
});
.faq-wrap {
max-width: 800px;
margin: 25px auto;
font-family: Arial, sans-serif;
}
.faq-heading {
font-size: 22px;
font-weight: bold;
margin-bottom: 12px;
border-left: 4px solid #ff5722;
padding-left: 10px;
}
.faq-item {
border-bottom: 1px solid #ddd;
}
.faq-q {
width: 100%;
padding: 14px;
background: #f8f8f8;
border: none;
text-align: left;
font-size: 16px;
cursor: pointer;
font-weight: 600;
transition: 0.3s;
}
.faq-q:hover {
background: #eeeeee;
}
.faq-a {
display: none;
padding: 10px 14px;
font-size: 15px;
background: #fff;
}
.faq-q.active {
background: #ffe0d6;
}
(adsbygoogle = window.adsbygoogle || []).push({});
document.querySelectorAll(“.faq-q”).forEach(btn => {
btn.addEventListener(“click”, () => {
btn.classList.toggle(“active”);
let ans = btn.nextElementSibling;
ans.style.display = ans.style.display === “block” ? “none” : “block”;
});
});
.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”: “ভারতের মুদ্রার নাম কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “ভারতের মুদ্রার নাম রুপী।”
}
},
{
“@type”: “Question”,
“name”: “চীনের মুদ্রার নাম কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “চীনের মুদ্রার নাম ইয়ান।”
}
},
{
“@type”: “Question”,
“name”: “নিউজিল্যান্ডের মুদ্রার নাম কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “নিউজিল্যান্ডের মুদ্রার নাম ডলার।”
}
},
{
“@type”: “Question”,
“name”: “মালয়েশিয়ার মুদ্রার নাম কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “মালয়েশিয়ার মুদ্রার নাম রিংগিট।”
}
},
{
“@type”: “Question”,
“name”: “ইউএই-এর মুদ্রার নাম কী?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “ইউএই-এর মুদ্রার নাম দিরহাম।”
}
}
]
}
