All Basic Articles
Arithmetic circuits can perform seven different arithmetic operations using a single composite circuit. It uses a full adder (FA) to perform these operations. A multiplexer (MUX)… Read More
In project management, there are many categories that need to plan as well while planning the project. You will see each category in detail that… Read More
ROM is a read-only memory which is used to store the data. The memory in the ROM is organized as a two-dimensional array of memory… Read More
Even Permutations: A permutation is called even if it can be expressed as a product of even number of transpositions. Example-1:       Here we… Read More
A project is a combination of interrelated activities to achieve a specific objective within a schedule, budget, and quality. It involves the coordination of group… Read More
Arguments are an important part of logical reasoning and philosophy. It also plays a vital role in mathematical proofs. In this article, we will throw… Read More
Let G be a non-empty set, then a one-one onto mapping to itself that is as shown below is called a permutation.   The number of… Read More
Given an array arr[] consisting of N positive integers, the task is to count subarrays consisting of single-digit elements only. Examples: Input: arr[] = {0,… Read More
Given an array arr[] of size N and a positive integer K, the task is to find the maximum prefix sum after K reversals of… Read More
Zero-Sum Game:A zero-sum game is one in which no wealth is created or destroyed. So, in a two-player zero-sum game, whatever one player wins, the… Read More
Architectural Genre is used to define the architectural approach for the build of any structure. Considering the software programming areas, the architectural designs point to… Read More
I2C stands for Inter-Integrated Circuit. It is a bus interface connection protocol incorporated into devices for serial communication. It was originally designed by Philips Semiconductor… Read More
Many of us unable to showcase our small-scale or personal projects over the web. Since hosting these projects are a bit difficult and also costs… Read More
MySQL CASE function is a conditional statement that returns a value when the first condition is met. Once a condition is met, the CASE function… Read More
In Python, sets are an unordered and mutable collection of data type what does not contains any duplicate elements. In this article, we will learn… Read More
Web App Development: The word Web-App Development is made up of three words, that is: Web: It is refer to websites, web pages or anything… Read More
Given a String list, the task is to write a Python program to convert uppercase strings if the length is greater than K. Examples: Input… Read More
The plotly library is an interactive open-source library. This can be a very helpful tool for data visualization and understanding the data simply and easily.… Read More
The % symbol is used in Python with a large variety of data types and configurations. %s specifically is used to perform concatenation of strings… Read More
Given 2 Strings, our task is to check overlapping of one string’s suffix with prefix of other string.  Input : test_str1 = "Gfgisbest", test_str2 =… Read More