“ 지연되는 프로젝트에 인력을 더 투입하면 오히려 더 늦어진다. ”
- Frederick Philips Brooks
Mythical Man-Month 저자
728x90
반응형
자바스크립트 시험 4(재시험) 오답
01.
{
const str = "javascript refercence";
str.indexOf("javascript");
str.indexOf("javascripts");
str.indexOf("j");
str.indexOf("J");
str.indexOf("a");
str.indexOf("ja");
str.indexOf("jv");
str.indexOf("refercence");
str.indexOf("r");
str.indexOf("re");
str.indexOf("javascript", 0);
str.indexOf("javascript", 1);
str.indexOf("refercence", 0);
str.indexOf("refercence", 11);
str.indexOf("refercence", 12);
str.indexOf("r", 7);
str.indexOf("r", 12);
}
✨ 정답보기
-1 5개
02.
{
function func(){
console.log("함수1가 실행되었습니다.");
}
function callback(str){
console.log("함수2가 실행되었습니다.");
str();
}
callback(func);
}
✨ 정답보기
함수2가 실행되었습니다. 함수1가 실행되었습니다.
03.
{
function func(){
let a = [];
for(i=1; i<=5; i++){
a += [i];
}
console.log(a);
}
func();
}
✨ 정답보기
1,2,3,4,5
04.
{
function func(num, name, word){
this.num = num;
this.name = name;
this.word = word;
}
func.prototype = {
result1 : function(){
console.log(this.num + ". " + this.name + "가 "+ this.word + "되었습니다.");
},
result2 : function(){
console.log(this.num + ". " + this.name + "가 "+ this.word + "되었습니다.");
},
result3 : function(){
console.log(this.num + ". " + this.name + "가 "+ this.word + "되었습니다.");
}
}
const info1 = new func("1", "함수", "실행");
const info2 = new func("2", "자바스크립트", "실행");
const info3 = new func("3", "제이쿼리", "실행");
info1.result1();
info2.result2();
info3.result3();
}
✨ 정답보기
1.함수가 실행되었습니다. 2.자바스크립트가 실행되었습니다.3.제이쿼리가 실행되었습니다.
05.
{
function func(num, name, word){
this.num = num;
this.name = name;
this.word = word;
}
func.prototype.result = function(){
console.log(this.num + ". " + this.name + "가 "+ this.word + "되었습니다.");
}
const info1 = new func("1", "함수", "실행");
const info2 = new func("2", "자바스크립트", "실행");
const info3 = new func("3", "제이쿼리", "실행");
info1.result();
info2.result();
info3.result();
}
✨ 정답보기
1. 함수가 실행되었습니다.2.자바스크립트가 실행되었습니다. 3.제이쿼리가 실행되었습니다.
06.(X)
{
function func(index){
console.log("함수가 실행되었습니다." + index);
}
function callback(num){
for(let i=0; i<=5; i++){
num(i);
}
}
callback(func);
}
✨ 정답보기
함수가 실행되었습니다.0~5
📑 풀이
for문에서i는 0부터 5까지 출력.
callback함수이므로 index값에 i값이 호출되어
함수가 실행되었습니다. 0 부터 5까지 출력.
07.
{
let num = 0;
do {
console.log("실행되었습니다.");
num++;
} while (num <= 3);
}
✨ 정답보기
실행되었습니다. X4
08.(X)
{
const arr = [100, 200, 300, 400, 500];
const text1 = arr.join("*");
arr.push("600");
const text3 = arr.join("");
arr.pop();
const text4 = arr.join(" ");
console.log(text1);
console.log(text3);
console.log(text4);
}
✨ 정답보기
100*200*300*400*500 / 100200300400500600 / 100 200 300 400 500
📑 풀이
arr을 이용하여 join()메소드를 사용해 문자열을 생성하고, 이를 출력하는 코드입니다.
push()는 배열 마지막 요소에 요소 추가
pop()는 배열 마지막 요소 삭제
09.(X)
{
let a, b = 10;
for(let i=0; i<5; i++){
a = i;
b -= a;
}
console.log(a, b)
}
✨ 정답보기
4,0
📑 풀이
for문이 총 5번 반복하게 되므로 a는 마지막 으로 할당된 i인 4의 값을 가지고,
b는 초기값 10에서 0+1+2+3+4=10의 값을 뺸 0이 된다.
10.
{
function func(){
let i = 20, j = 20, k = 30;
i /= j;
j -= i;
k %= j;
console.log(i);
console.log(j);
console.log(k);
}
func();
}
✨ 정답보기
1, 19, 11
11.
{
let k = 1;
let temp;
for(let i=0; i<=3; i++){
temp = k;
k++;
console.log(temp + "번");
}
}
✨ 정답보기
1번, 2번, 3번, 4번
12.(X)
{
let num1 = 3;
let num2 = 7;
if(++num1 > 5 || num2++ < 1){
console.log(num1);
}
console.log(num2)
}
✨ 정답보기
8
📑 풀이
13.
{
let num = [1, 5, 1, 2, 7, 5];
for(let i=0; i<6; i++){
if((i+2) % 2 == 0){
console.log(num[i]);
}
}
}
✨ 정답보기
1, 1, 7
14.
{
let num = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
for(let i=0; i<=9; i++){
switch(num[i] % 2){
case 1:
console.log(num[i]);
break;
default:
console.log("**");
}
}
}
✨ 정답보기
**1**3**5**7**9
15.(X)
{
let cnt = 0;
let sum = 0;
for(let i=0; i<=7; i++){
if(i%2 == 1){
cnt++;
sum += i;
}
}
console.log(cnt + ", "+sum/2);
}
✨ 정답보기
4,8
📑 풀이
for문이 시작되어
i를0으로 초기화 하고, 7까지 반복한다.
for문 내부에서 i를 2로 나눈 나머지가 1인 홀수인 경우에 cnt 변수를 1 증가시키고, sum 변수에 i 값을 더합니다.
for문이 모두 실행된 후에는 cnt 변수는 7까지의 홀수 개수가 된다.
따라서 1부터7까지의 홀수의 합이 되고,
cnt와 sum/2의 값을 출력
16.(X)
{
let data = [70, 80, 75, 60, 90];
let best = 1;
let score = 0;
for(let i=0; i<data.length; i++){
if(data[i]>=80) {
best++;
}
if(score < data[i]) {
score = data[i];
}
}
console.log(best, score)
}
✨ 정답보기
3,90
📑 풀이
80보다 크거나 같은 값이 2개가 있으므로 3
score변수를 선언, 초기값을 0으로 할당.
이 변수는 가장 높은 점수를 저장하기 위해 사용
for문이 시작되면서 i를 0으로 초기화시키고
data배열의 길이보다 작을때까지 반복, i를 1씩 증가
17.
{
let a, b, result;
a = 7, b = 4
result = a | b;
console.log(result)
}
✨ 정답보기
4
📑 풀이
a와 b를 이진수로 변환
각 자리의 비트를 OR연산한다.
결과를 10진수로 변환한다.
18.
{
function solution(a, b, c){
let answer = "YES", max;
let total = a + b + c;
if(a > b) max = a;
else max = b;
if(c > max) max = c;
if(total-max <= max) answer = "NO";
return answer;
}
console.log(solution(53, 93, 107));
}
✨ 정답보기
YES
📑 풀이
19.
{
function solution(a, b, c){
let answer;
if(a < b) answer = a;
else answer = b;
if(c <= answer) answer = c;
return answer;
}
console.log(solution(15, 12, 11));
}
✨ 정답보기
11
20.
{
function solution(day, arr){
let answer = 0;
for(let x of arr){
if(x % 10 == day) answer++;
}
return answer;
}
arr = [25, 23, 11, 47, 53, 17, 33, 40];
console.log(solution(0, arr));
}
✨ 정답보기
1
반응형