Angular job portal app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

76 regels
1.8 KiB

  1. import { QuizDetails } from "../models/QuizDetails";
  2. const QUIZ_DETAILS: QuizDetails[] = [
  3. {
  4. question: "How would you correctly display, “Hello, how are you?”?",
  5. options: [
  6. "System.out.println('Hello, how are you?');",
  7. "println('Hello, how are you?');",
  8. "out.print(Hello, how are you?);",
  9. "System.out.println(Hello, how are you?);"
  10. ],
  11. answer: ["System.out.println('Hello, how are you?');"],
  12. result: false,
  13. timeLimit: 5,
  14. type: "singleSelect"
  15. },
  16. {
  17. question: "How do you write 'Hello World' in an alert box?",
  18. options: [
  19. "msgBox('Hello World')",
  20. "alertBox('Hello World');",
  21. "msg('Hello World');",
  22. "alert('Hello World');"
  23. ],
  24. answer: ["alert('Hello World');"],
  25. result: false,
  26. timeLimit: 10,
  27. type: "singleSelect"
  28. },
  29. {
  30. question: "is javascript",
  31. options: [
  32. "A",
  33. "B",
  34. "C",
  35. "D"
  36. ],
  37. answer: ["B", "C"],
  38. result: false,
  39. timeLimit: 15,
  40. type: "multiSelect"
  41. },
  42. {
  43. question: "Is javascript single threaded or multi threaded? enter the answer in the below box ",
  44. options: [],
  45. answer: ["single threaded"],
  46. result: false,
  47. timeLimit: 40,
  48. type: "textInput"
  49. },
  50. {
  51. question: "is javascript",
  52. options: [
  53. "A",
  54. "B",
  55. "C",
  56. "D"
  57. ],
  58. answer: ["B", "C"],
  59. result: false,
  60. timeLimit: 35,
  61. type: "multiSelect"
  62. },
  63. ];
  64. export let test = [
  65. {
  66. a: "ss"
  67. },
  68. {
  69. a: "aa"
  70. },
  71. ]
  72. export default QUIZ_DETAILS;