Different Patterns of cell tower Mostly Circular pattern is not used because dead zone appear in circular pattern Most used pattern Hexagonal Pattern is mostly used pattern Mobile Tower in Early Stage Mobile Tower Range is 50 kms Nowadays Mobile Tower Mobile Tower Range varies how many users in that range Working of Mobile Network … Continue reading How Mobile Network works
Author: Shanthosh Lakshman
Polymer Memory
Semiconductor memory is a digital electronic semiconductor device used for digital data storage, such as computer memory, where data is stored within metal–oxide–semiconductor (MOS) memory cells on a silicon integrated circuit memory chip. Silicon Shortage A metal made from the second-most abundant element on Earth has become scarce, threatening everything from car parts to computer chips … Continue reading Polymer Memory
REPRESENT A POLYNOMIAL AS A LINKED LIST
Algorithm: 1: Get the two polynomials. First polynomial is P1 and second polynomial is P22: For addition of two polynomials if exponents of both the polynomials are same then we adthe coefficients. For storing the result we will create the third linked lists say P3.3: If Exponent of P2 is greater than exponent of P1 … Continue reading REPRESENT A POLYNOMIAL AS A LINKED LIST
QUEUE ADT USING LINKED LIST
Algorithm: Define a struct for each node in the queue. Each node in the queuecontains data and link to the next node. Front and rear pointer points to first andlast node inserted in the queue.The operations on the queue area. INSERT data into the queueb. DELETE data out of queueINSERT DATA INTO queuea. Enter the … Continue reading QUEUE ADT USING LINKED LIST
STACK ADT USING LINKED LIST
Algorithm: Define a struct for each node in the stack. Each node in the stack contains data andlink to the next node. TOP pointer points to last node inserted in the stack.The operations on the stack area. PUSH data into the stackb. POP data out of stackPUSH DATA INTO STACKa. Enter the data to be … Continue reading STACK ADT USING LINKED LIST
Array Implementation of list ADT
ALGORITHM: Step1: Create nodes first, last; next, prev and cur then set the value as NULL.Step 2: Read the list operation type.Step 3: If operation type is create then process the following steps Allocate memory for node cur.Read data in cur's data area.Assign cur node as NULL.Assign first=last=cur. Step 4: If operation type is Insert … Continue reading Array Implementation of list ADT
How does the internet works
In other words there are two main concepts that are fundamental to the way the Internet functions: Packets Protocols. Packets In networking, a packet is a small segment of a larger message. Each packet contains both data and information about that data. The information about the packet's contents is known as the "header," and it … Continue reading How does the internet works
How does a web browsers work
Today, it is difficult to imagine a world without internet. The web browser is at the heart of how we experience the internet. Every day, millions visit websites via browsers. Five major browsers — Chrome, Firefox, Internet Explorer, Safari and Opera — account 95% of web traffic. A major role of a web browser is to accept a web URL via … Continue reading How does a web browsers work
How to create a website
Step 1 : Pick a catchy Domain name Step 2 : Register a domain name in Domain Name System (DNS) nameservers Step 3 : Register a server to get webpages in a websites Step 4 : Create a web pages using HTML, CSS , Javascript, PHP etc Step 4.1: Alternatively use web hosting like wordpress … Continue reading How to create a website
Employee Payroll System
Algorithm: Step 1 Start the process Step 2 Prompt the user with converter choice 1. Programmer 2. Assistant Professor 3. Associate Professor 4. Professor 5. Exit and get the choice. Step 3 If user selects a Programmer then proceed to step 4 Step 4 Get the user details [Name, ID, Address, Mail ID and Mobile … Continue reading Employee Payroll System