wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

100Devs - LwL - Class01 - Internet and HTML Basics

Total questions: 32

Worksheet time: 16mins

Name
Class
Date
1.

What is the best study methodology?

a)

Spaced Repetition

b)

Highlighting

c)

Re-reading

d)

All are correct

2.

What is the internet?

a)

All are correct - for this course purpose, this is correct. Click here.

b)

Wires

c)

Cats

d)

A connection between client side-devices and a server-side devices

3.

What is the specific kind of files a browser opens best?

a)

DOC, PDF and HTML

b)

HTML, CSS and JAVASCRIPT

c)

PDF, HTML and CSS

d)

GIF, HTML and JAVASCRIPT

4.

What happens when you type dominos.com at your browser?

a)

The request leaves the browser on your device, reaches the dominos site, and "calls" for the files to render the page

b)

It loads the dominos site

c)

It gets Leon in trouble

d)

Nothing happens, as that address is blocked

5.

If you saw some content on a page, that was?

a)

HTML

b)

CSS

c)

JavaScript

d)

DNS

6.

You saw something on a page and it didnt look like hot garbage. What was responsible for that?

a)

HTML

b)

CSS

c)

JavaScript

d)

ISP

7.

You interact with the content on a page. What was responsible for that?

a)

CSS

b)

HTML

c)

ISP

d)

JavaScript

8.

What is front-end code?

a)

JavaScript only

b)

HTML, CSS and JavaScript

c)

CSS only

d)

HTML and CSS only, the server handles JavaScript

9.

What is back-end code?

a)

It is the code that runs on the server

b)

It is code that runs on our phones and computers

c)

Code that runs on the cables

d)

Code from the ISP

10.

What does the back-end code can handle?

a)

How the page is displayed

b)

Code that listen to requests, store name and passwords, credit card information...

c)

The HTML content of the page you see

d)

The interaction between the client side device, and the server side-device

11.

What is full stack web dev?

a)

Being able to code JavaScript

b)

Being able to code HTML and CSS

c)

Being able to code the front end and back end code

d)

Being able to build computers from scratch

12.

Can a client-side device also be a server?

a)

It must be to access content online

b)

Technically yes, but it is unadvised

13.

What does an ISP do?

a)

It converts "facebook.com" into "192.187.4.82"

b)

It is responsible for the page looks on your device

c)

Helps us connect to the internet "wire"

14.

What are the steps between your phone and the DNS?

a)

Request leaves the phone, connects to the wire via ISP, and reaches the DNS

b)

Request leaves the phone, connects to a server, gets sent back

c)

Request leaves the phone, reaches the Server, gets converted to DNS

d)

Reques leaves the phone, reaches the internet, gets answered with files from the DNS

15.

What does the DNS do?

a)

It converts the "text address" (facebook.com) to the "ip address"(137.172.82.44)

b)

It connects your device to the ISP

c)

It connects your device to the internet

d)

It connects your device to a server

16.

What are URLs?

a)

It is the Internet Service

b)

It connects your "text address" to your "ip adress" (137.172.82.44)

c)

It is the "text address" (facebook.com), the web address

17.

What is HTTP?

a)

It is the Internet Protocol

b)

It connects your "text adress" to your "ip adress"

c)

It is the protocol that makes the connection between client-side devices, ISP, DNS, servers work

18.

What was the benefit introduced by HTTPS?

a)

None, in practical terms, the internet is the same

b)

It secures the server side delivery of files and information

c)

It secured/encrypted the content that left the client-side devices, securing their personal data.

19.

What was the browser wars?

a)

Browser makers wrote code independently and a page working on one browser would be broken in another

b)

Tim Berners Lee's idea of a unified internet protocol

20.

What is the Golden Rule?

a)

content is only on HTML, style only on CSS, and interactions only on JavaScript

b)

content is only on HTML, style only on CSS, and interactions only on JavaScript

c)

content is only on HTML, style only on CSS, and interactions only on JavaScript

d)

All are correct :)

21.

According to the Golden Rule: If you must change the color of a text on a page, which type of file will you edit?

a)

A HTML file

b)

A JavaScript file

c)

A CSS file

d)

All are correct

22.

What is Separation of concerns?

a)

content is only on HTML, style only on CSS, and interactions only on JavaScript

b)

It is the Golden Rule

c)

Javascript should handle interactions, HTML content, and CSS the looks/style

d)

All are correct

23.

According to the Golden Rule: If you must add a paragraph to a page, which type of file will you edit?

a)

A HTML file

b)

A JavaScript file

c)

A CSS file

d)

All are correct

24.

Which of these is a closing tag?

a)

</p>

b)

</section>

c)

</figure>

d)

All

25.

Where does the content goes?

a)

After the </p> tag

b)

Every bit of content must be wrapped in tags

c)

on the CSS file

d)

All are correct

26.

How to denote the MOST IMPORTANT content on the page?

a)

<a>

b)

<head>

c)

<h1>

d)

<p>

27.

I didnt write CSS but the browser is styling my page. What is going on?

a)

The browser wars is still going on, alive and well, and downsized. The styling is default from the browser

b)

There is a CSS file on the folder, somewhere

c)

The JavaScript will change the looks

d)

The server is styling the content

28.

How to pick the correct kind of tag?

a)

HTML tags should be chosen based on 1. the semantic meaning of the tag and 2. the importance of the content

b)

choose tag based on how it looks. A headline should be big, so it is a H1

c)

choose tag based on interactions

d)

it is unimportant

29.

Which kind of tag should be used to a big block of text (content)?

a)

<span>content </span>

b)

<p> content </p>

c)

<section>content </section>

d)

<h1>content</h1>

30.

Which tag should be used to list items?

a)

<ul> <li> list item </li> </ul>

b)

<div> list item </div>

c)

<a> list item </a>

d)

<h1> list item </h1>

31.

Which tag should be used to ordered list items?

a)

<ol> <li> list item </li> </ol>

b)

<div> list item </div>

c)

<a> list item </a>

d)

<h1> list item </h1>

32.

Which tag should be used to create a link?

a)

<p href="https://www.linkAdress.com"> link text </p>

b)

<ul href="https://www.linkAdress.com"> link text </ul>

c)

<li href="https://www.linkAdress.com"> link text </>

d)

<a href="https://www.linkAdress.com"> link text </a>