All Medium Articles
Black box testing is a testing technique in which the internal workings of the software are not known to the tester. The tester only focuses… Read More
Data Mining: Data mining in general terms means mining or digging deep into data that is in different forms to gain patterns, and to gain… Read More
Comparing dates is quite easy in Python. Dates can be easily compared using comparison operators (like <, >, <=, >=, != etc.). Let’s see how… Read More
PGM stands for Portable Gray Map. Saving a 2D array in C as images in PNG, JPG or other formats would need a lot of… Read More
C++ // C++ program to print the longest leaf to leaf // path #include <bits/stdc++.h> using namespace std;    // Tree node structure used in… Read More
The default editor that comes with the Linux/UNIX operating system is called vi (visual editor). Using vi editor, we can edit an existing file or… Read More
How does the PHP file handle know some basic information like file-name, file-size, type of the file and a few attributes about the file which… Read More
Interpolation is an estimation of a value within two known values in a sequence of values. Newton’s divided difference interpolation formula is an interpolation technique… Read More
Introduction : A Multimap is a general way to associate keys with arbitrarily many values. Guava’s Multimap framework makes it easy to handle a mapping… Read More
This article will give you information about the company, its recruitment process, sample questions that have been asked previously, lots of experiences shared by other… Read More
Java Swing is a GUI (graphical user Interface) widget toolkit for Java. Java Swing is a part of Oracle’s Java foundation classes . Java Swing… Read More
Prerequisite: Merge Sort for Linked Lists Merge sort is often preferred for sorting a linked list. The slow random-access performance of a linked list makes… Read More
Given an array arr[0 . . . n-1]. Find the maximum of elements from index l to r where 0 <= l <= r <=… Read More
What is Servlet Collaboration? The exchange of information among servlets of a particular Java web application is known as Servlet Collaboration. This enables passing/sharing information… Read More
This method was developed to decrease the chances of collisions when two or more stations start sending their signals over the data link layer. Carrier… Read More
Given n wines in a row, with integers denoting the cost of each wine respectively. Each year you can sale the first or the last… Read More
I’ve 3.4 Years of experience in Java. I got a call from Walmart labs through employee referral. There were 4 rounds. Round 1: 1 Hrs… Read More
Consider an array of size n with initial 0 values. How many indices will contain a value at least x after performing m range updates?… Read More
Given an array a[1..N]. For each element at position i (1 <= i <= N). Where  L(i) is defined as closest index j such that… Read More
Given a number n, generate bit patterns from 0 to 2^n-1 such that successive patterns differ by one bit. Examples:  Input: n=2Output: 00 01 11… Read More