All Medium Articles
An course on developing your skills of interview by TCS-ION  My experience regarding this course was very good so i would like to share it… Read More
WPS stands for Wi-Fi Protected Setup. WPS was invented by CISCO and it was first introduced in 2006. WPS is not a security feature. It… Read More
The module simply means the software components that are been created by dividing the software. The software is divided into various components that work together… Read More
Prerequisite – Taylor theorem and Taylor series We know that formula for expansion of Taylor series is written as: Now if we put a=0 in… Read More
NuGet is the official package-manager for .NET. Packages are basically compiled library with some descriptive metadata. NuGet is an essential tool for any modern development… Read More
C#
Do you ever wonder about the sudden emergence and popularity of Blockchain? What is it? Well, Blockchain is literally a chain of blocks as the… Read More
Given an undirected graph with N vertices and E edges and two vertices (U, V) from the graph, the task is to detect if a… Read More
Given an array arr[] of N integers and Q queries where every row consists of two numbers L and R which denotes the range [L,… Read More
Given a binary search tree and a node of the binary search tree, the task is to delete the node from the Binary Search tree… Read More
Given an array arr[] and an integer K, the task is to count subarrays of size K in which every element appears an even number… Read More
Double Threaded Binary Search Tree: is a binary search tree in which the nodes are not every left NULL pointer points to its inorder predecessor… Read More
Given a directed graph and a source vertex in the graph, the task is to find the shortest distance and path from source to target… Read More
Pre-requisite: Merge Sort, Insertion Sort Merge Sort: is an external algorithm based on divide and conquer strategy. In this sorting:   The elements are split into two… Read More
Matplotlib is a python library for creating static, animated and interactive data visualizations. Note: For more information, refer to Introduction to Matplotlib What is Axes?… Read More
Pre-requisite: Policy based data structure Given an array arr[], the task is to find the number of inversions for each element of the array. Inversion… Read More
In order to train a Linear Regression model, we have to learn some model parameters such as feature weights and bias terms. An approach to… Read More
Given a number N, the task is to calculate the total number of corresponding different bit in the binary representation for every consecutive number from… Read More
C++ provides a list of standard exceptions defined in header <exception> in namespace std where “exception” is the base class for all standard exceptions. All… Read More
Prerequisite: Friend Class in C++A friend class can access private and protected members of other classes in which it is declared as a friend. It… Read More