こんな感じでいかがでしょうか? (HTMLを読める人が見たら、答えはバレてしまいます。)
https://codepen.io/new1ro/pen/qBdKoVJ
HTML
1<section>
2 <p>問題1: 1 + 1の答えは何ですか?</p>
3 <div class="flex">
4 <select class="answer" id="answer-0" data-answer="2">
5 <option>選択してくだい</option>
6 <option value="1">1</option>
7 <option value="2">2</option>
8 <option value="3">3</option>
9 <option value="4">4</option>
10 </select>
11 <p class="result" id="result-0"></p>
12 </div>
13</section>
14<section>
15 <p>問題2: 初代征夷大将軍は誰ですか?</p>
16 <div class="flex">
17 <select class="answer" id="answer-1" data-answer="4">
18 <option>選択してくだい</option>
19 <option value="1">徳川 家康</option>
20 <option value="2">織田 信長</option>
21 <option value="3">ナポレオン・ボナパルト</option>
22 <option value="4">坂上田村麻呂</option>
23 </select>
24 <p class="result" id="result-1"></p>
25 </div>
26</section>
27
28<footer>
29 <button type="button" id="submit" class="btn">採点</button>
30</footer>
CSS
1footer {
2 margin-top: 40px;
3}
4.flex {
5 display: flex;
6 align-items: center;
7}
8.result {
9 margin-left: 1em;
10 padding: 5px;
11 min-width: 100px;
12 min-height: 1em;
13 background: #eee;
14}
JS
1document.getElementById('submit').addEventListener('click', function(e) {
2 // alert(e.currentTarget.value);
3
4 elmResults = document.getElementsByClassName('result');
5 elmAnswers = document.getElementsByClassName('answer');
6
7 for (var i = 0, len = elmResults.length; i < len; i++) {
8 if (elmAnswers[i].value == elmAnswers[i].getAttribute('data-answer')) {
9 elmResults[i].innerText = '○';
10 }
11 else {
12 elmResults[i].innerText = '×';
13 }
14 }
15});