NEW
Font size
Worksheets100Devs - LwL - Class01 - Internet and HTML Basics
Total questions: 32
Worksheet time: 16mins
What is the best study methodology?
Spaced Repetition
Highlighting
Re-reading
All are correct
What is the internet?
All are correct - for this course purpose, this is correct. Click here.
Wires
Cats
A connection between client side-devices and a server-side devices
What is the specific kind of files a browser opens best?
DOC, PDF and HTML
HTML, CSS and JAVASCRIPT
PDF, HTML and CSS
GIF, HTML and JAVASCRIPT
What happens when you type dominos.com at your browser?
The request leaves the browser on your device, reaches the dominos site, and "calls" for the files to render the page
It loads the dominos site
It gets Leon in trouble
Nothing happens, as that address is blocked
If you saw some content on a page, that was?
HTML
CSS
JavaScript
DNS
You saw something on a page and it didnt look like hot garbage. What was responsible for that?
HTML
CSS
JavaScript
ISP
You interact with the content on a page. What was responsible for that?
CSS
HTML
ISP
JavaScript
What is front-end code?
JavaScript only
HTML, CSS and JavaScript
CSS only
HTML and CSS only, the server handles JavaScript
What is back-end code?
It is the code that runs on the server
It is code that runs on our phones and computers
Code that runs on the cables
Code from the ISP
What does the back-end code can handle?
How the page is displayed
Code that listen to requests, store name and passwords, credit card information...
The HTML content of the page you see
The interaction between the client side device, and the server side-device
What is full stack web dev?
Being able to code JavaScript
Being able to code HTML and CSS
Being able to code the front end and back end code
Being able to build computers from scratch
Can a client-side device also be a server?
It must be to access content online
Technically yes, but it is unadvised
What does an ISP do?
It converts "facebook.com" into "192.187.4.82"
It is responsible for the page looks on your device
Helps us connect to the internet "wire"
What are the steps between your phone and the DNS?
Request leaves the phone, connects to the wire via ISP, and reaches the DNS
Request leaves the phone, connects to a server, gets sent back
Request leaves the phone, reaches the Server, gets converted to DNS
Reques leaves the phone, reaches the internet, gets answered with files from the DNS
What does the DNS do?
It converts the "text address" (facebook.com) to the "ip address"(137.172.82.44)
It connects your device to the ISP
It connects your device to the internet
It connects your device to a server
What are URLs?
It is the Internet Service
It connects your "text address" to your "ip adress" (137.172.82.44)
It is the "text address" (facebook.com), the web address
What is HTTP?
It is the Internet Protocol
It connects your "text adress" to your "ip adress"
It is the protocol that makes the connection between client-side devices, ISP, DNS, servers work
What was the benefit introduced by HTTPS?
None, in practical terms, the internet is the same
It secures the server side delivery of files and information
It secured/encrypted the content that left the client-side devices, securing their personal data.
What was the browser wars?
Browser makers wrote code independently and a page working on one browser would be broken in another
Tim Berners Lee's idea of a unified internet protocol
What is the Golden Rule?
content is only on HTML, style only on CSS, and interactions only on JavaScript
content is only on HTML, style only on CSS, and interactions only on JavaScript
content is only on HTML, style only on CSS, and interactions only on JavaScript
All are correct :)
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 HTML file
A JavaScript file
A CSS file
All are correct
What is Separation of concerns?
content is only on HTML, style only on CSS, and interactions only on JavaScript
It is the Golden Rule
Javascript should handle interactions, HTML content, and CSS the looks/style
All are correct
According to the Golden Rule: If you must add a paragraph to a page, which type of file will you edit?
A HTML file
A JavaScript file
A CSS file
All are correct
Which of these is a closing tag?
</p>
</section>
</figure>
All
Where does the content goes?
After the </p> tag
Every bit of content must be wrapped in tags
on the CSS file
All are correct
How to denote the MOST IMPORTANT content on the page?
<a>
<head>
<h1>
<p>
I didnt write CSS but the browser is styling my page. What is going on?
The browser wars is still going on, alive and well, and downsized. The styling is default from the browser
There is a CSS file on the folder, somewhere
The JavaScript will change the looks
The server is styling the content
How to pick the correct kind of tag?
HTML tags should be chosen based on 1. the semantic meaning of the tag and 2. the importance of the content
choose tag based on how it looks. A headline should be big, so it is a H1
choose tag based on interactions
it is unimportant
Which kind of tag should be used to a big block of text (content)?
<span>content </span>
<p> content </p>
<section>content </section>
<h1>content</h1>
Which tag should be used to list items?
<ul> <li> list item </li> </ul>
<div> list item </div>
<a> list item </a>
<h1> list item </h1>
Which tag should be used to ordered list items?
<ol> <li> list item </li> </ol>
<div> list item </div>
<a> list item </a>
<h1> list item </h1>
Which tag should be used to create a link?
<p href="https://www.linkAdress.com"> link text </p>
<ul href="https://www.linkAdress.com"> link text </ul>
<li href="https://www.linkAdress.com"> link text </>
<a href="https://www.linkAdress.com"> link text </a>
