- import { QuizDetails } from "../models/QuizDetails";
-
- const QUIZ_DETAILS: QuizDetails[] = [
- {
- question: "How would you correctly display, “Hello, how are you?”?",
- options: [
- "System.out.println('Hello, how are you?');",
- "println('Hello, how are you?');",
- "out.print(Hello, how are you?);",
- "System.out.println(Hello, how are you?);"
- ],
- answer: ["System.out.println('Hello, how are you?');"],
- result: false,
- timeLimit: 5,
- type: "singleSelect"
- },
- {
- question: "How do you write 'Hello World' in an alert box?",
- options: [
- "msgBox('Hello World')",
- "alertBox('Hello World');",
- "msg('Hello World');",
- "alert('Hello World');"
- ],
- answer: ["alert('Hello World');"],
- result: false,
- timeLimit: 10,
- type: "singleSelect"
-
- },
- {
- question: "is javascript",
- options: [
- "A",
- "B",
- "C",
- "D"
- ],
- answer: ["B", "C"],
- result: false,
- timeLimit: 15,
- type: "multiSelect"
- },
- {
- question: "Is javascript single threaded or multi threaded? enter the answer in the below box ",
- options: [],
- answer: ["single threaded"],
- result: false,
- timeLimit: 40,
- type: "textInput"
- },
- {
- question: "is javascript",
- options: [
- "A",
- "B",
- "C",
- "D"
- ],
- answer: ["B", "C"],
- result: false,
- timeLimit: 35,
- type: "multiSelect"
- },
- ];
-
- export let test = [
- {
- a: "ss"
- },
- {
- a: "aa"
- },
- ]
-
- export default QUIZ_DETAILS;
|