JavaScript

JavaScript

University

15 Qs

quiz-placeholder

Similar activities

Database NoSQL (MongoDB)

Database NoSQL (MongoDB)

University - Professional Development

12 Qs

JS P1

JS P1

University

17 Qs

Back-End Development - Quiz 1

Back-End Development - Quiz 1

University

20 Qs

Kvíz o HTML značkách

Kvíz o HTML značkách

9th Grade - University

20 Qs

ambot para asa ni

ambot para asa ni

University

20 Qs

GENIOS 2.0

GENIOS 2.0

University

12 Qs

Regression Analysis

Regression Analysis

10th Grade - University

10 Qs

Nutrition Ch. 20

Nutrition Ch. 20

University

13 Qs

JavaScript

JavaScript

Assessment

Quiz

Other

University

Hard

Created by

Moses Nyirongo

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

You are designing a web page with a script that must dynamically change the content of a paragraph element to display the value returned by the function

randomQuote().

You have created the following code. Line numbers are included for reference only.

A. document.getElementById("tester").value = randomQuote();

B.   document.getElementById("tester").title = randomQuote();

C.   document.getElementById("tester").innerHTML = randomQuote();

D.   document.getElementById("tester").script = randomQuote();

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

You are creating a dynamic HTML page by using JavaScript.

 

Your page has an image of the sun. When the user’s mouse pointer moves across the image of the sun, the image should change to the image of the moon. When the user’s mouse pointer is no longer over the image should change back to the image of the sun.

 

You need to write the code for the image swap.

 

Which two events must you program for? (Choose two.)

onmouseup

onmouseout

A.   onmosedown

A.   onmouseover

onmouseenter

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You reveiw the following code
var x = 15;

x %=5;

When this code executes, the value of x is 0.
Review the underlined text. If it makes the statement correct, select “No change is needed”. If the statement is incorrect, select the answer choice that makes the statement correct.

No change is need

the value of x is 3

The value of x is 5

The value of x is undefined

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

when using a GET request using a form the data length is restricted.

True

False

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

You work as a JavaScript developer for Adventure Works. You are writing a simple script that performs the following actions:
-> Declares and initializes an array
-> Fills the array with 10 random integers
-> Adds every other number starting with the first element
How should you complete the code? (part 1)

var numbers = ___

{}

[]

""

()

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

You work as a JavaScript developer for Adventure Works. You are writing a simple script that performs the following actions:
-> Declares and initializes an array
-> Fills the array with 10 random integers
-> Adds every other number starting with the first element
How should you complete the code?(Part 2 )

for (var i = 0; i < 10; i++){

numbers.___(Math.round(Math.abs(Math.random()*10)));

}

var sum=0;

splice

push

pop

sort

7.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

You work as a JavaScript developer for Adventure Works. You are writing a simple script that performs the following actions:
-> Declares and initializes an array
-> Fills the array with 10 random integers
-> Adds every other number starting with the first element
How should you complete the code?(Part 3 )

for (var j=0; j<10; ___){

J++

j+1

j++

J+1

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?