All Medium Articles
The Graduate Record Examinations (GRE) is the most preferred examination by the candidates seeking admission into postgraduate programs including MS, MBA, Ph.D., etc. in countries… Read More
Given two integers a and b. The task is to find the number of digits before the decimal point in a / b.Examples:   Input: a… Read More
COCOMO-II is the revised version of the original Cocomo (Constructive Cost Model) and was developed at the University of Southern California. It is the model that allows one… Read More
The GROUP_CONCAT() function in MySQL is used to concatenate data from multiple rows into one field. This is an aggregate (GROUP BY) function that returns… Read More
Given an integer N, the task is to find the smallest and the largest N digit numbers which are also perfect cubes.Examples:   Input: N =… Read More
Given an array arr[] and two integers X and Y. The task is to find a sub-array of size of atleast X and atmost Y… Read More
Given a range [L, R], the task is to find the sum i * countDigits(i)2 for all i ? [L, R] where countDigits(i) is the… Read More
arp command manipulates the System’s ARP cache. It also allows a complete dump of the ARP cache. ARP stands for Address Resolution Protocol. The primary… Read More
Given an array arr[] of N integers and an integer X. Element arr[i] in array denotes the cost to use 2i. The task is to… Read More
I got interview call via LinkedIn. Round 1: 1st round was coding round on some coding platform(I don’t remember the name as it is not… Read More
Cross Site Request Forgery (CSRF) is one of the most severe vulnerabilities which can be exploited in various ways- from changing user’s info without his… Read More
I applied Online via Google Form on their Facebook Page. I interviewed at Nagarro Software (Gurgaon, Haryana, India). Total 4 Rounds. Round 1[From Home]: This is… Read More
If you are a software engineer/developer, just give it a thought, what do you do when a module in a software has to be changed?… Read More
Given a list of integers, write a Python program to find groups of strictly increasing numbers.  Examples: Input : [1, 2, 3, 5, 6] Output… Read More
Function parameters in JavaScript define placeholders for values that a function can accept when it is called. Syntax:  function Name(paramet1, paramet2, paramet3,...) { // Statements… Read More
In this article, we are going to discuss a Natural Language Processing technique of text modeling known as Bag of Words model. Whenever we apply… Read More
Given a directed graph G with N vertices and M edges. The task is to find the length of the longest directed path in Graph.Note:… Read More
Top view of a binary tree is the set of nodes visible when the tree is viewed from the top. Given a binary tree, the… Read More
Given an integer n, the task is to find the sum of the series 11 + 22 + 33 + ….. + nn using recursion.… Read More
Prerequisite – Token Ring frame format, Efficiency Of Token Ring, Problems with Token Ring As we have already familiar with the Token Ring. Now, in this… Read More