Open In App

Goldman Sachs Interview Experience (Software Engineer – Experienced)

I contacted the recruiter through LinkedIn and share my resume with them. Within 2 days, he sent me the test link. At that time I was having 1 year of experience as an Application Developer.
Round 1: Hackerrank Test
Duration: 1.5 hour
Number of Questions to be solved: 2

Round 2: Coderpad Round
Duration: 1 hour
Number of Questions to be solved: 2



Round 3: Coderpad Round
Duration: 1 hour
Number of Questions to be solved: 2

Round 4: Video Conf Round
Duration: 1 hour (1st Video Conference round)
Work Experience & Project Discussion. (Be prepared to face in-depth questions, why you prefer this over that type of questions )



Immutable classes in Java. Started with basic details on how to make any class immutable.
After that they gave some scenarios like the class contains ArrayList, hence when getter for that is called, if we return the ArrayList as is, it will violate the concept of Immutability, as the elements inside the ArrayList can be modified.

One Core Java Question to check understanding of what is bind at compile time vs runtime




class A {
    int temp = 10;
    public void print()
    {
        System.out.println("In Class A");
    }
}
class B extends A {
    int temp = 20;
    public void print()
    {
        System.out.println("In Class B");
    }
}
class C {
    public static void main(String args[])
    {
        A a = new B();
        System.out.println(a.temp);
        a.print();
    }
}

Hint: Variables are bind at compile-time, hence they don’t have anything to do with run-time polymorphism.

Round 5: Video Conf Round

Duration: 1 hour (2nd Video Conference round)
Work Experience & Project Discussion.

Many-Core Java Question:

These questions were common in all 3 rounds:

Round 6: Face to Face Interview
Duration: 1.5 to 2 hours

Rapid Fire Round (4-5 minutes per question):

Round 7: Face to Face Interview
Duration: 1 hour

Round 8: Face to Face Interview (Bar Raiser Type)
Duration: 1-1.5 hours so far, this was the toughest of all.

General Note:


Article Tags :