All Easy Articles
Given an array arr[] of positive integers of size N, the task is to find the maximum product of bitonic subsequence of size 3.Bitonic Subsequence:… Read More
In this article we will see how to set action to a push button. QPushButton is a simple button in PyQt5, when clicked by a… Read More
Timezone is defined as a geographical area or region throughout which standard time is observed. It basically refers to the local time of a region… Read More
Dunder or magic methods in Python are the methods having two prefixes and suffix underscores in the method name. Dunder here means “Double Under (Underscores)”.… Read More
Given an array of ranges arr[] of length N and a number D, the task is to find the minimum amount by which the number… Read More
Given a large number N, the task is to find the total number of factors of the number N modulo M where M is any… Read More
Pre-requisites: Graph and its representations Greedy Algorithms | Set 5 (Prim’s Minimum Spanning Tree (MST)) Kruskal’s Minimum Spanning Tree Algorithm | Greedy Algo-2 Given a… Read More
Static Allocation: Static allocation is a procedure which is used for allocation of all the data objects at compile time. Static allocation is possible only… Read More
Flip-Flop : Flip-flop is a basic digital memory circuit, which stores one bit of information.Flip flops are the fundamental blocks of most sequential circuits. It… Read More
Testing documents are prepared at different stages. These documents are discussed as follows. 1. Before Testing: Since testing begins with the generation of the test… Read More
A database refers to the collection of data (files and records) which is stored and can be manipulated using a software named Database Management Systems.… Read More
We will create a basic todo app to understand the basics of JavaScript. In this web app, one can create a todo list and can… Read More
Given an integer A, the task is to find the maximum value possible(B) which is less than A, such that xor of these two numbers… Read More
Sometimes, while working with strings, we can have a problem in which we need to test if a string is a subsequence of another. This… Read More
In Python, There Are Several Libraries for Graphical User Interface. Tkinter is one of them that is most useful. It is a standard interface. Tkinter… Read More
Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. The Axes Class contains most of the figure elements:… Read More
Many times while working with Python strings, we have a problem in which we need to remove certain characters from strings. This can have applications… Read More
In many cases you need to work with service boot persistence in Linux, which means all those services like ssh, HTTP is started automatically when… Read More
Given N stones in a row from left to right. From each stone, you can jump to at most K stones. The task is to… Read More
Given a string, we have to find out all subsequences of it. A String is a subsequence of a given String, that is generated by… Read More