Quizz_Array

Quizz_Array

1st - 5th Grade

15 Qs

quiz-placeholder

Similar activities

Tin học 8 Bài 9: Làm Việc Với Dãy Số

Tin học 8 Bài 9: Làm Việc Với Dãy Số

1st Grade

10 Qs

ĐỒNG BIẾN, NGHỊCH BIẾN CỦA HÀM SỐ

ĐỒNG BIẾN, NGHỊCH BIẾN CỦA HÀM SỐ

1st - 5th Grade

20 Qs

Tin 7

Tin 7

1st Grade

20 Qs

2-dars

2-dars

1st Grade

15 Qs

Заканчиваем JavaScript

Заканчиваем JavaScript

1st Grade

15 Qs

Ôn tập cuối khóa Scratch Level 2

Ôn tập cuối khóa Scratch Level 2

1st - 5th Grade

15 Qs

LICH SU 5 BAI 3

LICH SU 5 BAI 3

5th Grade

10 Qs

ÔN TẬP HK1 TIẾT 1

ÔN TẬP HK1 TIẾT 1

1st Grade

15 Qs

Quizz_Array

Quizz_Array

Assessment

Quiz

Created by

Bach Nguyen

Education

1st - 5th Grade

2 plays

Hard

15 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Vòng lặp nào sau đây sẽ chạy 25 lần?

for ( var i = 1; i < 26; i ++ )

for ( var i = 30 ; i > 5 ; i -- )

for(var i=0; i<25; i++)

for ( var i = 25 ; i > 0 ; i -- )

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Kết quả đoạn code sau là gì?

console.log("22" < "134");

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Câu lệnh nào dưới đây trả về kết quả "false"?

'myName'.length > 2

'inputControl'.length < 4

3 * 4 < 15

3*5 <= 15

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Kết quả của đoạn code sau là ?

console.log(-(--a) * ++a - a);

var a = 3;

-9

4

NaN

undefined

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Cho đoạn code sau, đâu là đáp án đúng?

const fruits = ["Banana", "Orange", "Apple", "Mango"];

fruits.splice(2, 0, "Lemon", "Kiwi");

Banana,

Orange,

Apple,

Lemon,

Kiwi,

Apple,

Mango

Banana,

Orange,

Lemon,

Kiwi,

Apple,

Mango


Banana,

Lemon,

Kiwi,

Apple,

Mango

Banana,

Orange,

Apple,

Mango

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Cho đoạn code sau, đáp án đúng là

const fruits = ["Banana", "Orange", "Apple", "Mango", "Apple"];

let index = fruits.indexOf("Apple", 3);

1

2

3

4

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Cho đoạn code sau, đâu là đáp án đúng?

let a = [1, 2, 3];

let b = [1, 2, 3];

let c = '1,2,3';

console.log(a == c);

console.log(b == c);

console.log(a == b);


true, true, false

true, false, false


true, true, true


false, false false

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?