<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MiFID II Chapter 1-2 Quiz</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.quiz-container {
width: 100%;
max-width: 800px;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
overflow: hidden;
position: relative;
}
.header {
background: linear-gradient(90deg, #1a2a6c, #2c3e50);
color: white;
padding: 25px;
text-align: center;
position: relative;
}
.header h1 {
font-size: 1.8rem;
margin-bottom: 10px;
}
.language-toggle {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 15px;
}
.lang-btn {
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
padding: 8px 20px;
border-radius: 50px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
.lang-btn.active {
background: white;
color: #1a2a6c;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.progress-container {
background: rgba(255, 255, 255, 0.3);
height: 8px;
border-radius: 4px;
margin-top: 20px;
overflow: hidden;
}
.progress-bar {
height: 100%;
background: #4CAF50;
width: 0%;
transition: width 0.5s ease;
}
.question-container {
padding: 30px;
min-height: 400px;
}
.question-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
.question-number {
background: #1a2a6c;
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.2rem;
}
.question-text {
font-size: 1.3rem;
line-height: 1.5;
margin-bottom: 30px;
color: #2c3e50;
font-weight: 600;
}
.options-container {
display: flex;
flex-direction: column;
gap: 15px;
}
.option {
padding: 16px 20px;
background: #f8f9fa;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid #e9ecef;
display: flex;
align-items: center;
gap: 12px;
}
.option:hover {
background: #e9ecef;
transform: translateY(-2px);
}
.option.selected {
border-color: #1a2a6c;
background: #e3f2fd;
}
.option.correct {
border-color: #4CAF50;
background: #e8f5e9;
}
.option.incorrect {
border-color: #f44336;
background: #ffebee;
}
.option-letter {
background: #1a2a6c;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.option-text {
flex: 1;
}
.navigation {
display: flex;
justify-content: space-between;
padding: 20px 30px;
border-top: 1px solid #e9ecef;
}
.nav-btn {
padding: 12px 30px;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
}
.prev-btn {
background: #e9ecef;
color: #495057;
}
.prev-btn:hover {
background: #dee2e6;
}
.next-btn, .submit-btn {
background: #1a2a6c;
color: white;
}
.next-btn:hover, .submit-btn:hover {
background: #152256;
transform: translateY(-2px);
}
.submit-btn {
background: #4CAF50;
}
.submit-btn:hover {
background: #388E3C;
}
.results-container {
padding: 30px;
text-align: center;
}
.score-circle {
width: 180px;
height: 180px;
border-radius: 50%;
background: #4CAF50;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0 auto 30px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.score-text {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 5px;
}
.score-value {
font-size: 3.5rem;
font-weight: 700;
}
.score-message {
font-size: 1.5rem;
color: #2c3e50;
margin-bottom: 30px;
font-weight: 600;
}
.restart-btn {
padding: 14px 40px;
background: #1a2a6c;
color: white;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
margin: 0 auto;
}
.restart-btn:hover {
background: #152256;
transform: translateY(-3px);
}
.hidden {
display: none;
}
@media (max-width: 768px) {
.quiz-container {
border-radius: 15px;
}
.header h1 {
font-size: 1.5rem;
}
.question-container {
padding: 20px;
}
.question-text {
font-size: 1.1rem;
}
.option {
padding: 12px 15px;
}
.nav-btn {
padding: 10px 20px;
}
}
</style>
</head>
<body>
<div class="quiz-container">
<div class="header">
<h1><i class="fas fa-graduation-cap"></i> MiFID II Chapter 1-2 Quiz</h1>
<div class="language-toggle">
<button id="lang-en" class="lang-btn active">
<i class="fas fa-language"></i> English
</button>
<button id="lang-el" class="lang-btn">
<i class="fas fa-language"></i> Ελληνικά
</button>
</div>
<div class="progress-container">
<div class="progress-bar" id="progress-bar"></div>
</div>
</div>
<div id="quiz-content">
<div class="question-container">
<div class="question-header">
<div class="question-number" id="question-number">1</div>
</div>
<div class="question-text" id="question-text"></div>
<div class="options-container" id="options-container"></div>
</div>
<div class="navigation">
<button id="prev-btn" class="nav-btn prev-btn">
<i class="fas fa-arrow-left"></i> Previous
</button>
<button id="next-btn" class="nav-btn next-btn">
Next <i class="fas fa-arrow-right"></i>
</button>
<button id="submit-btn" class="nav-btn submit-btn hidden">
Submit <i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
<div id="results-container" class="results-container hidden">
<div class="score-circle">
<div class="score-text">Your Score</div>
<div class="score-value" id="score-value">0%</div>
</div>
<div class="score-message" id="score-message"></div>
<button id="restart-btn" class="restart-btn">
<i class="fas fa-redo"></i> Restart Quiz
</button>
</div>
</div>
<script>
const quizData = {
en: [
{
question: "Which two Cypriot authorities are explicitly designated as competent under MiFID II for supervising investment services?",
options: [
"Ministry of Finance and Cyprus Stock Exchange",
"Cyprus Securities and Exchange Commission (CySEC) and Central Bank of Cyprus",
"Financial Intelligence Unit and Auditor General",
"European Banking Authority and CySEC"
],
answer: 1
},
{
question: "Under the Cypriot regime, within how many months must CySEC decide on an application for an initial operating licence for a CIF?",
options: [
"3 months",
"6 months",
"9 months",
"12 months"
],
answer: 1
},
{
question: "A CIF that fails to use its licence for 12 consecutive months may face which regulatory consequence?",
options: [
"Licence suspension for 6 months",
"Automatic downgrade to tied-agent status",
"Licence revocation",
"Administrative fine only"
],
answer: 2
},
{
question: "Which of the following is NOT listed as an exemption from the scope of Law 87(I)/2017?",
options: [
"EU central banks",
"Collective investment undertakings",
"Insurance intermediaries performing MiFID services exclusively for their parent",
"High-frequency proprietary traders"
],
answer: 3
},
{
question: "When appointing tied agents, the CIF remains:",
options: [
"Jointly and severally liable only for advice",
"Fully and unconditionally liable for all acts and omissions",
"Liable only if the agent is not registered in a public register",
"Exempt from liability where the agent operates outside Cyprus"
],
answer: 1
},
{
question: "What is the minimum percentage of SME issuers required for a market to qualify as an SME Growth Market under CySEC rules?",
options: [
"30 %",
"40 %",
"50 %",
"60 %"
],
answer: 2
},
{
question: "Which criterion must an issuer without listed shares satisfy to be classified as an SME?",
options: [
"< 250 employees AND balance sheet ≤ €35 m AND turnover ≤ €40 m",
"< 250 employees OR balance sheet ≤ €43 m OR turnover ≤ €50 m",
"< 200 employees AND balance sheet ≤ €50 m AND turnover ≤ €50 m",
"< 300 employees OR balance sheet ≤ €40 m OR turnover ≤ €45 m"
],
answer: 1
},
{
question: "A regulated market must establish rules ensuring that issuers publish annual financial reports within how many months after year-end?",
options: [
"3 months",
"4 months",
"5 months",
"6 months"
],
answer: 3
},
{
question: "Which of the following signals is explicitly listed as a potential indicator of market manipulation under MiFID II?",
options: [
"Consistently high trading volume",
"Marking the close to influence reference prices",
"Use of algorithmic strategies",
"Cross-listing on multiple venues"
],
answer: 1
},
{
question: "Direct electronic access to a regulated market may only be provided to:",
options: [
"Any registered broker",
"Approved investment firms (CIFs or EU equivalents)",
"Retail clients with adequate experience",
"Market-makers exclusively"
],
answer: 1
}
],
el: [
{
question: "Ποιες δύο αρχές της Κύπρου έχουν οριστεί ως αρμόδιες υπό το MiFID II για την εποπτεία των επενδυτικών υπηρεσιών;",
options: [
"Υπουργείο Οικονομικών και Χρηματιστήριο Κύπρου",
"Επιτροπή Κεφαλαιαγοράς Κύπρου (CySEC) και Κεντρική Τράπεζα της Κύπρου",
"Μονάδα Χρηματοοικονομικής Αστυνόμευσης και Γενικός Ελεγκτής",
"Ευρωπαϊκή Αρχή Τραπεζών και CySEC"
],
answer: 1
},
{
question: "Σύμφωνα με το κυπριακό πλαίσιο, εντός πόσων μηνών η CySEC οφείλει να αποφασίσει για αίτηση αρχικής άδειας λειτουργίας ΚΕΠΕΥ;",
options: [
"3 μήνες",
"6 μήνες",
"9 μήνες",
"12 μήνες"
],
answer: 1
},
{
question: "ΚΕΠΕΥ που δεν χρησιμοποιεί την άδειά της για 12 συνεχείς μήνες ενδέχεται να αντιμετωπίσει ποιο ρυθμιστικό μέτρο;",
options: [
"Αναστολή για 6 μήνες",
"Αυτόματη υποβάθμιση σε συνδεδεμένο αντιπρόσωπο",
"Ανάκληση άδειας",
"Διοικητικό πρόστιμο μόνο"
],
answer: 2
},
{
question: "Ποιο από τα παρακάτω ΔΕΝ αναφέρεται ως εξαίρεση από το πεδίο εφαρμογής του Νόμου 87(I)/2017;",
options: [
"Κεντρικές τράπεζες της ΕΕ",
"Οργανισμοί συλλογικών επενδύσεων",
"Ασφαλιστικοί διαμεσολαβητές που παρέχουν υπηρεσίες αποκλειστικά για τη μητρική τους",
"Ιδιώτες διαπραγματευτές υψηλής συχνότητας"
],
answer: 3
},
{
question: "Κατά τον διορισμό συνδεδεμένων αντιπροσώπων, η ΚΕΠΕΥ παραμένει:",
options: [
"Από κοινού υπεύθυνη μόνο για συμβουλές",
"Πλήρως και απόλυτα υπεύθυνη για όλες τις πράξεις και παραλείψεις",
"Υπεύθυνη μόνο εάν ο αντιπρόσωπος δεν είναι εγγεγραμμένος σε δημόσιο μητρώο",
"Απαλλαγμένη ευθύνης όταν δρα εκτός Κύπρου"
],
answer: 1
},
{
question: "Ποιο είναι το ελάχιστο ποσοστό εκδοτών-ΜΜΕ που απαιτείται για να χαρακτηριστεί μια αγορά ως «Αγορά Ανάπτυξης ΜΜΕ»;",
options: [
"30 %",
"40 %",
"50 %",
"60 %"
],
answer: 2
},
{
question: "Ποιο κριτήριο πρέπει να πληροί εκδότης χωρίς εισηγμένες μετοχές για να θεωρηθεί ΜΜΕ;",
options: [
"< 250 εργαζόμενοι ΚΑΙ ισολογισμός ≤ €35 εκ. ΚΑΙ τζίρος ≤ €40 εκ.",
"< 250 εργαζόμενοι Ή ισολογισμός ≤ €43 εκ. Ή τζίρος ≤ €50 εκ.",
"< 200 εργαζόμενοι ΚΑΙ ισολογισμός ≤ €50 εκ. ΚΑΙ τζίρος ≤ €50 εκ.",
"< 300 εργαζόμενοι Ή ισολογισμός ≤ €40 εκ. Ή τζίρος ≤ €45 εκ."
],
answer: 1
},
{
question: "Μια ρυθμιζόμενη αγορά οφείλει να θεσπίσει κανόνες που να υποχρεώνουν τους εκδότες να δημοσιεύουν ετήσιες οικονομικές εκθέσεις το αργότερο εντός πόσων μηνών από το τέλος του οικονομικού έτους;",
options: [
"3 μηνών",
"4 μηνών",
"5 μηνών",
"6 μηνών"
],
answer: 3
},
{
question: "Ποιο από τα παρακάτω σήματα αναφέρεται ρητά ως ενδεχόμενο δείκτη χειραγώγησης αγοράς;",
options: [
"Σταθερά υψηλός όγκος συναλλαγών",
"«Marking the close» για επηρεασμό τιμών αναφοράς",
"Χρήση αλγοριθμικών στρατηγικών γενικά",
"Διπλή εισαγωγή σε πολλαπλές αγορές"
],
answer: 1
},
{
question: "Η απευθείας ηλεκτρονική πρόσβαση σε ρυθμιζόμενη αγορά επιτρέπεται μόνο σε:",
options: [
"Οποιονδήποτε εγγεγραμμένο χρηματιστή",
"Εγκεκριμένες ΕΠΕΥ ή ισοδύναμες εταιρείες της ΕΕ",
"Λιανικούς πελάτες με επαρκή εμπειρία",
"Αποκλειστικά σε market-makers"
],
answer: 1
}
]
};
let currentLanguage = 'en';
let currentQuestion = 0;
let userAnswers = Array(quizData.en.length).fill(null);
let quizSubmitted = false;
const langEnBtn = document.getElementById('lang-en');
const langElBtn = document.getElementById('lang-el');
const progressBar = document.getElementById('progress-bar');
const questionNumber = document.getElementById('question-number');
const questionText = document.getElementById('question-text');
const optionsContainer = document.getElementById('options-container');
const prevBtn = document.getElementById('prev-btn');
const nextBtn = document.getElementById('next-btn');
const submitBtn = document.getElementById('submit-btn');
const quizContent = document.getElementById('quiz-content');
const resultsContainer = document.getElementById('results-container');
const scoreValue = document.getElementById('score-value');
const scoreMessage = document.getElementById('score-message');
const restartBtn = document.getElementById('restart-btn');
function initQuiz() {
setLanguage(currentLanguage);
updateProgressBar();
renderQuestion();
updateNavigation();
}
function setLanguage(lang) {
currentLanguage = lang;
if (lang === 'en') {
langEnBtn.classList.add('active');
langElBtn.classList.remove('active');
prevBtn.innerHTML = '<i class="fas fa-arrow-left"></i> Previous';
nextBtn.innerHTML = 'Next <i class="fas fa-arrow-right"></i>';
submitBtn.innerHTML = 'Submit <i class="fas fa-paper-plane"></i>';
restartBtn.innerHTML = '<i class="fas fa-redo"></i> Restart Quiz';
} else {
langElBtn.classList.add('active');
langEnBtn.classList.remove('active');
prevBtn.innerHTML = '<i class="fas fa-arrow-left"></i> Προηγούμενη';
nextBtn.innerHTML = 'Επόμενη <i class="fas fa-arrow-right"></i>';
submitBtn.innerHTML = 'Υποβολή <i class="fas fa-paper-plane"></i>';
restartBtn.innerHTML = '<i class="fas fa-redo"></i> Επανεκκίνηση';
}
renderQuestion();
}
function updateProgressBar() {
const answeredQuestions = userAnswers.filter(answer => answer !== null).length;
const totalQuestions = quizData[currentLanguage].length;
const progress = (answeredQuestions / totalQuestions) * 100;
progressBar.style.width = `${progress}%`;
}
function renderQuestion() {
const questions = quizData[currentLanguage];
const question = questions[currentQuestion];
questionNumber.textContent = currentQuestion + 1;
questionText.textContent = question.question;
optionsContainer.innerHTML = '';
const letters = ['A', 'B', 'C', 'D'];
question.options.forEach((option, index) => {
const optionElement = document.createElement('div');
optionElement.classList.add('option');
if (quizSubmitted) {
if (index === question.answer) {
optionElement.classList.add('correct');
} else if (userAnswers[currentQuestion] === index) {
optionElement.classList.add('incorrect');
}
}
if (userAnswers[currentQuestion] === index) {
optionElement.classList.add('selected');
}
optionElement.innerHTML = `
<div class="option-letter">${letters[index]}</div>
<div class="option-text">${option}</div>
`;
if (!quizSubmitted) {
optionElement.addEventListener('click', () => {
selectOption(index);
});
}
optionsContainer.appendChild(optionElement);
});
}
function selectOption(index) {
userAnswers[currentQuestion] = index;
renderQuestion();
updateProgressBar();
updateNavigation();
}
function updateNavigation() {
const questions = quizData[currentLanguage];
if (currentQuestion === 0) {
prevBtn.classList.add('hidden');
} else {
prevBtn.classList.remove('hidden');
}
if (currentQuestion === questions.length - 1 && userAnswers[currentQuestion] !== null) {
nextBtn.classList.add('hidden');
submitBtn.classList.remove('hidden');
} else {
nextBtn.classList.remove('hidden');
submitBtn.classList.add('hidden');
}
}
function nextQuestion() {
if (currentQuestion < quizData[currentLanguage].length - 1) {
currentQuestion++;
renderQuestion();
updateNavigation();
}
}
function prevQuestion() {
if (currentQuestion > 0) {
currentQuestion--;
renderQuestion();
updateNavigation();
}
}
function submitQuiz() {
quizSubmitted = true;
const questions = quizData[currentLanguage];
let correctCount = 0;
userAnswers.forEach((answer, index) => {
if (answer === questions[index].answer) {
correctCount++;
}
});
const score = Math.round((correctCount / questions.length) * 100);
quizContent.classList.add('hidden');
resultsContainer.classList.remove('hidden');
scoreValue.textContent = `${score}%`;
if (score >= 90) {
scoreMessage.textContent = currentLanguage === 'en'
? 'Excellent! You have a thorough understanding of MiFID II Chapter 1-2.'
: 'Εξαιρετικά! Έχετε βαθιά κατανόηση του MiFID II Κεφαλαίων 1-2.';
} else if (score >= 70) {
scoreMessage.textContent = currentLanguage === 'en'
? 'Good job! You have a solid understanding of MiFID II Chapter 1-2.'
: 'Καλή δουλειά! Έχετε σταθερή κατανόηση του MiFID II Κεφαλαίων 1-2.';
} else if (score >= 50) {
scoreMessage.textContent = currentLanguage === 'en'
? 'Fair. Consider reviewing MiFID II Chapter 1-2 materials again.'
: 'Μέτρια. Εξετάστε το ενδεχόμενο επανάληψης της ύλης των Κεφαλαίων 1-2 του MiFID II.';
} else {
scoreMessage.textContent = currentLanguage === 'en'
? 'Needs improvement. Please review MiFID II Chapter 1-2 materials.'
: 'Χρειάζεται βελτίωση. Παρακαλούμε επαναλάβετε την ύλη των Κεφαλαίων 1-2 του MiFID II.';
}
}
function restartQuiz() {
currentQuestion = 0;
userAnswers = Array(quizData.en.length).fill(null);
quizSubmitted = false;
resultsContainer.classList.add('hidden');
quizContent.classList.remove('hidden');
updateProgressBar();
renderQuestion();
updateNavigation();
}
langEnBtn.addEventListener('click', () => {
if (currentLanguage !== 'en') {
setLanguage('en');
}
});
langElBtn.addEventListener('click', () => {
if (currentLanguage !== 'el') {
setLanguage('el');
}
});
nextBtn.addEventListener('click', nextQuestion);
prevBtn.addEventListener('click', prevQuestion);
submitBtn.addEventListener('click', submitQuiz);
restartBtn.addEventListener('click', restartQuiz);
initQuiz();
</script>
</body>
</html>