All Easy Articles
Given a text txt[0..n-1] and a pattern pat[0..m-1], write a function that prints all occurrences of pat[] in txt[]. You may assume that n >… Read More
A linked list is a linear collection of data elements, in which each node points to the next node. Unlike an array, it doesn’t have… Read More
JavaScript Object.entries() method is used to return an array consisting of enumerable property [key, value] pairs of the object which are passed as the parameter.… Read More
Round 1: There were 2 sections. First one is an aptitude section which must be completed in 30 minutes. The second section is a coding… Read More
In our previous article, we have talked about a Calculator app we are going to develop and also have seen a glimpse of our final… Read More
Sending an email is a very common activity in a web browser. For example, sending an email when a new user joins a network, sending… Read More
Binary Search is a searching technique used to search an element in a sorted array. In this article, we will learn about how to implement… Read More
Given an array A of integers. Index i of A is said to be connected to index j if j = (i + A[i]) %… Read More
From the given data below : a b b a a b b a a b which one of the following is not a word… Read More
Given an array of size N with repeated numbers, You Have to Find the top three repeated numbers.  Note : If Number comes same number… Read More
A software project was estimated at 352 Function Points (FP). A four person team will be assigned to this project consisting of an architect, two… Read More
Which of the following statement(s) is/are TRUE with regard to software testing ? I. Regression testing technique ensures that the software product runs correctly after… Read More
Round 1: It was a coding round held in our campus. There were 30 Java MCQ’s on OOPs concepts and spring framework. There were some questions… Read More
In this article, we will learn about PropTypes in react and how we can use these PropTypes so that we can create strict rules for… Read More
RC4 is a stream cipher and variable-length key algorithm. This algorithm encrypts one byte at a time (or larger units at a time). A key… Read More
Given an array arr[] of n positive integers. The task is to find the size of the subset formed from the elements of the given… Read More
java.util.stream.DoubleStream in Java 8, deals with primitive doubles. It helps to solve the problems like finding maximum value in array, finding minimum value in array,… Read More
Given a number n, check it is the Stella Octangula number or not. A number of the form where n is a whole number(0, 1, 2,… Read More
Given an array arr[] and a number k. The task is to delete k elements which are smaller than next element (i.e., we delete arr[i]… Read More
Given a Binary Tree, convert it to a Binary Search Tree. The conversion must be done in such a way that keeps the original structure… Read More