Skip to main content

Double Major

Should You Double Major? 🧭

Rate each statement from 1 (Strongly Disagree) to 5 (Strongly Agree). When finished, click "Get My Result" to see your recommendation.

🧠 Motivation & Purpose

1. I have clear goals for why I want to double major.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       2. I am passionate about both subjects.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       3. I believe both majors relate to my career or grad school plans.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       4. I'm not doing this just because it "looks good" or others suggest it.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       

📈 Graduation & Finances

5. I can finish both majors on time.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       6. I understand the financial impact.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       7. I’m okay taking extra classes if needed.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       

⚖️ Balance & Opportunities

8. I will still have time for internships or campus involvement.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       9. I can handle the added academic workload.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       10. I’ve thought about what I may need to sacrifice to do this.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       

🔄 Alternatives & Advice

11. I’ve explored alternatives like a minor or certificate.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       12. I’ve talked to an advisor or career coach.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       13. I know employers often care more about experience than a second major.        Select        Strongly Agree (5)        Agree (4)        Neutral (3)        Disagree (2)        Strongly Disagree (1)       

 

function calculateScore() { let total = 0; const selects = document.querySelectorAll("select"); for (let select of selects) { let val = parseInt(select.value); if (isNaN(val) || val === 0) { alert("Please answer all questions before submitting."); return; } total += val; } let resultBox = document.getElementById("result"); resultBox.className = ""; if (total >= 55) { resultBox.classList.add("green"); resultBox.innerHTML = `🟢 <strong>You're ready to double major — with purpose!</strong><br>You’ve thought this through and your goals align. Stay in touch with your advisor to stay on track.`; } else if (total >= 40) { resultBox.classList.add("yellow"); resultBox.innerHTML = `🟡 <strong>Think it through a little more.</strong><br>You’re on the right track, but consider alternatives and speak to an advisor to refine your plan.`; } else { resultBox.classList.add("red"); resultBox.innerHTML = `🔴 <strong>Pause and reconsider.</strong><br>A double major might not be the best fit right now. Look into minors, certificates, or experiences that align with your goals.`; } }