Skip to main content

Networking Basics

Welcome back! So in our last blog, we went through some of the basics of an operating system. In this blog, we will be covering Networking Basics. Oh yes, let's jump right in!



  Introduction  



























  Networking Hardware  



A switch does what a hub does, but more efficiently. By paying attention to the traffic that comes across it, it learns which computers are connected to which port. We will go deeper into it in another blog, as far as the basics are concerned, these are more than enough!


Network Stack
Protocol Stack

 






Comments

Popular posts from this blog

Data Analytics Essentials

 This article aims at foundational knowledge of Data Analytics. After reading this article, you will be able to explain what Data Analytics actually is, list the key tools and technologies within the data ecosystem, look at the different roles associated with the modern data ecosystem, and will have a conceptual understanding of the data analysis lifecycle. Modern Data Ecosystem A modern data ecosystem includes a whole network of interconnected, independent, and continually evolving entities.  It includes data that has to be integrated from disparate sources, analyze to generate insights, and finally collaborate with the active stakeholders to present and act on the insights hence obtained. Let’s start with the  data sources . Data is available in a variety of structured and unstructured datasets, residing in text, images, videos, user conversations, social media platforms, the Internet of things (IoT devices), real-time events that stream data, legacy databases, and data...

Operating System Basics

Welcome back! So far we have covered HTML and CSS, and up next this we are meant to cover JavaScript, however, I ended up deciding to take a little break from our web development series to cover other topics. So in this blog, we will be going through some of the basics of Operating Systems. So without further ado, let's jump right in!   Introduction   Operating systems are an essential part of the IT  support. Everyone uses a computer to accomplish something,  whether that's browsing the web,  writing a novel, making graphics,  playing video games, et cetera.  Whatever the case may be,  they need to interact with their operating system to do.  In I.T.  support, it's essential to understand how operating systems  work so you can help someone accomplish the task they set out to do so,  whether that's figuring out why an application won't start,  why the graphics look funny on their video games, or anything else.  T...

CSS basics for absolute beginners

If you are here, I'm going to assume that you have already visited my previous blog on HTML basics for absolute beginners. If not click here and have a glance at it ASAP!!! What is CSS? CSS stands for Cascading Style Sheets, where HTML defines the structure of the web-page and CSS helps us to change the appearance of the HTML. HTML without CSS is ugly, therefore HTML and CSS go hand in hand. The version of CSS that we are gonna use here is known as the CSS3 (like HTML5). Apart from the structure and appearance, if you want to add functionality to the webpage, then we need something known as the Javascript which will be the topic for another blog, so now without further ado, let us dive into CSS3. Why CSS? The best thing about CSS is that it allows you to make global changes throughout your website thereby maintaining a consistent appearance. It means that you don't have to change each and every page individually, instead,  CSS helps you to change every instance of a particula...