{"id":82,"date":"2026-02-18T15:02:54","date_gmt":"2026-02-18T15:02:54","guid":{"rendered":"https:\/\/www.aumarketwatch.com\/learn\/?p=82"},"modified":"2026-02-18T15:02:53","modified_gmt":"2026-02-18T15:02:53","slug":"bull-vs-bear-market-quiz-can-you-spot-the-trend","status":"publish","type":"post","link":"https:\/\/www.aumarketwatch.com\/learn\/bull-vs-bear-market-quiz-can-you-spot-the-trend\/","title":{"rendered":"Bull vs Bear Market Quiz \u2013 Can You Spot the Trend?"},"content":{"rendered":"<p style=\"text-align: justify;\">Understanding whether the market is in a <a href=\"https:\/\/www.aumarketwatch.com\/learn\/bulls-vs-bears-market-what-do-they-mean\/\"><strong>bull phase<\/strong> or a <strong>bear phase<\/strong><\/a> is one of the most important skills for any investor in Australia.<\/p>\n<p style=\"text-align: justify;\">The Bull vs Bear Quiz is an interactive stock market learning game designed to help beginners quickly recognise market conditions based on real-world scenarios.<\/p>\n<p style=\"text-align: justify;\">If you&#8217;re planning to invest on the ASX, knowing the difference between rising and falling markets can help you make smarter decisions.<\/p>\n<h3>What Is a Bull Market?<\/h3>\n<p>A bull market occurs when:<\/p>\n<ul>\n<li>Share prices are rising steadily<\/li>\n<li>Investor confidence is strong<\/li>\n<li>Economic growth is improving<\/li>\n<li>Company profits are increasing<\/li>\n<\/ul>\n<p>In a bull market, optimism drives buying activity.<\/p>\n<h4>What Is a Bear Market?<\/h4>\n<p>A bear market happens when:<\/p>\n<ul>\n<li>Share prices fall by 20% or more<\/li>\n<li>Investors become fearful<\/li>\n<li>Economic data weakens<\/li>\n<li>Selling pressure increases<\/li>\n<\/ul>\n<p>In a bear market, pessimism dominates.<\/p>\n<div id=\"bullBearGame\">\r\n  <h2>\ud83d\udc02\ud83d\udc3b Bull vs Bear Market Quiz<\/h2>\r\n  <div id=\"scenarioBox\">\r\n    <p id=\"scenarioText\"><\/p>\r\n    <div id=\"choices\"><\/div>\r\n  <\/div>\r\n  <p id=\"result\"><\/p>\r\n  <p id=\"scoreDisplay\"><\/p>\r\n  <button id=\"nextButton\" style=\"display:none;\">Next Scenario<\/button>\r\n  <button id=\"restartButton\" style=\"display:none;\">Restart Quiz<\/button>\r\n<\/div>\r\n\r\n<style>\r\n#bullBearGame {\r\n  max-width: 650px;\r\n  margin: 20px auto;\r\n  padding: 20px;\r\n  background: #f4f9ff;\r\n  border-radius: 10px;\r\n  font-family: Arial, sans-serif;\r\n  box-shadow: 0 4px 10px rgba(0,0,0,0.1);\r\n}\r\n#bullBearGame h2 {\r\n  text-align: center;\r\n}\r\n#choices button {\r\n  width: 100%;\r\n  padding: 10px;\r\n  margin: 8px 0;\r\n  border: none;\r\n  border-radius: 5px;\r\n  cursor: pointer;\r\n  font-size: 14px;\r\n  background-color: #0073aa;\r\n  color: white;\r\n}\r\n#choices button:hover {\r\n  background-color: #005177;\r\n}\r\n#result {\r\n  font-weight: bold;\r\n  margin-top: 10px;\r\n}\r\n#nextButton, #restartButton {\r\n  margin-top: 15px;\r\n  padding: 8px 12px;\r\n  border: none;\r\n  border-radius: 5px;\r\n  background: #28a745;\r\n  color: white;\r\n  cursor: pointer;\r\n}\r\n#nextButton:hover, #restartButton:hover {\r\n  background: #1e7e34;\r\n}\r\n<\/style>\r\n\r\n<script>\r\nconst scenarios = [\r\n  {\r\n    text: \"ASX 200 rises steadily for 8 months as company profits grow and unemployment falls.\",\r\n    answer: \"Bull\"\r\n  },\r\n  {\r\n    text: \"The market drops 25% in 6 months amid recession fears and weak economic data.\",\r\n    answer: \"Bear\"\r\n  },\r\n  {\r\n    text: \"Investor confidence improves and banks report record earnings.\",\r\n    answer: \"Bull\"\r\n  },\r\n  {\r\n    text: \"Global crisis causes heavy selling and panic across sectors.\",\r\n    answer: \"Bear\"\r\n  },\r\n  {\r\n    text: \"Mining and banking stocks rally strongly as demand increases.\",\r\n    answer: \"Bull\"\r\n  },\r\n  {\r\n    text: \"Interest rates rise sharply and share prices decline consistently.\",\r\n    answer: \"Bear\"\r\n  },\r\n  {\r\n    text: \"Retail investors increase buying activity and market momentum strengthens.\",\r\n    answer: \"Bull\"\r\n  },\r\n  {\r\n    text: \"Corporate earnings fall and investors move money into safer assets.\",\r\n    answer: \"Bear\"\r\n  }\r\n];\r\n\r\nlet current = 0;\r\nlet score = 0;\r\n\r\nconst scenarioText = document.getElementById(\"scenarioText\");\r\nconst choicesDiv = document.getElementById(\"choices\");\r\nconst result = document.getElementById(\"result\");\r\nconst scoreDisplay = document.getElementById(\"scoreDisplay\");\r\nconst nextButton = document.getElementById(\"nextButton\");\r\nconst restartButton = document.getElementById(\"restartButton\");\r\n\r\nfunction loadScenario() {\r\n  result.textContent = \"\";\r\n  nextButton.style.display = \"none\";\r\n  const scenario = scenarios[current];\r\n  scenarioText.textContent = \"Scenario \" + (current + 1) + \": \" + scenario.text;\r\n  choicesDiv.innerHTML = \"\";\r\n\r\n  [\"Bull\", \"Bear\"].forEach(choice => {\r\n    const btn = document.createElement(\"button\");\r\n    btn.textContent = choice + \" Market\";\r\n    btn.onclick = () => checkAnswer(choice);\r\n    choicesDiv.appendChild(btn);\r\n  });\r\n}\r\n\r\nfunction checkAnswer(choice) {\r\n  if (choice === scenarios[current].answer) {\r\n    result.textContent = \"\u2705 Correct! This describes a \" + choice + \" Market.\";\r\n    score++;\r\n  } else {\r\n    result.textContent = \"\u274c Incorrect. This is a \" + scenarios[current].answer + \" Market.\";\r\n  }\r\n  scoreDisplay.textContent = \"Score: \" + score + \" \/ \" + scenarios.length;\r\n  nextButton.style.display = \"inline-block\";\r\n}\r\n\r\nnextButton.onclick = () => {\r\n  current++;\r\n  if (current < scenarios.length) {\r\n    loadScenario();\r\n  } else {\r\n    endQuiz();\r\n  }\r\n};\r\n\r\nfunction endQuiz() {\r\n  scenarioText.textContent = \"\ud83c\udf89 Quiz Completed!\";\r\n  choicesDiv.innerHTML = \"\";\r\n  result.textContent = \"Final Score: \" + score + \" \/ \" + scenarios.length;\r\n  nextButton.style.display = \"none\";\r\n  restartButton.style.display = \"inline-block\";\r\n}\r\n\r\nrestartButton.onclick = () => {\r\n  current = 0;\r\n  score = 0;\r\n  restartButton.style.display = \"none\";\r\n  scoreDisplay.textContent = \"\";\r\n  loadScenario();\r\n};\r\n\r\nloadScenario();\r\n<\/script>\r\n\n<h4>About This Interactive Game<\/h4>\n<p>In this quiz, you\u2019ll read different stock market scenarios and decide:<\/p>\n<p>\ud83d\udc49 Is this a <strong>Bull Market<\/strong> or a <strong>Bear Market<\/strong>?<\/p>\n<p>You\u2019ll get instant feedback and a final score at the end.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Understanding whether the market is in a bull phase or a bear phase is one of the most important skills [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"elementor_theme","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[5],"tags":[],"class_list":["post-82","post","type-post","status-publish","format-standard","hentry","category-asx-share-market-games"],"_links":{"self":[{"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/posts\/82","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/comments?post=82"}],"version-history":[{"count":0,"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/posts\/82\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/media?parent=82"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/categories?post=82"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aumarketwatch.com\/learn\/wp-json\/wp\/v2\/tags?post=82"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}