Const Questions

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

const questions = [

  {
    question: "Which environment do you see yourself working?",
    options: [
      { text: "In the lab", image: "lab.gif" },
      { text: "In the clinic or hospital", image: "/clinic.jpeg" },
      { text: "In the office", image: "images/office.jpg" },
      { text: "Doing physical work", image: "physical.jpeg" },
      { text: "Working outside", image: "/outside.png" },
      { text: "In the community", image: "images/community.jpg" },
      { text: "In the school", image: "images/school.jpg" }
    ]
  },
  {
    question: "In school, which of the following was your favourite subject?",
    options: [
      { text: "Math", image: "math.gif" },
      { text: "English", image: "english.png" },
      { text: "History", image: "history.gif" },
      { text: "Geography", image: "geography.jpg" },
      { text: "CRE/ISLAM", image: "cre.png" },
      { text: "Chemistry", image: "chemistry.gif" },
      { text: "Biology", image: "images/biology.jpg" },
      { text: "Physics", image: "physics.gif" },
      { text: "Writing and Reading", image: "writing.jpeg" },
      { text: "Science", image: "scientist.png" },
      { text: "Commerce", image: "commerce.jpeg" },
      { text: "Agriculture", image: "agriculture.gif" }
    ]
  },
  {
    question: "As a child, you loved",
    options: [
      { text: "Conducting Experiments", image: "experiments.jpeg" },
      { text: "Building Lego", image: "lego.jpeg" },
      { text: "Playing Video and Computer Games", image: "games.gif" },
      { text: "Inventing", image: "inventing.png" },
      { text: "Board Games and Puzzles", image: "boardgames.png" },
      { text: "Drawings", image: "drawings.jpeg" },
      { text: "Playing Outside", image: "outside_play.avif" }
    ]
  },
  {
    question: "I'm happy when I'm taking risks and trying new things",
    options: [
      { text: "NO", image: "no.png" },
      { text: "YES", image: "yes.png" }
    ]
  },
  {
    question: "I'm happy when I'm working with people or helping others",
    options: [
      { text: "YES", image: "yes.png" },
      { text: "NO", image: "no.png" }
    ]
  },
  {
    question: "What would you rather do?",
    options: [
      { text: "Create something from scratch", image: "create.png" }
    ]
  },
  {
    question: "What role best describes you?",
    options: [
      { text: "The handy person", image: "handy.jpeg" },
      { text: "The Organiser", image: "organiser.webp" },
      { text: "The shoulder to cry on", image: "shoulder.png" },
      { text: "The Problem Solver", image: "problem.jpeg" },
      { text: "The Dreamer", image: "dreamer.jpeg" },
      { text: "The Life of a Party", image: "party.webp" }
    ]
  },
  {
    question: "I'm happy working with numbers and focusing on the fine details",
    options: [
      { text: "YES", image: "yes.png" },
      { text: "NO", image: "no.png" }
    ]
  },
  {
    question: "What is a bigger motivator for you?",
    options: [
      { text: "Curiosity", image: "curiosity.jpeg" },
      { text: "Logic", image: "logic.png" }
    ]
  },
  {
    question: "In your spare time, you find yourself researching:",
    options: [
      { text: "Fitness nutrition and health", image: "fitness.jpeg" },
      { text: "Your next campaign or hiking trip", image: "campaign.webp" },
      { text: "Current events or news", image: "news.jpeg" },
      { text: "How things are made", image: "made.jpeg" },
      { text: "The newest technology gadget", image: "technology.jpeg" },
      { text: "Social media", image: "social_media.png" },
      { text: "The stock market", image: "stock_market.jpeg" }
    ]
  }
];

You might also like