Web Development Skills Assessment

Web Development Skills Assessment

12th Grade

9 Qs

quiz-placeholder

Similar activities

Scriptwriting Conventions

Scriptwriting Conventions

10th - 12th Grade

10 Qs

CSD-Q9

CSD-Q9

9th Grade - University

11 Qs

Basics of MS Word

Basics of MS Word

12th Grade - University

10 Qs

HTML STYLES

HTML STYLES

12th Grade

6 Qs

HTML, JavaScript, CSS

HTML, JavaScript, CSS

9th - 12th Grade

10 Qs

Test Your Programming Knowledge

Test Your Programming Knowledge

12th Grade

10 Qs

TEXT MEDIA AND INFORMATION

TEXT MEDIA AND INFORMATION

12th Grade

8 Qs

Computer Science Very Hard

Computer Science Very Hard

1st - 12th Grade

10 Qs

Web Development Skills Assessment

Web Development Skills Assessment

Assessment

Quiz

English

12th Grade

Medium

Created by

mohd suhail

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does HTML stand for?

HyperText Multi Language

HyperText Markup Language

HighText Markup Language

HyperText Markup List

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which HTML tag is used to define an internal style sheet?

h1

h3

img

style

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the CSS box model?

To define the color of text on a web page.

To create animations for web elements.

The purpose of the CSS box model is to manage the layout and spacing of elements on a web page.

To specify the font style of a document.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which property is used to change the font of an element in CSS?

font-family

font-size

text-style

color

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the 'display' property do in CSS?

The 'display' property controls the layout behavior of an element in CSS.

The 'display' property sets the font size of an element.

The 'display' property changes the color of an element.

The 'display' property adds padding to an element.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax for referring to an external script called 'script.js'?

sdf

dxfg

dxg

script tag

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable in JavaScript?

A variable in JavaScript is a type of function that performs calculations.

A variable in JavaScript is a fixed value that cannot be changed.

A variable in JavaScript is a method used to define classes.

A variable in JavaScript is a named storage for data that can be changed.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create a function in JavaScript?

function myFunction: { // function body }

myFunction() => { // function body }

function myFunction() { // function body } or const myFunction = () => { // function body }

function:myFunction() { // function body }

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between '==' and '===' in JavaScript?

'==' checks type and value; '===' checks only value.

'==' can compare different types; '===' cannot.

'==' is loose equality; '===' is strict equality.

'==' is faster than '==='; '===' is slower.