Open In App

Goldman Sachs Interview Experience | Set 44 ( On Campus )

Improve
Improve
Like Article
Like
Save
Share
Report

Goldman Sachs Recently visited our campus ( Cummins College Pune ). The Eligibility Criteria was cgpa > 6 and no live backlog. All the branches were allowed. Around 400+ people were there for aptitude.

 

Round 1:

The first round was Aptitude Test. The aptitude test was held on Hackerrank. It was 60 min test consisting of 8 MCQ and 1 Code.

There was a negative Marking. MCQ were based on Data Structures, Time Complexity.

I don’t remember all MCQ, but few were as follows.

1.  Preorder and Inorder traversal of the tree was given we have to find postorder traversal.

2.

for ( i=0 ; i<n ; i++ )
{
    for ( j=i ; j<n ; j++ )
    {
      cout<<" hello ";
    }
}

Find the time complexity of the above code.

 

Coding Question

Old Library Catalog and New Library Catalog was Given.

for eg.   I/P

Old Catalog  = { 10, 11, 14, 15, 16}

New Catalog =   { 10, 12 , 13, 14, 15, 17, 18, 16 }

O/P    =  { 0, -1, 1, 1, 3 }

 

we have to find the position of books is changed or not.

if the position is same as old catalog the add 0 for that book return arr.

if the book is not there in the new catalog then  add -1 for that book in return arr

if the position is changed the add the shift in the return arr.

It is easy to do with HASHMAP.

After Aptitude 24  were Shortlisted.

Round 2 :

They were having a copy of our programs. They asked the Same question to everyone  How you solved the Aptitude code. And a puzzle. The Interviewers are very friendly and constantly motivating. they were giving hints to solve the question.

After this round, 10 people were selected for the next round.

Round 3 :

In this Round, they asked all the technical questions.

After this round, 5 people were selected for the next Round.

Round 4 :

This was Also technical Round.

After this 5 people were selected for the next Round.

Round 5 :

It was the HR round.

Finally, 5 people got placed in GS.

 

 


Last Updated : 23 May, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads