Frontend File Setup

Frontend File Setup

Professional Development

9 Qs

quiz-placeholder

Similar activities

PHP Tours Meetup #15 (CSS3)

PHP Tours Meetup #15 (CSS3)

Professional Development

10 Qs

Html(Beginners)

Html(Beginners)

8th Grade - Professional Development

13 Qs

Web Development Workshop

Web Development Workshop

University - Professional Development

10 Qs

Programming Knowledge Quiz (Medium)

Programming Knowledge Quiz (Medium)

5th Grade - Professional Development

10 Qs

JRDL - Intro to DOM

JRDL - Intro to DOM

6th Grade - Professional Development

12 Qs

Who Wants To Be a Programmer?

Who Wants To Be a Programmer?

University - Professional Development

10 Qs

How Much You Know ?

How Much You Know ?

11th Grade - Professional Development

10 Qs

HTML-CSS - Fundamentos

HTML-CSS - Fundamentos

Professional Development

10 Qs

Frontend File Setup

Frontend File Setup

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Faith Mwangi

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you link a JavaScript file to an HTML document?

<body> <script>script.js</script>

</body>

<script href="script.js"></script>

<script src="script.js"></script>

<js>script.js</js>

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you link a CSS file to an HTML document?

<head> <style>style.css</style>

</head>

<style href="style.css"></style>

<link rel="stylesheet" type="text/css" href="style.css">

<css>style.css

</css>

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the roles of HTML on a webpage?

Used to style the content and layout of the webpage

Used to add interactivity and dynamic behavior to the webpage

Used to structure and define the content of a webpage

Used to retrieve data from a database

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the roles of CSS on a webpage?

Used to add interactivity and dynamic behavior to the webpage

Used to structure and define the content of a webpage

Used to style the content and layout of the webpage

Used to retrieve data from a database

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the roles of JavaScript on a webpage?

Used to add interactivity and dynamic behavior to the webpage

Used to structure and define the content of a webpage

Used to style the content and layout of the webpage

Used to retrieve data from a database

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the DOM

(Document Object Model)

A markup language used to define the content of a webpage

A programming interface for HTML and XML documents

A server-side scripting language

A client-side scripting language

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How is DOM related to HTML?

It represents the visual design of a webpage

It is used to define the content of a webpage

It represents the structure of a webpage as a tree-like structure

It is used to add interactivity to a webpage

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How is DOM related to CSS?

It is used to define the content of a webpage

It is used to add interactivity to a webpage

It represents the visual design of a webpage

JavaScript can manipulate the DOM to dynamically modify the content and style of the webpage

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How is DOM related to JavaScript?

CSS is used to style the elements represented in the DOM

JavaScript can interact with the DOM to access and manipulate the content and style of a webpage

DOM is used to define the content of a webpage

DOM is a client-side scripting language