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
Uncategorized
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
How does a website works
The collection of webpages is called website. When we enter something like lakshthink.tech.blog the request goes to one of many special computers on the internet known as Domain Name Servers. i.e., DNS. All these requests are routed through various routers and switches. In other words, a user enters a URL into a browser. The request … Continue reading How does a website works
Array Implementation of list ADT
Algorithm: Step 1: 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. 1. Allocate memory for node cur. 2. Read data in cur's data area. 3. Assign cur node as NULL. … Continue reading Array Implementation of list ADT
Unit Converters Application using packages
Algorithm:Step 1 Start the processStep 2 Prompt the user with converter choice 1. Currency 2.Distance 3. Time 4. Exit and thechoice.Step 3 If user selects a Currency Converter then proceed to step 4Step 4 Proceed with prompting Currency Converter Choices 1.DOLLER to INR 2. EURO to INR 3. YEN to INR 4.INR to DOLLER 5. … Continue reading Unit Converters Application using packages
How to Run Java Programs in Ubuntu
Running Java programs in Ubuntu Step 1: Install Java compiler The simplest way to install JDK on Ubuntu is to go with the default offering from Ubuntu: sudo apt install default-jdk Once installed, verify that javac is available now. javac --version The Output will come us javac 11.0.11 finally java compiler is successfully installed. Step … Continue reading How to Run Java Programs in Ubuntu
ARRAY IMPLEMENTATION OF QUEUE ADT
ALGORITHM: 1. Define a array which stores queue elements.. 2. The operations on the queue are a. a)INSERT data into the queue b. b)DELETE data out of queue 3. INSERT DATA INTO queue a. Enter the data to be inserted into queue. b. If TOP is NULL i. The input data is the first node … Continue reading ARRAY IMPLEMENTATION OF QUEUE ADT