All Easy Articles
Arrays class is a class containing static methods that are used with arrays in order to search, sort, compare, insert elements, or return a string… Read More
Given two strings in lowercase, find the longest string whose permutations are subsequences of given two strings. The output longest string must be sorted. Examples: … Read More
Predict the output of following Java Programs.Program 1:   Java // Main.java public class Main {     public static void gfg(String s)     {             System.out.println("String");     }     public static… Read More
Below are some interesting facts about C programming: 1) The case labels of a switch statement can occur inside if-else statements. #include <stdio.h>    int… Read More
In the field of numerical analysis, Trapezoidal rule is used to find the approximation of a definite integral. The basic idea in Trapezoidal rule is… Read More
Technical Round 1) Project – earlier and current ones 2) How do you use binary search in an unsorted array 3) Which sort algorithm is… Read More
Technical 1 1. A discussion about all the unanswered questions asked in aptitude round.(30 mins) 2. Knapsack problem. 3. how do u rate urself in… Read More
ROUND 1: Tell me about yourself. What are your areas of interest? Explain what & why data analytics? Explain the decision tree algorithm What is… Read More
Given a string that contains digits of a number. The number may contain many same continuous digits in it. The task is to count number… Read More
Given a set, we need to find maximum and minimum possible product among all subsets of the set.  Examples:  Input : arr[] = {4, -2,… Read More
In Java, Method Overloading allows different methods to have the same name, but different signatures where the signature can differ by the number of input… Read More
In Java, Overriding is a feature that allows a subclass or child class to provide a specific implementation of a method that is already provided… Read More
Tree sort is a sorting algorithm that is based on Binary Search Tree data structure. It first creates a binary search tree from the elements… Read More
In this article, some of the most important Java Interview Questions and Answers are discussed, to give you the cutting edge in your interviews. Java… Read More
Like array and linked list, the unrolled Linked List is also a linear data structure and is a variant of a linked list.  Why do… Read More
1st round:- first round consisted of 20 MCQ questions,2 coding and 5 DBMS query questions. 2nd round:- This was a written coding round.2 questions were asked. 1.Design a stack… Read More
(Role: Software Engineer) Round 1: 1. Tell me about yourself.(Spoke until the interviewer browsed through the resume). 2. Reversing a singly linked list. 3. Check… Read More
Sometimes in programming, it is essential to print the output in a given specified format. Most users are familiar with the printf function in C.… Read More
Round 1: First round is a written test. This is different from the other company written tests which I had faced till now. This round… Read More
In C programming pointers are used to manipulate memory addresses, to store the address of some variable or memory location. But certain situations and characteristics… Read More