update quiz 4 to ko

pull/140/head
DaehunGwak 4 years ago
parent a7115eeb33
commit 8adcf036b1

@ -327,20 +327,20 @@
"title": "Lesson 4 - JavaScript 기초 - 데이터 타입: 강의 전 퀴즈", "title": "Lesson 4 - JavaScript 기초 - 데이터 타입: 강의 전 퀴즈",
"quiz": [ "quiz": [
{ {
"questionText": "Booleans are a data type you can use to test the length of a string", "questionText": "불리언 타입은 문자열의 길이를 구하는데 쓸 수 있다.",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "true", "answerText": "",
"isCorrect": "false" "isCorrect": "false"
}, },
{ {
"answerText": "false", "answerText": "아니요",
"isCorrect": "true" "isCorrect": "true"
} }
] ]
}, },
{ {
"questionText": "The following is an operation you can perform on a string", "questionText": "문자열에 사용할 수 있는 연산은?",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "concatenation", "answerText": "concatenation",
@ -357,14 +357,14 @@
] ]
}, },
{ {
"questionText": "== and === are interchangeable", "questionText": "== 와 === 는 서로 교체가능하다.",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "true", "answerText": "",
"isCorrect": "false" "isCorrect": "false"
}, },
{ {
"answerText": "false", "answerText": "아니요",
"isCorrect": "true" "isCorrect": "true"
} }
] ]
@ -376,24 +376,24 @@
"title": "Lesson 4 - JavaScript 기초 - 데이터 타입: 강의 후 퀴즈", "title": "Lesson 4 - JavaScript 기초 - 데이터 타입: 강의 후 퀴즈",
"quiz": [ "quiz": [
{ {
"questionText": "Constants are the same as let and var to declare variables except", "questionText": "상수(const)는 let 과 var에서 다음 기능만 사용하는 것과 같다.",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "Constants must be initialized", "answerText": "반드시 초기화되어야 한다",
"isCorrect": "true" "isCorrect": "true"
}, },
{ {
"answerText": "Constants can be altered", "answerText": "변경 가능하다",
"isCorrect": "false" "isCorrect": "false"
}, },
{ {
"answerText": "Constants can be reassigned", "answerText": "재할당 가능하다",
"isCorrect": "false" "isCorrect": "false"
} }
] ]
}, },
{ {
"questionText": "Numbers and ____ are JavaScript primitives that handle numeric data", "questionText": "Numbers(숫자) 와 ____ 는 숫자 데이터를 다루는 JavaScript 원시 타입이다.",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "bigint", "answerText": "bigint",
@ -410,14 +410,14 @@
] ]
}, },
{ {
"questionText": "Strings can reside between both single and double quotes", "questionText": "문자열은 작은 따옴표와 큰 따옴표 사이에 있을 수 있다.",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "true", "answerText": "",
"isCorrect": "true" "isCorrect": "true"
}, },
{ {
"answerText": "false", "answerText": "아니요",
"isCorrect": "false" "isCorrect": "false"
} }
] ]

Loading…
Cancel
Save