JS - zadania 2 3i2

JS - zadania 2 3i2

8th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

python

python

10th Grade

10 Qs

HTML

HTML

12th Grade

10 Qs

MẢNG

MẢNG

6th - 8th Grade

10 Qs

Khởi động cùng Quizizz (Ôn lại các kiến thức đã học)

Khởi động cùng Quizizz (Ôn lại các kiến thức đã học)

8th Grade

10 Qs

SISTEM KOMPUTER KLS 9

SISTEM KOMPUTER KLS 9

9th Grade

10 Qs

Scratch - Lesson 2

Scratch - Lesson 2

8th Grade

10 Qs

Pengenalan HTML

Pengenalan HTML

11th Grade

10 Qs

Image Representation Lesson 2

Image Representation Lesson 2

9th Grade

10 Qs

JS - zadania 2 3i2

JS - zadania 2 3i2

Assessment

Quiz

Computers

8th - 12th Grade

Medium

Used 3+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

5 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Jaka wartość zmiennej x zostanie wyświetlona?

var x =5.75;

x = Math.floor(x);

document.write(x);

2.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Math.floor(Math.random() * 100) zwróci liczbę całkowitą z przedziału od 0 do _____

3.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Math.floor(Math.random() * 10) + 1; zwróci liczbę całkowitą z przedziału od 1 do ____

4.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Uzupełnij kod, aby wyświetlić wprowadzoną liczbę:<form oninput="x.value=parseInt(__________)">

<input type="number" name="a" value="50" >

<output name="x" > </output>

</form>

5.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Jaka wartość zostanie wyświetlona po wprowadzeniu koloru czarnego:

<form oninput="x.value=c.value">

<input type="color" name="c" > C

<output name="x" > </output>

</form>