All Easy Articles
Developers always prefer clean and structured code for projects. Organizing the codes according to a design pattern helps in the maintenance of the software. By… Read More
Every document in the collection has an “_id” field that is used to uniquely identify the document in a particular collection it acts as the… Read More
JavaScript is Everywhere. Millions of web pages are built on JavaScript and it’s not going anywhere at least for now. On one side HTML and… Read More
Linear equation is an algebraic equation that is a representation of the straight line. Linear equations are composed of variables and constants. These equations are… Read More
Given a regular polygon of N sides, the task is to find the maximum sided polygon that can be inscribed inside the given polygon by… Read More
Web Scraping is a powerful tool to gather information from a website. To scrape multiple URLs, we can use a Python library called Newspaper3k. The… Read More
Given a string S of length N, the task is to find the lexicographically smallest subsequence of length (N – 1), i.e. by removing a… Read More
Given an array, arr[] of size N and an integer K, the task is to find the minimum number of operations required to make all… Read More
The task is to find all possible triangles having the same perimeter and area. Examples:  The triangle having sides (6, 8, 10) have the same… Read More
In the initial stages of Android development, learners do write codes in such a manner that eventually creates a MainActivity class which contains all the… Read More
The floating action button is a bit different button from the ordinary buttons. Floating action buttons are implemented in the app’s UI for primary actions… Read More
Mathematical induction is a concept in mathematics that is used to prove various mathematical statements and theorems. The principle of mathematical induction is sometimes referred… Read More
Given a binary string S , the task is to find the smallest string possible by removing all occurrences of substrings “01” and “11”. After… Read More
Versa networks is unique among software-defined networking vendors providing an end-to-end solution that both simplifies and secures the WAN/ branch office network. It had 4… Read More
In Python, list slicing is a common practice and it is the most used technique for programmers to solve efficient problems. Consider a Python list,… Read More
Here, we are designing an android app to demonstrate the use of GridView layout. The GridView layout is a ViewGroup that groups view in a… Read More
If you are working on an application inside Docker Container, you might need commands to install packages or access file system inside the Docker Container.… Read More
Given two arrays and our task is to find their common elements. Examples: Input:  Array1 = [“Article”, “for”, “Geeks”, “for”, “Geeks”],            … Read More
Morse code is a method used in telecommunication to encode text characters as standardized sequences of two different signal durations, called dots and dashes. Morse… Read More
A number that is divisible by 2 and generates a remainder of 0 is called an even number. All the numbers ending with 0, 2,… Read More