Skip to main content

Posts

Caterpillar - Interview Experience

Third Round The third round was technical + HR. The Duration was around 35 Minutes. 1. The Interview started with the question " Introduce yourself in a single Line". 2. Then they asked about chrome cast and w hat is smart tv and  How internet is connected with smart tv and what is the difference between normal TV and a Smart one. 3.  In DBMS, I was asked when a query is called what happens internally , how do the query gets executed. 4. I was asked about the complexities I faced during my projects and how did I tackle the disagreement between group members in a group project. 5. In java, I was asked about Interfaces, Multiple inheritance with real time example and key aspects of  Singleton class. 6. I was asked about the ways to search an element in O(n) and  O(1) time. 7. How functions are called internally. I answered using Stack. so the question went on like why stacks are used and why not queue and Is stack or queue pop out archi...

Digiryte - online test and interview experience

No criteria Round 1:  Mcq written test 30questions. Topics :  Apptitude Data structure OS Networks Oops Java script Dbms Output of given program All very basics questions.... Round 2: Online programming 3 questions were given 90 mins. One was simple but test cases where tough to pass Other two questions was tough.. Try to solve one question....those who passed few test cases also were shortlisted Round 3: Technical Face to face... In depth knowledge about projects.... Area of interest. Things mentioned in resume They tested whether really you have understood and learned. Round 4: HR round.. Few technical questions in the beginning Situation handling questions.

Caterpillar - online test and interview experience

Date of Visit: 28.08.2018 Criteria:No Current Arrear First Round  Duration:75 Minutes This round had technical mcq from C++ program's output,OS,Data Structure,JAVA in a very basic level.So basics of mentioned area should be good to crack this round and aptitude mcq and verbal mcq and two dbms query based questions and one file handling program were there. Second Round  Duration: 30 Minutes This is a Group Discussion round lasted under the topics of Aadhar is boon or bane and Banning of Mobile Use in School is boon or bane.Each topic had been discussed for 15 minutes.To crack this round be attentive, take a notes of others point ,do accept or oppose other's opinion and also give your add on values with it,try to keep a group as engage as possible by you .Subjective Testing (the way we explain,the way listening others,the way we approach a topic ) is done here by interviewer individually. Third Round  Duration: 30 Minutes This is a Technical and HR roun...

SAP labs - interview experience

SAP Labs Technical Round Experience 1. The round started with a brief introduction about myself. 2. In data structures I was asked to write code for height of a tree and Given a binary tree delete  a level and replace the parent node by child nodes, I was asked only the logic for the second question and I answered based on inorder order traversal. 3. I was asked to write code for level order traversal. 4. I did a project based on stock market prediction using random forest algorithm. Questions were asked related to the project like which environment you used to develop the project ( since its related to machine learning we need to handle a huge data to get accurate results , that's why they asked that question ), How random forest  algorithm works?, What are the attributes given for the algorithm, What is the accuracy of the algorithm were asked. 5. UML questions regarding concepts like aggregation, association and composition were asked. they wanted me to draw the ...

Infosys - online test (Power Programmer role)

Date of Visit : 21.08.2018 Criteria: CGPA 6 & above, No current arrear Platform: Hackerrank The test consisted of two coding problems 1.Smart Sale    Given a backpack containing n items in an array the sales person can remove any number of items of the same type from the backpack. Finally display number of 'm' distinct type of items in the bag. sol: https://www.geeksforgeeks.org/minimum-number-of-distinct-elements-after-removing-m-items/ 2. Diamond Mine Given a matrix of n*n. Each cell contain 0, 1, -1. 0 denotes there is no diamond but there is a path. 1 denotes there is diamond at that location with a path -1 denotes that the path is blocked. Now you have start from 0,0 and reach to last cell & then return...

Thorogood Associates - online test and Interview experience

Date of Visit : 18.08.2018 Criteria: CGPA 7.5 above, No current arrear First Round Duration: 1 hr This is an online round which had two parts,one is about essay writing,other one is about aptitude. Essay Writing Part had two questions,out of these 2 questions we have to write an essay on any one of the topic within 15 minutes. Question: What do you know about Thorogood and what will you do in your first year of Thorogood? Aptitude Part covered Data Interpretation,Logical Reasoning,Profit-Loss problem and other basics aptitude topics which are in R.S Agarwal Book ( link ) or else in IndiaBix ( link ) and this part lasted for next 45 minutes. Second Round Duration: 30 Minutes In this round,our communication,presentation skills and confidence level were tested. They asked us to explain any one of the projects that we mentioned in our resume. They checked whether we can present the project that we did in a professional way.

Charegbee - Online Test

Date of visit: 16.8.2018 Criteria: CGPA 7 above Platform: Hackerearth Duration: 2 hrs This round had two programming questions for 30 marks 1) 20 mark Question Input  10 2 4 8 3 9 2 4 8 4 5 Output Seq: 2,4,8 Occurrence: 2 Seq:3,9 Occurrence: 1 Problem Explanation From the given integer array we have to count the sequence which is in increasing power series that is from the [2,4,8,3,9,2,4,8,4,5] array, 2,4,8 is the increasing power series of 2 and 3,9 is the increasing power series of 3 and also we have to consider the count of each and every sequence so that 2,4,8 series occurred 2 times where as 3,9 occurred 1 times ,so this is the output of the problem Input Explanation First line is the array size Second line is the array elements 2) 10 Mark Question Input Input Explanation First line defines the order of matrix (N) N line defines an elements of a matrix Problem Explanation For the given input value the matrix pattern should be foll...