|
| 1 | +const questions = { |
| 2 | + "Password Safety": [ |
| 3 | + { |
| 4 | + question: "Which password is the strongest?", |
| 5 | + options: [ |
| 6 | + { text: "password123", correct: false }, |
| 7 | + { text: "P@ssw0rd!2025", correct: true }, |
| 8 | + { text: "qwerty", correct: false }, |
| 9 | + { text: "123456", correct: false } |
| 10 | + ], |
| 11 | + explanation: "Strong passwords use a mix of letters, numbers, and symbols." |
| 12 | + }, |
| 13 | + { |
| 14 | + question: "What should you avoid when creating a password?", |
| 15 | + options: [ |
| 16 | + { text: "Using your birthdate", correct: true }, |
| 17 | + { text: "Using a random phrase", correct: false }, |
| 18 | + { text: "Using symbols", correct: false }, |
| 19 | + { text: "Using both upper and lower case letters", correct: false } |
| 20 | + ], |
| 21 | + explanation: "Personal information is easy to guess or find." |
| 22 | + } |
| 23 | + ], |
| 24 | + "Phishing Awareness": [ |
| 25 | + { |
| 26 | + question: "What is a common sign of a phishing email?", |
| 27 | + options: [ |
| 28 | + { text: "Spelling mistakes and urgent requests", correct: true }, |
| 29 | + { text: "A friendly greeting", correct: false }, |
| 30 | + { text: "Your name in the email", correct: false }, |
| 31 | + { text: "A known sender address", correct: false } |
| 32 | + ], |
| 33 | + explanation: "Phishing emails often contain errors and pressure to act quickly." |
| 34 | + }, |
| 35 | + { |
| 36 | + question: "What should you do if you suspect a phishing attempt?", |
| 37 | + options: [ |
| 38 | + { text: "Click the link to check", correct: false }, |
| 39 | + { text: "Delete or report the email", correct: true }, |
| 40 | + { text: "Reply asking for more info", correct: false }, |
| 41 | + { text: "Forward to friends", correct: false } |
| 42 | + ], |
| 43 | + explanation: "Never interact with suspicious emails; report or delete them." |
| 44 | + } |
| 45 | + ], |
| 46 | + "Malware Detection": [ |
| 47 | + { |
| 48 | + question: "What is malware?", |
| 49 | + options: [ |
| 50 | + { text: "Malicious software", correct: true }, |
| 51 | + { text: "A type of hardware", correct: false }, |
| 52 | + { text: "A secure website", correct: false }, |
| 53 | + { text: "An antivirus program", correct: false } |
| 54 | + ], |
| 55 | + explanation: "Malware is software designed to harm your device or data." |
| 56 | + }, |
| 57 | + { |
| 58 | + question: "Which action can help avoid malware?", |
| 59 | + options: [ |
| 60 | + { text: "Opening email attachments from unknown senders", correct: false }, |
| 61 | + { text: "Clicking pop-up ads", correct: false }, |
| 62 | + { text: "Installing software from trusted sources", correct: true }, |
| 63 | + { text: "Ignoring software updates", correct: false } |
| 64 | + ], |
| 65 | + explanation: "Install software only from reputable sources." |
| 66 | + } |
| 67 | + ], |
| 68 | + "Online Privacy": [ |
| 69 | + { |
| 70 | + question: "Which info should you avoid sharing online?", |
| 71 | + options: [ |
| 72 | + { text: "Your home address", correct: true }, |
| 73 | + { text: "A favorite color", correct: false }, |
| 74 | + { text: "A hobby", correct: false }, |
| 75 | + { text: "A nickname", correct: false } |
| 76 | + ], |
| 77 | + explanation: "Personal details like your address should be kept private." |
| 78 | + }, |
| 79 | + { |
| 80 | + question: "How can you improve your online privacy?", |
| 81 | + options: [ |
| 82 | + { text: "Use strong, unique passwords", correct: true }, |
| 83 | + { text: "Share passwords with friends", correct: false }, |
| 84 | + { text: "Post your schedule publicly", correct: false }, |
| 85 | + { text: "Accept all cookies on every website", correct: false } |
| 86 | + ], |
| 87 | + explanation: "Unique passwords and careful sharing improve privacy." |
| 88 | + } |
| 89 | + ] |
| 90 | +}; |
| 91 | + |
| 92 | +export default questions; |
0 commit comments