-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.js
713 lines (713 loc) · 21.2 KB
/
questions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
// Array of quiz questions based on Total Money Makeover
const questions = [
{
question: "According to Dave Ramsey, what's the first baby step?",
choices: [
"Save $1,000 for your starter emergency fund",
"Pay off all your debt",
"Invest in mutual funds",
"Save for retirement"
],
correctAnswer: 0
},
{
question: "Which of these is not one of Ramsey's recommended debt snowball techniques?",
choices: [
"List debts smallest to largest",
"Pay off the largest debt first",
"Gain momentum by paying off smallest first",
"Build up payments as you go"
],
correctAnswer: 1
},
{
question: "What is a sinking fund according to Dave Ramsey?",
choices: [
"A fund for investments",
"A fund set aside for anticipated expenses",
"A retirement account",
"A rainy-day fund"
],
correctAnswer: 1
},
{
question: "What is the first step in Dave Ramsey's Baby Steps?",
choices: [
"Save $1,000 for an emergency fund",
"Pay off all debt except the house",
"Invest 15% in retirement accounts",
"Start saving for kids’ college"
],
correctAnswer: 0
},
{
question: "According to Dave Ramsey, debt is often a(n) ____.",
choices: [
"Tool",
"Emergency",
"Burden",
"Opportunity"
],
correctAnswer: 2
},
{
question: "How much does Dave recommend saving for a starter emergency fund?",
choices: [
"$1,000",
"$5,000",
"$500",
"One month's income"
],
correctAnswer: 0
},
{
question: "What is Baby Step 2 in The Total Money Makeover?",
choices: [
"Pay off all debt except for the house",
"Build a three to six-month emergency fund",
"Invest 15% of income in retirement",
"Save for a down payment"
],
correctAnswer: 0
},
{
question: "What debt payment strategy does Ramsey recommend in Baby Step 2?",
choices: [
"Avalanche method",
"Snowball method",
"Highest interest rate method",
"Minimum payments only"
],
correctAnswer: 1
},
{
question: "In Baby Step 3, what should you build after paying off debt?",
choices: [
"A down payment for a house",
"A fully funded emergency fund",
"A college fund",
"A retirement account"
],
correctAnswer: 1
},
{
question: "How many months of expenses does Ramsey recommend saving in Baby Step 3?",
choices: [
"3-6 months",
"1 month",
"12 months",
"6-12 months"
],
correctAnswer: 0
},
{
question: "What is the purpose of Baby Step 4?",
choices: [
"Save for retirement",
"Save for children’s education",
"Pay off the mortgage",
"Increase the emergency fund"
],
correctAnswer: 0
},
{
question: "In Baby Step 4, how much of your income does Ramsey suggest investing in retirement?",
choices: [
"5%",
"10%",
"15%",
"20%"
],
correctAnswer: 2
},
{
question: "According to Ramsey, you should pay off your home in Baby Step __.",
choices: [
"5",
"6",
"7",
"4"
],
correctAnswer: 1
},
{
question: "What is the focus of Baby Step 5?",
choices: [
"Saving for retirement",
"Paying off the mortgage",
"Saving for children's college",
"Building a larger emergency fund"
],
correctAnswer: 2
},
{
question: "Which type of debt should be paid off first according to the snowball method?",
choices: [
"Highest interest rate",
"Lowest balance",
"Largest balance",
"Recent debt"
],
correctAnswer: 1
},
{
question: "Why does Ramsey suggest focusing on paying off the smallest debts first?",
choices: [
"To save money on interest",
"To build momentum and confidence",
"To follow the traditional approach",
"To maximize financial returns"
],
correctAnswer: 1
},
{
question: "What is the primary goal of Baby Step 6?",
choices: [
"Save for retirement",
"Pay off the house early",
"Increase your emergency fund",
"Fund children's education"
],
correctAnswer: 1
},
{
question: "What is Baby Step 7 about?",
choices: [
"Investing 15% in retirement",
"Becoming completely debt-free and building wealth",
"Creating a budget",
"Saving for a house"
],
correctAnswer: 1
},
{
question: "According to Dave Ramsey, why is debt dangerous?",
choices: [
"It limits financial freedom",
"It helps build credit",
"It increases spending power",
"It creates wealth"
],
correctAnswer: 0
},
{
question: "How often does Ramsey recommend creating a budget?",
choices: [
"Annually",
"Monthly",
"Weekly",
"Every six months"
],
correctAnswer: 1
},
{
question: "What is the 'debt snowball' method?",
choices: [
"Paying off debts from largest to smallest",
"Paying off debts from smallest to largest",
"Paying off debts with highest interest rate first",
"Consolidating all debts into one loan"
],
correctAnswer: 1
},
{
question: "According to Ramsey, how should you handle credit cards?",
choices: [
"Keep them for emergencies",
"Use them only when necessary",
"Cut them up and close the accounts",
"Use them to build credit"
],
correctAnswer: 2
},
{
question: "What is the purpose of the envelope system?",
choices: [
"To track investments",
"To set aside money for specific categories",
"To calculate monthly bills",
"To pay off debt faster"
],
correctAnswer: 1
},
{
question: "What is a sinking fund?",
choices: [
"An investment account",
"A fund for large, expected expenses",
"An emergency fund",
"A retirement account"
],
correctAnswer: 1
},
{
question: "According to Ramsey, how much should you invest in retirement?",
choices: [
"10% of income",
"5% of income",
"20% of income",
"15% of income"
],
correctAnswer: 3
},
{
question: "In which baby step do you fully fund your emergency fund?",
choices: [
"Baby Step 1",
"Baby Step 2",
"Baby Step 3",
"Baby Step 4"
],
correctAnswer: 2
},
{
question: "What is a key advantage of living debt-free, according to Ramsey?",
choices: [
"Increased financial freedom",
"Better credit score",
"Higher interest rates",
"Lower monthly expenses"
],
correctAnswer: 0
},
{
question: "What does Ramsey say about leasing cars?",
choices: [
"It’s the best way to own a new car",
"It’s a waste of money",
"It builds credit",
"It’s a way to save on taxes"
],
correctAnswer: 1
},
{
question: "Why is it important to budget for every dollar?",
choices: [
"To increase savings",
"To improve credit score",
"To have complete control over finances",
"To save on taxes"
],
correctAnswer: 2
},
{
question: "Which of the following is NOT a step in Ramsey’s plan?",
choices: [
"Establish a mortgage fund",
"Invest in retirement",
"Save for children’s education",
"Build an emergency fund"
],
correctAnswer: 0
},
{
question: "In the Total Money Makeover, what does Ramsey say about student loans?",
choices: [
"They’re good debt",
"They’re necessary",
"They should be avoided",
"They’re an investment in the future"
],
correctAnswer: 2
},
{
question: "What does Ramsey recommend for major purchases?",
choices: [
"Use credit if possible",
"Save up and pay in cash",
"Finance with a low interest rate",
"Lease if it’s a vehicle"
],
correctAnswer: 1
},
{
question: "According to Ramsey, what percentage of your income should go to giving once you reach Baby Step 7?",
choices: [
"10%",
"15%",
"5%",
"A generous amount based on personal choice"
],
correctAnswer: 3
},
{
question: "What is a key concept of financial peace in Ramsey’s view?",
choices: [
"Having a high net worth",
"Being debt-free and financially independent",
"Owning luxury assets",
"Building credit"
],
correctAnswer: 1
},
{
question: "Why does Ramsey advise against using credit scores as a measure of financial success?",
choices: [
"Credit scores don't account for real wealth",
"Credit scores are inaccurate",
"Credit scores only help with loans",
"Credit scores are outdated"
],
correctAnswer: 0
},
{
question: "What is the recommended percentage of income to invest in retirement according to Baby Step 4?",
choices: [
"10%",
"15%",
"20%",
"5%"
],
correctAnswer: 1
},
{
question: "Which of these is a common budgeting mistake?",
choices: [
"Tracking every dollar",
"Not including irregular expenses",
"Sticking to cash-only spending",
"Saving for emergency expenses"
],
correctAnswer: 1
},
{
question: "What does Ramsey say about using credit cards for points and rewards?",
choices: [
"It’s a great way to earn extra cash",
"It leads to overspending and debt",
"It’s an essential part of budgeting",
"It builds credit in a healthy way"
],
correctAnswer: 1
},
{
question: "Which account type is most recommended for emergency funds?",
choices: [
"Mutual funds",
"Stocks",
"Savings account",
"401(k)"
],
correctAnswer: 2
},
{
question: "Why does Ramsey recommend term life insurance over whole life insurance?",
choices: [
"Term insurance is more affordable",
"Whole life insurance has higher returns",
"Term insurance doesn’t require medical exams",
"Whole life insurance covers medical expenses"
],
correctAnswer: 0
},
{
question: "What does Dave Ramsey consider financially dangerous?",
choices: [
"Using cash only",
"Living debt-free",
"Borrowing for cars and education",
"Investing early"
],
correctAnswer: 2
},
{
question: "Why does Ramsey suggest renting when on Baby Step 2?",
choices: [
"Renting is more affordable",
"Renting allows saving for a down payment",
"Renting avoids mortgage interest",
"Renting keeps spending low during debt payoff"
],
correctAnswer: 3
},
{
question: "How does Dave Ramsey suggest you tackle home repairs while budgeting?",
choices: [
"Use credit cards for large repairs",
"Save monthly in a sinking fund",
"Only repair essential items",
"Take out a home repair loan"
],
correctAnswer: 1
},
{
question: "What does Baby Step 3 involve?",
choices: [
"Building a full emergency fund",
"Paying off debt",
"Saving for retirement",
"Buying a car with cash"
],
correctAnswer: 0
},
{
question: "Which of these expenses is often overlooked in budgeting?",
choices: [
"Mortgage",
"Food and groceries",
"Clothing and gifts",
"Rent"
],
correctAnswer: 2
},
{
question: "In Baby Step 5, why does Ramsey encourage college savings?",
choices: [
"It reduces future debt for your children",
"It builds credit for your child",
"It decreases your taxes",
"It’s a requirement for student loans"
],
correctAnswer: 0
},
{
question: "Why should emergency funds be kept separate from other savings?",
choices: [
"To prevent spending on non-emergencies",
"To ensure higher returns",
"To avoid taxes",
"To decrease credit score impact"
],
correctAnswer: 0
},
{
question: "What is a common myth about leasing a car?",
choices: [
"It’s cheaper than buying a car outright",
"It helps you avoid loans",
"It keeps cash free for other expenses",
"It’s better for your credit"
],
correctAnswer: 0
},
{
question: "How does Dave Ramsey suggest dealing with medical debt?",
choices: [
"Pay it off as part of your debt snowball",
"Take out a loan to pay it off",
"Ignore it if it's low interest",
"Only pay after clearing all other debts"
],
correctAnswer: 0
},
{
question: "Why does Ramsey emphasize using cash instead of credit?",
choices: [
"Cash builds better credit",
"Cash spending feels more real",
"Cash is easier to track",
"Cash is safer than credit cards"
],
correctAnswer: 1
},
{
question: "What is a key focus of Baby Step 2?",
choices: [
"Investing 15% of income",
"Creating a college fund",
"Paying off all debt but the mortgage",
"Setting up a sinking fund"
],
correctAnswer: 2
},
{
question: "What financial behavior does Ramsey consider essential for kids to learn?",
choices: [
"Using credit responsibly",
"Saving for big purchases",
"Using debit cards",
"Avoiding all debt"
],
correctAnswer: 1
},
{
question: "Why is budgeting important in Ramsey's view?",
choices: [
"It tracks every dollar",
"It helps raise your credit score",
"It minimizes taxes",
"It eliminates debt automatically"
],
correctAnswer: 0
},
{
question: "What does Ramsey suggest about saving for a home down payment?",
choices: [
"Save a minimum of 5%",
"Save at least 20% to avoid PMI",
"Save enough to cover closing costs",
"Get a mortgage with low down payment"
],
correctAnswer: 1
},
{
question: "What type of mortgage does Ramsey recommend?",
choices: [
"30-year fixed rate",
"Adjustable rate",
"15-year fixed rate",
"Interest-only loan"
],
correctAnswer: 2
},
{
question: "What is the goal of Baby Step 7?",
choices: [
"Build wealth and give",
"Invest in stocks and bonds",
"Buy luxury items",
"Start using credit responsibly"
],
correctAnswer: 0
},
{
question: "According to Ramsey, which of these is a crucial financial skill?",
choices: [
"Calculating interest",
"Budgeting",
"Building credit",
"Balancing loans"
],
correctAnswer: 1
},
{
question: "Why does Ramsey suggest using cash for everyday purchases?",
choices: [
"It builds a high credit score",
"It makes you spend less",
"It increases spending limits",
"It reduces long-term debt"
],
correctAnswer: 1
},
{
question: "What does Ramsey say about saving for vacations when on Baby Step 2?",
choices: [
"Finance it with low-interest loans",
"Use credit cards to cover costs",
"Create a vacation sinking fund",
"Skip vacations until debt-free"
],
correctAnswer: 3
},
{
question: "Why does Ramsey suggest keeping an emergency fund in cash?",
choices: [
"It allows easy access in emergencies",
"It earns higher interest",
"It can’t be taxed",
"It increases credit limits"
],
correctAnswer: 0
},
{
question: "What does Ramsey recommend doing with your tax refund in Baby Step 2?",
choices: [
"Spend it on a vacation",
"Apply it to your debt snowball",
"Invest it in stocks",
"Use it as extra monthly income"
],
correctAnswer: 1
},
{
question: "According to Ramsey, why should you avoid co-signing loans?",
choices: [
"It raises your credit score",
"It can create debt for the co-signer",
"It ensures higher interest",
"It limits co-signer income"
],
correctAnswer: 1
},
{
question: "Why does Ramsey discourage consolidating debt?",
choices: [
"It doesn’t address spending habits",
"It increases credit scores",
"It decreases total debt",
"It simplifies finances"
],
correctAnswer: 0
},
{
question: "In the Total Money Makeover, why is Baby Step 1 crucial?",
choices: [
"It builds emergency savings",
"It invests for retirement",
"It reduces high-interest debt",
"It covers living expenses"
],
correctAnswer: 0
},
{
question: "Why does Ramsey encourage working extra jobs temporarily?",
choices: [
"To pay off debt faster",
"To build credit",
"To invest in the stock market",
"To increase emergency fund size"
],
correctAnswer: 0
},
{
question: "What does Ramsey recommend doing once all debts (except the mortgage) are paid?",
choices: [
"Reduce work hours",
"Save 3-6 months of expenses",
"Increase lifestyle spending",
"Buy Bitcoin"
],
correctAnswer: 1
},
{
question: "Why is it important to avoid impulse buying?",
choices: [
"It increases your credit score",
"It helps you stick to your budget",
"It allows you to buy what you really want",
"It simplifies financial planning"
],
correctAnswer: 1
},
{
question: "Why does Ramsey advocate living on less than you make?",
choices: [
"To impress others",
"To save for future needs",
"To build a higher credit score",
"To prepare for luxury expenses"
],
correctAnswer: 1
},
{
question: "What does Ramsey say about home equity loans?",
choices: [
"They are a smart financial tool",
"They are a backup emergency fund",
"They are a risky form of debt",
"They are great for home improvement"
],
correctAnswer: 2
},
{
question: "According to Dave Ramsey, what is the best way to handle student loans?",
choices: [
"Pay them off as soon as possible",
"Refinance for lower interest",
"Make minimum payments to save cash",
"Use them to build credit"
],
correctAnswer: 0
},
{
question: "Why does Ramsey discourage store credit cards?",
choices: [
"They offer poor rewards",
"They encourage unnecessary spending",
"They build credit too slowly",
"They have high annual fees"
],
correctAnswer: 1
}
];