Lesson 1 - Webdev

Lesson 1 - Webdev

10th Grade

9 Qs

quiz-placeholder

Similar activities

Computer Programming and IDEs (Review)

Computer Programming and IDEs (Review)

11th Grade

12 Qs

Java Basic Syntax Quiz

Java Basic Syntax Quiz

10th Grade

10 Qs

Quiz HTML kelas 9

Quiz HTML kelas 9

9th - 12th Grade

10 Qs

CSF U3 Networks p1

CSF U3 Networks p1

9th - 12th Grade

12 Qs

for loops & while loops

for loops & while loops

University - Professional Development

10 Qs

Javascript & Client side scripting

Javascript & Client side scripting

10th - 12th Grade

10 Qs

Software Development Quiz

Software Development Quiz

6th Grade - Professional Development

10 Qs

Web 201 Mid-Semester Assessment

Web 201 Mid-Semester Assessment

9th - 12th Grade

14 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