Category: Programming

Showing all 23 articles in this category.

2020-07-15

Regular Expressions - I

A regular expression (shortened as regex ) is an extremely useful way of matching common patterns and texts such as emails, phone numbers, URLs etc. almost all ...

2020-07-27

Arraylist in Java

ArrayList class is based on the List Interface in java which is based on array data structure. ArrayList is widely used for its functionality and flexibility it...

2020-07-29

Collections in Java

What is Collections Framework in Java? In Java collection is an object that represents a group of objects (such as the classic Vector class). A Collections fram...

2020-08-18

LinkedList in Java

Similar to Arrays in java Linked List is also a Linear data structure. In Linked List unlike arrays elements are not stored in a contiguous locations and they a...

2020-08-22

Queues Interface in Java

Queue Interface: The Queue Interface in Java Collections provide functionality as a Queue in the real-life, it extends the collections interface. It represents ...

2020-08-27

Garbage Collection in Java

Garbage Collection in Java Garbage Collection means and as the name implies freeing up of space by the waste objects or garbage to avoid memory leaks. Since obj...

2020-09-21

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 ...

2020-10-02

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 word...

2020-10-04

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...

2020-10-09

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...

2020-10-12

Transactions in DBMS

What are Transactions in DBMS? A small unit of a program that contains several low level tasks are called Transactions. Basic Concept of transaction : A transac...

2020-10-15

File Organization

Files The file is a collection of records related to each other. The file size is limited by the size of the memory and storage medium. There are two important ...

2020-12-21

Stacks In Java

Stack is a linear data structure ( an abstract data type ) with a fixed capacity. Linear data structure which is simple to use and allows adding and removing el...

2020-12-21

NETWORK PROGRAMMING

Network Programming The term network programming refers to writing programs that execute across multiple devices (computers), in which the devices are all conne...

2021-01-29

Daemon thread in Java

Daemon thread in java: Daemon thread is a low priority thread providing services to the user thread. This thread runs in the background to perform tasks such as...