All Easy Articles
Booting may be defined as process of loading the operating system into memory. The booting process starts from the moment when we power on computer… Read More
Given an array arr[] of size N. In each operation, pick an array element X and remove all array elements in the range [X –… Read More
Given a 2D array arr[][], where each row is of the form {start, end} representing the start and endpoints of each line segment on the… Read More
Given an array arr[] of N integers and two integers S and M, the task is to maximize the minimum array element by incrementing any… Read More
Given a string S consisting of lowercase alphabets of size N, the task is to count all substrings which contain the most frequent character in… Read More
Given two arrays arr[] and q[] consisting of N integers, the task is for each query q[i] is to determine the number of times the… Read More
Shallow Copy: Shallow repetition is quicker. However, it’s “lazy” it handles pointers and references. Rather than creating a contemporary copy of the particular knowledge the… Read More
A Sorting Algorithm is used to rearrange a given array or list elements according to a comparison operator on the elements. The comparison operator is… Read More
The test was conducted on Hackerrank platform and there were three questions that needed to be solved in 100 minutes: Run-length Encoding. Device name system:… Read More
A Document Type Definition (DTD) describes the tree structure of a document and something about its data. It is a set of markup affirmations that… Read More
Round 1: An online assessment that consisted of four parts: Code Debugging: 7 questions to be debugged in 20 minutes. (easy-medium) Coding Test: 2 coding… Read More
Given a positive integer N, the task is to find the number of alphanumeric palindromic strings of length N. Since the count of such strings… Read More
Given an array arr[] consisting of N integers, the task for each array element arr[i] is to print the sum of |i – j| for… Read More
Amazon visited our campus (NIT Jamshedpur) in September 2020. Around 120 candidates were shortlisted for round-1. Round 1: This round was an online coding round… Read More
Given an integer N, a binary string S and an array W[]. S denotes the sequence of N * 2 persons entering the hall, where… Read More
Before learning about Event Delegation in JavaScript, we must be familiar with phases of JavaScript event https://www.geeksforgeeks.org/phases-of-javascript-event/ Event Delegation is basically a pattern to handle… Read More
In C++, cout shows different printing behaviour with character pointers/arrays unlike pointers/arrays of other data types. So this article will firstly explain how cout behaves… Read More
Binary Heap:A Binary Heap is a Binary Tree with following properties. It’s a complete binary tree i.e., all levels are completely filled except possibly the… Read More
In Competitive Programming, it is important to read input as fast as possible to save valuable time. Input/Output in Python can be sometimes time taking… Read More
Figure a way out to print all the strings that match a given pattern from a file. To get closer to the goal, concepts of… Read More