MCQs for Physician Assistants (PAs) and Registered Nurses (RNs)
Health Quiz
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.quiz-container {
max-width: 600px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
}
.quiz-question {
margin-bottom: 20px;
}
.quiz-options label {
display: block;
margin-bottom: 10px;
}
.quiz-button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.quiz-button:hover {
background-color: #45a049;
}
.result {
margin-top: 20px;
font-weight: bold;
}
Health Quiz
1. Which class of drugs is most commonly used to treat hypertension?
2. Which of the following is a common symptom of myocardial infarction?
3. In patients with Type 1 Diabetes Mellitus, which is the primary treatment?
4. Which of the following conditions is characterized by inflammation of the liver?
5. Which of the following is a hallmark sign of Parkinson’s disease?
6. Chronic Obstructive Pulmonary Disease (COPD) is primarily associated with:
7. Which organism is most commonly responsible for community-acquired pneumonia?
8. Which electrolyte imbalance is commonly seen in chronic kidney disease?
9. A “bullseye” rash is characteristic of which condition?
10. Which of the following is a common complication of pregnancy-induced hypertension?
function checkAnswers() {
const answers = [‘A’, ‘C’, ‘B’, ‘C’, ‘B’, ‘B’, ‘B’, ‘B’, ‘C’, ‘C’];
let score = 0;
for (let i = 1; i <= 10; i++) {
const radios = document.getElementsByName('q' + i);
for (const radio of radios) {
if (radio.checked && radio.value === answers[i – 1]) {
score++;
break;
}
}
}
document.getElementById('result').innerText = 'Your score is: ' + score + '/10';
}
..
