Introduction The Dynamic Host Configuration Protocol is also known as DHCP, It is a network management protocol used on Internet Protocol(IP), wherein Dynamically assigning an IP address to other network parameters so the device can easily communicate with other IP networks. A DHCP server enables the device to request IP […]
Shell Script
A shell script is a computer program designed to be run by the Unix/Linux shell. A shell is a command-line interpreter and typical operations performed by shell scripts include file manipulation, program execution, and printing text. Types of Shell scripts are: The Bourne Shell The C Shell The Korn Shell The […]
Qualification Criteria for MI – IPL PlayOffs – NRR Explained
Here is the qualification criteria for MI to get the IPL points table 4th spot for play off match. The net run rate calcualtion for qualification is explained.
SQL Commands
SQL commands: SQL commands are the instructions, given to a database to perofrm some functions and tasks there are also called queries, these commands or rather queries can be used to search the database and can perform functions like creation, updation, delete, replace operations. SQL commands are divided into four […]
Dream11 IPL 2020 – Points Table – Team Positions
DIPL2020 Points Table – Season 13 – Dubai Let’s see how the points table stands now. Pos Team Pld Won Lost Tied N/R Net RR Pts Q Mumbai Indians MI 14 9 5 0 0 1.107 18 Q Delhi Capitals DC 14 8 6 0 0 -0.109 16 Q Sunrisers […]
Polymorphism in Java
The word polymorphism means having many forms. This feature of object-oriented programming allows us to perform a single action in different ways. In other words, polymorphism allows you to define one interface and have many implementations. The word “poly” means many and “morphs” means forms, which means multiple forms. In Java, […]
IPL 2020 Points Table PDF – Winners List
IPL 2021 Points table Note: Click on this link to get latest points table for IPL 2021. Dream 11 – IPL 13 2020 Points Table IPL13 is proving to be tougher than any other season. New teams are coming up at the top of the points table. It’s only the […]
Database Management System
What is DBMS? DBMS stands for Database Management System which is a software used to manage databases. For Example, MySQL, Oracle, etc. are some of the popular commercial DBMS today, it primarily functions as an interface between users and the database at the same time managing the data in order […]
Insertion in a Doubly Linked List
Singly Linked List is the list that holds the links to the next node and so on, each node points to the next node, but the main drawback is it does not point to the last node in the list, Such a linked representation is called Doubly Linked List Representation […]
Program To Implement Queue in Java
A Queue is a linear data structure, following a particular order FIFO (First In First Out) where we can insert elements at one end and remove elements in the other end just like a human queue from the supermarket or railways ticket booking counters. In the previous article, we saw […]