STEM Career Finder Quiz body { font-family: Arial, sans-serif; background: #f5f7fa; margin: 0; padding: 20px; } .quiz-container { max-width: 700px; margin: auto; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); } h1, h2 { text-align: center; color: #2a3d66; } .question { margin-bottom: 20px; } button { background-color: #2a3d66; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; display: block; margin: 20px auto; } button:hover { background-color: #1b2944; } .result { padding: 15px; border-radius: 5px; background: #e8f0fe; margin-top: 20px; }

STEM Career Finder Quiz

1. Which activity sounds most exciting to you?

Building robots or designing apps
Solving puzzles and cracking codes
Mixing chemicals and experimenting in a lab
Exploring space or studying planets
Helping animals or researching nature

2. If you had a whole day to do a project, you’d…

Create a new gadget or game
Figure out how to make something work better
Test how different materials react
Build a model rocket and track its flight
Observe insects, plants, or wildlife

3. Which school subject do you enjoy most?

Technology or Computer Science
Math
Chemistry or Physics
Astronomy or Earth Science
Biology or Environmental Science

4. How do you like to solve problems?

Using technology to invent solutions
Using numbers, patterns, and logic
Running experiments and recording data
Asking big questions about the universe
Studying living things and their behaviors

5. Which career sounds the most exciting?

Software Developer or Robotics Engineer
Mathematician or Data Scientist
Chemist or Materials Engineer
Astronomer or Aerospace Engineer
Biologist or Environmental Scientist
See My STEM Career Match
function showResult() { const form = document.getElementById(‘quizForm’); const answers = new FormData(form); let counts = {A:0, B:0, C:0, D:0, E:0}; for (let value of answers.values()) { counts[value]++; } let top = Object.keys(counts).reduce((a, b) => counts[a] > counts[b] ? a : b); let resultText = ”; if (top === ‘A’) { resultText = ‘

Technology & Engineering

You\’re a builder and innovator! Possible careers: Robotics Engineer, Software Developer, Mechanical Engineer.

‘; } else if (top === ‘B’) { resultText = ‘

Mathematics & Data Science

You love numbers and patterns! Possible careers: Data Scientist, Statistician, Cryptographer.

‘; } else if (top === ‘C’) { resultText = ‘

Chemistry & Physics

You\’re curious about how things work on a molecular level! Possible careers: Chemist, Physicist, Materials Scientist.

‘; } else if (top === ‘D’) { resultText = ‘

Space & Earth Sciences

You\’re fascinated by the cosmos and our planet! Possible careers: Astronomer, Geologist, Aerospace Engineer.

‘; } else if (top === ‘E’) { resultText = ‘

Life & Environmental Sciences

You care about living things and the environment! Possible careers: Marine Biologist, Ecologist, Environmental Engineer.

‘; } document.getElementById(‘result’).innerHTML = resultText; document.getElementById(‘result’).style.display = ‘block’; }