Lesson 1 - Webdev

Lesson 1 - Webdev

10th Grade

9 Qs

quiz-placeholder

Similar activities

Intro to JavaScript

Intro to JavaScript

6th - 12th Grade

10 Qs

JavaScript

JavaScript

University

13 Qs

JavaScript Quiz

JavaScript Quiz

University

12 Qs

JavaScript Variables

JavaScript Variables

3rd Grade - University

13 Qs

basics of javascript

basics of javascript

9th - 12th Grade

11 Qs

TLE Q3 M1-5

TLE Q3 M1-5

10th Grade

10 Qs

Intro to JavaScript

Intro to JavaScript

9th - 12th Grade

10 Qs

Evaluasi Javascript 3

Evaluasi Javascript 3

10th Grade

10 Qs

Lesson 1 - Webdev

Lesson 1 - Webdev

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Atomik Atomik

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does HTML primarily provide for a website?

Styling

Structure

Behavior

Database connection

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which language is used to style the HTML structure?

JavaScript

CSS

PHP

HTML

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What is the role of JavaScript in modern websites?

To provide structure

To connect to databases

To style the website

To add dynamic behavior

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an example of a simple website?

Wikipedia

Stripe

PopWebDesign

Bruno Simon’s Portfolio

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of CSS in web development?

To manage server-side logic

To style the HTML structure

To create database connections

To add interactivity

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does console.log() do in JavaScript?

Displays a popup alert on the screen

Outputs a message to the console

Create a new variable

Changes the color of the webpage

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct way to print "Hello World" to the console?

console.log = ("Hello World")

console.log("Hello World")

echo 'Hello World'
print("Hello World")

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly declares a constant named city with the value "Jakarta"?

const city = "Jakarta";

variable city = 'Jakarta';

city is 'Jakarta';

define city = 'Jakarta';

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To declare a constant in JavaScript, we use the keyword

constant

define
var

const