All Medium Articles
Given an array arr[] of integers and an integer k, the task is to find the minimum number of integers that need to be removed… Read More
The two-dimensional array is a collection of items that share a common name and they are organized as a matrix in the form of rows… Read More
AngularJS performs form validation on the client side. AngularJS monitors the state of the form and input fields (input, text-area, select), and notify the user… Read More
While developing Node.Js application it is important to handle invalid routes. It can be done by writing a custom route or redirecting all the invalid… Read More
The pmap command in Linux is used to display the memory map of a process. A memory map indicates how memory is spread out. Syntax:… Read More
Installations First, we need to include a few packages for our Nodejs application. npm install express --save Express allows us to set up middlewares to… Read More
Two vessels A and B contain mixture of milk and water in ratios 3:4 and 4:1 respectively. In what ratio should quantities of mixture be… Read More
Two trains start from station A and B and travels towards each other at speed of 48km/hr and 72km/hr respectively. At the time of their… Read More
A and B run a kilometre and A wins by 20 second. A and C run a kilometre and A wins by 250 m. When… Read More
Two jeep start from a police station with a speed of 20 km/hr at intervals of 10 minutes.A man coming from opposite direction towards the… Read More
In a factory same number of women and children are present. Women works for 6 hours in a day and children work 4 hours in… Read More
A, B and C can do a piece of work in 10, 12 and 15 days respectively.They all start the work together but A leaves… Read More
Given an array of positive integers, remove all the occurrences of the element to get the maximum sum of the remaining array. Examples:  Input :… Read More
This article is regarding the Microsoft Summer Internship 2019 recruitment process that took place at my college campus – VIT University, Vellore. Round 1: Group… Read More
Given an array arr[] of N integers and queries Q. Queries are of two types:  Update a given index ind by X. Find the gcd… Read More
Encryption and Decryption in Node can be done by installing and implementing the ‘crypto’ library. If you have installed Node.js by manual build, then there… Read More
Stress Testing is a software testing technique that determines the robustness of software by testing beyond the limits of normal operation. Stress testing is particularly… Read More
The HTML content Attribute is used to given the values that are related to the http-equiv or name attribute. The content attribute can associated with… Read More
The RegExp \s Metacharacter in JavaScript is used to find the whitespace characters. The whitespace character can be a space/tab/new line/vertical character. It is the… Read More
Given a string str of lowercase English alphabets and an integer m. The task is to count how many positions are there in the string… Read More