Notes![what is notes.io? What is notes.io?](/theme/images/whatisnotesio.png)
![]() ![]() Notes - notes.io |
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Porsche Quiz</title>
</head>
<body>
<form name="Тест про Порше">
<div id="questions">
<div>
<p>1.Какая страна происхождения марки Porsche?</p>
<input type="radio" id="q1a" name="q1" value="a">
<label for="q1a">a) Швейцария</label><br>
<input type="radio" id="q1b" name="q1" value="b">
<label for="q1b">b) Венгрия</label><br>
<input type="radio" id="q1c" name="q1" value="c">
<label for="q1c">c) Германия (правильный вариант)</label><br>
</div>
<div>
<p>2.Какая из этих моделей не была выпущена под маркой Porsche?</p>
<input type="radio" id="q1a" name="q1" value="a">
<label for="q1a">a) Panamera</label><br>
<input type="radio" id="q1b" name="q1" value="b">
<label for="q1b">b) Cayenne </label><br>
<input type="radio" id="q1c" name="q1" value="c">
<label for="q1c">c) Exige (правильный вариант)</label><br>
</div>
<div>
<p>3.В каком городе находится штаб-квартира компании Porsche?</p>
<input type="radio" id="q1a" name="q1" value="a">
<label for="q1a">a) Штутгарт,Германия</label><br>
<input type="radio" id="q1b" name="q1" value="b">
<label for="q1b">b) Дебренц,Венгрия </label><br>
<input type="radio" id="q1c" name="q1" value="c">
<label for="q1c">c)Женева,Швейцария (правильный вариант)</label><br>
</div>
<div>
<p>4.Самые значимые года для компании Porsche?</p>
<input type="radio" id="q1a" name="q1" value="a">
<label for="q1a">a) 1948</label><br>
<input type="radio" id="q1b" name="q1" value="b">
<label for="q1b">b) 1926</label><br>
<input type="radio" id="q1c" name="q1" value="c">
<label for="q1c">c) 1931 (правильный вариант)</label><br>
</div>
<div>
<p>5.Какие 2 модели Porsche являются электрическими?</p>
<input type="checkbox" id="q1a" name="q1" value="a">
<label for="q1a">a) 718 Cayman</label><br>
<input type="checkbox" id="q1b" name="q1" value="b">
<label for="q1b">b) Taycan </label><br>
<input type="checkbox" id="q1c" name="q1" value="c">
<label for="q1c">c) 911 GT3 (правильный вариант)</label><br>
<input type="checkbox" id="q1d" name="q1" value="d">
<label for="q1a">d) Macan</label><br>
</div>
<p>5.Какие 2 модели Porsche являются электрическими?</p>
<input type="checkbox" id="q1a" name="q1" value="a">
<label for="q1a">a) 718 Cayman</label><br>
<input type="checkbox" id="q1b" name="q1" value="b">
<label for="q1b">b) Taycan </label><br>
<input type="checkbox" id="q1c" name="q1" value="c">
<label for="q1c">c) 911 GT3 (правильный вариант)</label><br>
<input type="checkbox" id="q1d" name="q1" value="d">
<label for="q1a">d) Macan</label><br>
</div>
<p>6.Какие 2 модели Porsche были признаны лучшими семейными автомобилями?</p>
<input type="checkbox" id="q1a" name="q1" value="a">
<label for="q1a">a) Cayenne</label><br>
<input type="checkbox" id="q1b" name="q1" value="b">
<label for="q1b">b) Taycan 4S </label><br>
<input type="checkbox" id="q1c" name="q1" value="c">
<label for="q1c">c) Panamera (правильный вариант)</label><br>
<input type="checkbox" id="q1d" name="q1" value="d">
<label for="q1a">d)Macan</label><br>
</div>
<p>7.Какие 2 модели Porsche выйграли 24 часовую гонку Ле-Мана?</p>
<input type="checkbox" id="q1a" name="q1" value="a">
<label for="q1a">a) 911 GT3</label><br>
<input type="checkbox" id="q1b" name="q1" value="b">
<label for="q1b">b) 917 </label><br>
<input type="checkbox" id="q1c" name="q1" value="c">
<label for="q1c">c)936(правильный вариант)</label><br>
<input type="checkbox" id="q1d" name="q1" value="d">
<label for="q1a">d) 718 Cayman GT4 RS</label><br>
</div>
<p>8.Сколько клапанов на каждом цилиндре у двигателя Porsche 911?</p>
<input type="text" id="q8" name="q8">
</div>
<div>
<p>9.Как называется первый автомобиль, выпущенный под маркой Porsche?</p>
<input type="text" id="q9" name="q9">
</div>
<div>
<p>10. В каком году была выпущена первая модель Porsche с кузовом "кабриолет"?</p>
<input type="text" id="q10" name="q10">
</div>
</div>
<button type="submit">Ответить на вопросы</button>
</form>
<script>
const form = document.forms['porscheQuiz'];
let currentQuestion = -1;
const questions = form.querySelectorAll('div');
function showNextQuestion() {
currentQuestion++;
if (currentQuestion < questions.length) {
questions.forEach((question, index) => {
question.style.display = index === currentQuestion ? 'block' : 'none';
});
}
}
// Показываем первый вопрос
showNextQuestion();
form.addEventListener('submit', function(event) {
event.preventDefault();
// Проверка ответов и подсчет баллов
let score = 0;
// Пример проверки ответа на первый вопрос radio
const q1Answer = form.querySelector('input[name="q1"]:checked').value;
if (q1Answer === 'c') {
score++;
}
// Аналогично для остальных вопросов
// Выводим результат
let message;
if (score === 10) {
message = "Excellent! You got all answers correct.";
} else if (score >= 7) {
message = "Great job! Your score is 4.";
} else if (score >= 5) {
message = "Good effort! Your score is 3.";
} else {
message = "You can do better! Your score is below 3.";
}
alert(message);
});
</script>
</body>
</html>
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team