Lesson 1 - Webdev

Lesson 1 - Webdev

10th Grade

9 Qs

quiz-placeholder

Similar activities

JS Quiz

JS Quiz

University

10 Qs

Basic C# Quiz

Basic C# Quiz

6th Grade - University

8 Qs

Как хорошо ты знаешь HTML ?

Как хорошо ты знаешь HTML ?

University

10 Qs

JRDL - JS Arrays and Objects

JRDL - JS Arrays and Objects

6th Grade - Professional Development

12 Qs

C# 101 Mid-Semester Review

C# 101 Mid-Semester Review

9th - 12th Grade

12 Qs

CodeHS 8.1 Introduction to HTML

CodeHS 8.1 Introduction to HTML

7th - 10th Grade

10 Qs

HTML

HTML

University

10 Qs

Unit 4 Quiz

Unit 4 Quiz

12th 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