All Hard Articles
Project Title: CART(CROWD ANALYTICS in REAL TIME) INTRODUCTION: They say “Relevant, actionable data is your ace of spades”. But to play that card, one needs… Read More
Informatica recently visited our campus to hire interns on 24th May. About 170 students appeared. Round 1: Online MCQ Test (45 minutes) This was an… Read More
Given a N x N binary matrix. The problem is finding the maximum area sub-matrix having a count of 1’s one more than count of… Read More
Round 1(Coding Test): It was a coding test which was held on cocubes platform. 3 problems were given of varying marks: 2 marks: Given a… Read More
You are given 3 stacks, A(Input Stack), B(Auxiliary Stack) and C(Output Stack). Initially stack A contains numbers from 1 to N, you need to transfer… Read More
The mysqli_num_rows() function is an inbuilt function in PHP which is used to return the number of rows present in the result set. It is… Read More
Given a string of lowercase English alphabets, find the number of counterclockwise shifts of characters required to make the string palindrome. It is given that… Read More
Given a number N, place numbers from the range [1, N2] in an NxN matrix such that sum in every row is equal.  Examples:  Input:… Read More
Given a square chessboard of N x N size, the position of Knight and position of a target is given, the task is to find… Read More
Prerequisite – Finite automata introduction All programming languages can be represented as a finite automata. C, Paskal, Haskell, C++, all of them have a specific… Read More
Round 1 : ——————————– 1) How can you design a hash which can have million entries with minimising collision? 2) Clone a binary tree 3)… Read More
I recently interviewed with Salesforce Hyderbad  for AMTS Distributed Systems Engineer role. A total of 5 rounds were taken. Round 1 (Coding Round): The coding… Read More
The array::data() is a built-in function in C++ STL which returns an pointer pointing to the first element in the array object. Syntax: array_name.data() Parameters:… Read More
A firewall is a network security system that monitors and takes actions on the ingoing or outgoing packets based on the defined rules. It can… Read More
The jQuery add() method is used to add elements to the existing group of elements. This method can add element to the whole document, or… Read More
Given an array of size N and Q queries, each query consists of L, R, and K(consider 1 based-indexing for L and R). The task… Read More
The recruitment process took place for two days in our campus in June ’17. Round 1: This was an online MCQ’s test .There were 20… Read More
smatch is an instantiation of the match_results class template for matches on string objects. Functions that can be called using smatch: str(), position(), and length()… Read More
Prerequisite: BigInteger BasicsThe Java.math.BigInteger.modPow() method returns a BigInteger whose value is (thisexponent mod m ). If exponent == 1, the returned value is (this mod m)… Read More
The need to convert Java Beans(Objects) to CSV file arises very commonly and there are many ways to write Bean into CSV file but one… Read More