All Medium Articles
Linear regression is a common method to model the relationship between a dependent variable and one or more independent variables. Linear models are developed using… Read More
RC4 means Rivest Cipher 4 invented by Ron Rivest in 1987 for RSA Security. It is a Stream Ciphers. Stream Ciphers operate on a stream… Read More
User-Based Collaborative Filtering is a technique used to predict the items that a user might like on the basis of ratings given to that item… Read More
In this example, we will explain the Chosen and Select2 plug-in of JavaScript and highlights the key differences between both. Before we dwell on the… Read More
Sublister is a tool designed in python and uses OSINT in order to enumerate subdomains of websites. It helps pen-testers in collecting and gathering subdomains… Read More
Given an array arr[] of size N and integer Y, the task is to find a minimum of all the differences between the maximum and… Read More
Given a number N and two integers A and B, the task is to check if it is possible to convert the number to 1… Read More
Given an array arr[], the task is to maximize the sum of even-indexed elements by reversing a subarray and print the maximum sum obtained. Examples: … Read More
In Python, we can represent an integer value in the form of string. Int value of a string can be obtained by using inbuilt function… Read More
Given an integer array arr[] of size N, the task is to find the minimum distance between any most and least frequent element of the… Read More
Given an array arr[] of N positive integers where the integers are in the range from 1 to N, the task is to check whether… Read More
We all know that Fibonacci numbers (Fn) are defined by the recurrence relation   Fibonacci Numbers (Fn) = F(n-1) + F(n-2) with seed values F0 = 0 and… Read More
Prerequisite: graphics.h, How to include graphics.h? The task is to write a C program to draw a Heart using graphics in C. Approach: To run… Read More
The createObjectURL() method creates a DOMString containing a URL representing the object given in the parameter of the method. The new object URL represents the… Read More
The URL revokeObjectURL() method releases an existing object URL which was created by using URL createObjectURL(). This method is called when you are finished using… Read More
Getters and Setters, also called accessors and mutators, allow the program to initialize and retrieve the values of class fields respectively.  Getters or accessors are… Read More
These are 11 steps software testing process is an experience based practical approach for solution to test assignment. These are explained as following below. Step-1:… Read More
A proxy server refers to a server that acts as an intermediary between the request made by clients, and a particular server for some services… Read More
In PostgreSQL, a variable is a meaningful name for a memory location. A variable holds a value that can be changed through the block or function. A variable… Read More