Which type of computer is used for server applications? body { font-family: Arial, sans-serif; background: #f9f9f9; padding: 30px; } .mcq-box { background: #fff; border-radius: 10px; padding: 20px; max-width: 600px; margin: auto; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } .mcq-title { font-size: 20px; font-weight: bold; margin-bottom: 15px; color: #333; } .options label { display: block; margin: 10px 0; cursor: pointer; } button { margin-top: 15px; padding: 10px 20px; border: none; border-radius: 5px; background: #007bff; color: white; font-size: 16px; cursor: pointer; } button:hover { background: #0056b3; } .result { margin-top: 15px; font-weight: bold; font-size: 18px; } Which type of computer is used for server applications? a) Rack server b) Gaming computer c) Desktop computer d) Workstation computer Check Answer function checkAnswer() { const selected = document.querySelector('input[name="answer"]:checked'); const result = document.getElementById('result'); if (!selected) { result.innerHTML = "⚠ Please select an answer!"; result.style.color = "orange"; return; } if (selected.value === "a") { result.innerHTML = "✅ Correct! Rack server is used for server applications."; result.style.color = "green"; } else { result.innerHTML = "❌ Wrong! Correct answer is: Rack server."; result.style.color = "red"; } }