All Easy Articles
Below are some interesting properties of Modular Addition:   (a + b) mod m = ((a mod m) + (b mod m)) mod m (a + b… Read More
Routers are essential networking devices that direct the flow of data over a network. Routers have one or more input and output interfaces which receive… Read More
What are Joins? A join is a query that combines records from two or more tables. A join will be performed whenever multiple tables appear… Read More
The std::less is a member of the functional class (<functional.h>) used for performing comparisons. It is defined as a function object class for less than… Read More
In this article, we will discuss Object-Oriented Programming (OOPs) in R Programming Language. We will discuss the S3 and S4 classes, the inheritance in these… Read More
Given an array arr[], the task is to find the maximum LCM when the elements of the array are taken in pairs. Examples: Input: arr[]… Read More
Given a list of integer each representing the length of each stick and an integer which tells how many times we can break a stick… Read More
Given a string S consisting of lower case alphabets of size N and Q queries in the range [L, R], the task is to print… Read More
Given two integers N and R. The task is to calculate the probability of getting exactly r heads in n successive tosses. A fair coin has… Read More
Given a number N, the task is to print the numbers from N to 1.Examples:  Input: N = 10 Output: 10 9 8 7 6 5… Read More
1. First Come First Served (FCFS) : First Come First Served (FCFS) is the simplest type of algorithm. It is a non-preemptive algorithm i.e. the… Read More
THe Optical memory is an electronic storage medium that uses a laser beam to store and retrieve digital (binary) data. In optical storage technology, a… Read More
The del keyword in Python is primarily used to delete objects in Python. Since everything in Python represents an object in one way or another,… Read More
Given a number N, write a C program to find the count of digits in the number N.  Examples: Input: N = 12345 Output: 5… Read More
Prerequisites: Introduction to OpenCV OpenCV is the huge open-source library for computer vision, machine learning, and image processing and now it plays a major role… Read More
Method Overloading: Method Overloading is an example of Compile time polymorphism. In this, more than one method of the same class shares the same method name… Read More
In this article, we will read How to take input from stdin in Python. There are a number of ways in which we can take… Read More
Sometimes, while working with Python strings, we can have a problem in which we need to replace all occurrences of a substring with other. Input… Read More
PyQt5 is one of the most advanced GUI library for Python. While being powerful, it’s also well structured and makes it easy for you to… Read More
It is a creational design pattern that talks about the creation of an object. The factory design pattern says to define an interface ( A… Read More