This community-built FAQ covers the “Review” exercise from the lesson “Overview of the Internet”.
Paths and Courses
This exercise can be found in the following Codecademy content:
Code Foundations
FAQs on the exercise Review
There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
Need broader help or resources? Head here.
Looking for motivation to keep learning? Join our wider discussions.
Learn more about how to use this guide.
Found a bug? Report it!
Have a question about your account or billing? Reach out to our customer support team!
None of the above? Find out where to ask other questions here!
I appreciated the review. Does anyone know of any credible and authoritative sources for defining internet technology terminology?
Thanks for the lesson!
As a review, I want to attempt to answer the questions that were asked during the beginning of the session:
How is data sent from one computer to another?
Data is sent over the internet using the TCP/IP protocol, which provides the standards for data transfer.
What is the relationship between a browser and a server?
A browser acts like a client and sends requests to the server, and the server waits for incoming requests and then sends back the data.
How is code turned into the experience that users see in their browsers?
When a user requests a webpage, the browser sends a request to the server. In response, the server sends back an HTML file that contains the contents of the page and any links to any additional resources needed to fully display the page resources like CSS stylesheets, media files, and JavaScript files. The browser then sends additional requests in parallel to get each of these resources, rendering and displaying them as soon as they are fully downloaded.
How has the web and web development changed from its invention to today?
Initially, the web was static and content was generated by a single source. It then evolved to become dynamic and interactive and enable user-generated content. Technical advances enabled these changes, like jQuery and the rise of web frameworks.
Then, with the rise of smartphones, websites must adapt to different devices and screen sizes. So, responsive design helped the websites to adjust based on different screens.
1 Like