All Medium Articles
1. .com domain :  The internet has made use of .com domains very popular. It is so popular that it can also be seen on… Read More
Dictionary is an unordered collection in Python that store data values like a map i.e., key: value pair. In order to convert a String into… Read More
What would you do if you wanted to change a particular code from one programming language to another? It’s simple enough if it is a… Read More
McCall’s Software Quality Model was introduced in 1977. This model is incorporated with many attributes, termed software factors, which influence software. The model distinguishes between… Read More
In 1978, B.W. Boehm introduced his software quality model. The model represents a hierarchical quality model similar to the McCall Quality Model to define software… Read More
Bottom-up Testing is a type of incremental integration testing approach in which testing is done by integrating or joining two or more modules by moving… Read More
Top-down testing is a type of incremental integration testing approach in which testing is done by integrating or joining two or more modules by moving down from top… Read More
If you play games on your smartphone, then there is one of most important and hidden feature present in smartphone, which is known as Screen… Read More
Prerequisite: Seaborn Programming Basics Seaborn is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical… Read More
Prerequisites: Python Classes and Objects A class is a user-defined blueprint or prototype from which objects are created. Classes provide a means of bundling data… Read More
Metrics simply measures quantitative assessment that focuses on countable values most commonly used for comparing and tracking performance of system. Metrics are used in different… Read More
Indexing is the most vital part of any Information Retrieval System. It is a process in which the documents required by the users are transformed… Read More
An Activity in the activity diagram is also known as Activity state. It is used to represent the invocation of operation, a step in an… Read More
A Database Administrator (DBA) is an individual or person responsible for controlling, maintaining, coordinating, and operating a database management system. Managing, securing, and taking care… Read More
Given an array arr[] of N numbers. We can merge two adjacent numbers into one and the cost of merging the two numbers is equal… Read More
Given an array arr[] of N integers both positive and negative, our task is to find the number of unordered pairs (x, y) which satisfy… Read More
Given a string S of size N, the task is to count the occurrences of all the prefixes of the given string S. Examples:   Input:… Read More
Given a positive integer N, the task is to find out the sum of all consecutive bit differences from 0 to N. Note: If the bit… Read More
Given a number N, the task is to find whether N has an equal number of odd and even factors.Examples:   Input: N = 10 Output: YES Explanation:… Read More
Given an IP address, the task is to validate this IP address with the help of Regex (Regular Expression) in C++ as a valid IPv4… Read More