quizzes.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. const myQuestions = [
  2. {
  3. question: 'I ____ to being spoken to like that!',
  4. answers: {
  5. a: 'don\'t get used',
  6. b: 'used',
  7. c: 'am not used',
  8. d: 'use'
  9. },
  10. correctAnswer: 'c'
  11. },
  12. {
  13. question: 'I find it hard ____ to the dark evenings in winter.',
  14. answers: {
  15. a: 'don\'t get used',
  16. b: 'used',
  17. c: 'to getting',
  18. d: 'to get used'
  19. },
  20. correctAnswer: 'd'
  21. },
  22. {
  23. question: 'I haven\'t studied for ages and I\'m finding it hard to get used to ____ every day.',
  24. answers: {
  25. a: 'study',
  26. b: 'studying',
  27. c: 'studied',
  28. d: 'being studied'
  29. },
  30. correctAnswer: 'b'
  31. },
  32. {
  33. question: 'You\'ll have to get used to ____ on the right when you live there.',
  34. answers: {
  35. a: 'drove',
  36. b : 'driven',
  37. c : 'drive',
  38. d : 'driving'
  39. },
  40. correctAnswer: 'd'
  41. },
  42. {
  43. question: 'I found it hard to get used to ____ in such a hot country.',
  44. answers: {
  45. a: 'live',
  46. b: 'living',
  47. c: 'lived',
  48. d: 'life'
  49. },
  50. correctAnswer: 'b'
  51. },
  52. {
  53. question: 'Which sentence is NOT correct?',
  54. answers: {
  55. a: 'My grandmother would have long, fair hair.',
  56. b: 'We would go swimming every Friday',
  57. c: 'There would be a park here.',
  58. d: 'We would go to the zoo every summer.'
  59. },
  60. correctAnswer: 'a'
  61. },
  62. {
  63. question: 'I\'m not used to ____ so much tea.',
  64. answers: {
  65. a: 'drinking',
  66. b: 'drink',
  67. c: 'drunk',
  68. d: 'get'
  69. },
  70. correctAnswer: 'a'
  71. },
  72. {
  73. question: 'I ____ like football then but I like it now',
  74. answers: {
  75. a: 'didn\'t used to',
  76. b: 'wouldn\'t',
  77. c: 'didn\'t use to',
  78. d: 'wouldn\'t to'
  79. },
  80. correctAnswer: 'c'
  81. },
  82. {
  83. question: 'You can use "would" to talk about...',
  84. answers: {
  85. a: 'past states',
  86. b: 'past habits (actions)',
  87. c: 'past habits(actions) and past states',
  88. d: 'events in the past'
  89. },
  90. correctAnswer: 'b'
  91. },
  92. {
  93. question: 'You can use "used to" to talk about...(you can choose two or more options)',
  94. answers: {
  95. a: 'past habits (actions)',
  96. b: 'past states',
  97. c: 'events in the past',
  98. d: 'use of objects'
  99. },
  100. correctAnswer: 'b'
  101. }
  102. ];