AfterAcademy Tech
In this blog, we will learn what is an Ip address and what are the various versions of IP addresses being used. We will also discuss what are the types of IP addresses depending upon how they are assigned to any system.
29 Feb 2020
In this blog, we'll learn about the Network Operating System and its various features. We'll also see the types of Network Operating System, their advantages, and disadvantages.
In this blog, we are going to master the concepts of Mongoose, MongoDB with the help of node.js.
In this blog, we will first learn about the MAC and IP addresses in brief. And then, we'll see the dissimilarities between the two.
In this blog, we will first briefly understand TCP and UDP, and then we will see the dissimilarities between them. We'll also see which one is better to implement in which case.
In this blog, we will learn about what is an antivirus and how does it work. We will then discuss the dissimilarities between the firewall and antivirus.
This blog deals with the introduction of greedy algorithms for beginners and enthusiasts.
Merge sort is a divide-and-conquer algorithm based on the idea of breaking down a list into several sub-lists until each sublist consists of a single element and merging those sublists in a manner that results into a sorted list.
Priority Queues are similar to queues where we insert an element from the back and remove an element from the front, but with one difference that the logical order of elements in the priority queue depends on the priority of the elements. In this blog, we will discuss the priority queues, its properties, its various implementations, and its applications. We will also analyze and compare the various implementations of the Priority Queue.
Heap is a very useful data structure that every programmer should know well. The heap data structure is used in Heap Sort, Priority Queues. The understanding of heaps helps us to know about memory management. In this blog, we will discuss the structure, properties, and array implementation of heaps.