Upload Button Icon Add office photos

Filter interviews by

Goldman Sachs Summer Intern Analyst Interview Questions and Answers

Updated 15 Apr 2025

6 Interview questions

A Summer Intern Analyst was asked 7mo ago
Q. Explain recursion.
Ans. 

Recursion is a programming technique where a function calls itself in order to solve a problem.

  • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

  • A base case is needed to stop the recursion and prevent infinite loops.

  • Examples of recursive functions include factorial calculation and Fibonacci sequence generation.

A Summer Intern Analyst was asked 7mo ago
Q. Leetcode design system with EC2 instance Fleet
Ans. 

Design a system using EC2 instance Fleet on Leetcode platform

  • Utilize EC2 instance Fleet to manage a group of EC2 instances for scalability and cost-efficiency

  • Implement load balancing to distribute incoming traffic across multiple EC2 instances

  • Use auto-scaling to automatically adjust the number of EC2 instances based on traffic demand

  • Monitor system performance and health using CloudWatch metrics and alarms

Summer Intern Analyst Interview Questions Asked at Other Companies

Q1. N people stand in a circular fashion. The first person kills the ... read more
Q2. Write code to swap two numbers using only two variables.
Q3. Regarding process scheduling, how does the Linux scheduler handle ... read more
Q4. How do you delete a node in a linked list?
Q5. Leetcode design system with EC2 instance Fleet
A Summer Intern Analyst was asked
Q. Write code to swap two numbers using only two variables.
Ans. 

Swap two numbers using only 2 variables

  • Use XOR operation to swap two numbers without using a third variable

  • Example: a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // a = 10, b = 5

A Summer Intern Analyst was asked
Q. Write code for quick sort.
Ans. 

Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

  • Divide the array into two sub-arrays based on a pivot element

  • Recursively sort the sub-arrays

  • Combine the sorted sub-arrays

What people are saying about Goldman Sachs

View All
an analyst
5d
Salary Expectation at Goldman Sachs
Hi folks I am an recent MBA Graduate(B.com, MBA) working as a US realestate analyst working Remote from my home town for a small company, almost a year experience and looking for job switch Recently got interviewed by Goldman Sachs for a role (Analyst)exactly what am doing in current position, means well trained and skilled for this role, but i need to relocate to Bangalore for this role. Current CTC is 5lpa fixed + 1lpa variable = 6lpa Please Suggest me how much should I ask for
Got a question about Goldman Sachs?
Ask anonymously on communities.
A Summer Intern Analyst was asked
Q. Regarding process scheduling, how does the Linux scheduler handle background processes?
Ans. 

Linux scheduler manages background processes using priority levels and time slices for efficient CPU utilization.

  • Linux uses a Completely Fair Scheduler (CFS) for process scheduling.

  • Background processes typically have lower priority than foreground processes.

  • CFS allocates CPU time based on process weight, ensuring fairness.

  • Processes can be run in the background using '&' in the command line.

  • Example: 'sleep 10 &...

A Summer Intern Analyst was asked
Q. How do you delete a node in a linked list?
Ans. 

To delete a node in a linked list, we need to adjust the pointers of the previous and next nodes.

  • Find the node to be deleted by traversing the linked list

  • Adjust the pointers of the previous and next nodes to skip the node to be deleted

  • Free the memory occupied by the node to be deleted

Goldman Sachs Summer Intern Analyst Interview Experiences

9 interviews found

Summer Intern Analyst Interview Questions & Answers

user image Yann Djoumessi

posted on 16 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was an Online assessment composed of two parts: A Mathematical part and a Coding question.

Round 2 - Hirevue 

(2 Questions)

  • Q1. How do you handle stressful situations ?
  • Ans. 

    I manage stress by staying organized, prioritizing tasks, and maintaining a positive mindset to navigate challenges effectively.

    • I create a prioritized to-do list to focus on urgent tasks first, which helps me stay organized.

    • During a group project with tight deadlines, I facilitated regular check-ins to ensure everyone was on track and supported.

    • I practice mindfulness techniques, such as deep breathing, to calm my mind ...

  • Answered by AI
  • Q2. Explain recursion
  • Ans. 

    Recursion is a programming technique where a function calls itself in order to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • A base case is needed to stop the recursion and prevent infinite loops.

    • Examples of recursive functions include factorial calculation and Fibonacci sequence generation.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Leetcode Question on Grid traversal
  • Q2. Leetcode design system with EC2 instance Fleet
  • Ans. 

    Design a system using EC2 instance Fleet on Leetcode platform

    • Utilize EC2 instance Fleet to manage a group of EC2 instances for scalability and cost-efficiency

    • Implement load balancing to distribute incoming traffic across multiple EC2 instances

    • Use auto-scaling to automatically adjust the number of EC2 instances based on traffic demand

    • Monitor system performance and health using CloudWatch metrics and alarms

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

90min
numerical reasoning,
logical reasoning,
reading comprehension
,abstract reasoning

Round 2 - Coding Test 

Coding,
aptitude,
computer fundamentals,
competitive coding

Round 3 - Technical 

(2 Questions)

  • Q1. Write a code for quick sort
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

    • Divide the array into two sub-arrays based on a pivot element

    • Recursively sort the sub-arrays

    • Combine the sorted sub-arrays

  • Answered by AI
  • Q2. Write a code to swap two numbers by using only 2 variables
  • Ans. 

    Swap two numbers using only 2 variables

    • Use XOR operation to swap two numbers without using a third variable

    • Example: a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // a = 10, b = 5

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do check previous interview questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Coding Test 

10 questions from Aptitude , Mathematics and CS Fundamentals subjects like DBMS,DSA,OS
2 coding question , both were Leetcode medium.

Round 2 - One-on-one 

(1 Question)

  • Q1. I had 3 rounds in interview, first round was technical in which they asked about my resume, projects and coding ques related to linked list
Round 3 - Aptitude Test 

General puzzle questions

Round 4 - HR 

(1 Question)

  • Q1. My resume, projects, skills, hobbies, strengths, situations and future plans

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know DSA in any preferred language like C++, Java or Python.
Good grasp of DSA, DBMS, Networking, SQL and core CS fundamentals.
Maths and Puzzle are also important.
Don't fake your resume, they ask many questions from your resume
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. DSA related to queues
  • Q2. Regarding resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MCQs on Maths with negative marking

Round 2 - Aptitude Test 

MCQs on logical reasoning with negative marking

Round 3 - Assignment 

Write an essay, time bound

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Next Largest element in the array.
100 floors, 2 eggs problem GFG

Round 3 - One-on-one 

(1 Question)

  • Q1. Process sceduling, how does the linux sceduler handle background processes
  • Ans. 

    Linux scheduler manages background processes using priority levels and time slices for efficient CPU utilization.

    • Linux uses a Completely Fair Scheduler (CFS) for process scheduling.

    • Background processes typically have lower priority than foreground processes.

    • CFS allocates CPU time based on process weight, ensuring fairness.

    • Processes can be run in the background using '&' in the command line.

    • Example: 'sleep 10 &'...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was an aptitude test in which there are questions about probability, and some puzzles.

Round 2 - One-on-one 

(1 Question)

  • Q1. The question was from brainstellar website. "n" people stand in a circular fashion. 1st person kills second and passes the knife to 3rd, and he kills 4th and passes it to 5th.... Who survives at the end?
Round 3 - One-on-one 

(1 Question)

  • Q1. They explained me some basics about options and then asked some basic questions on them.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

There were questions related to aptitude and logical reasoning

Round 3 - Coding Test 

2 coding ques to be coded in java + CS fundamentals mcqs

Round 4 - Technical 

(1 Question)

  • Q1. Discussion regarding projects and hard questions on oops and linkedlist

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on projects and the techstacks used
Round 1 - Aptitude Test 

Coding test that included MCQ as well as essay type questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself and your favorite project
  • Q2. How to delete a node in a lonked list
  • Ans. 

    To delete a node in a linked list, we need to adjust the pointers of the previous and next nodes.

    • Find the node to be deleted by traversing the linked list

    • Adjust the pointers of the previous and next nodes to skip the node to be deleted

    • Free the memory occupied by the node to be deleted

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and well prepared on your resume

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Hirevue on beha questions

Round 2 - HR 

(2 Questions)

  • Q1. Why bofa and why ibd
  • Q2. Previous intern experiences feedback
  • Ans. 

    I received constructive feedback on my analytical skills and teamwork, which helped me grow professionally during my internships.

    • I was praised for my attention to detail when analyzing data sets, which improved the accuracy of our reports.

    • My supervisor noted my ability to collaborate effectively with team members, leading to successful project outcomes.

    • I received feedback on my presentation skills, encouraging me to pr...

  • Answered by AI

Goldman Sachs Interview FAQs

How many rounds are there in Goldman Sachs Summer Intern Analyst interview?
Goldman Sachs interview process usually has 3-4 rounds. The most common rounds in the Goldman Sachs interview process are Aptitude Test, One-on-one Round and Coding Test.
What are the top questions asked in Goldman Sachs Summer Intern Analyst interview?

Some of the top questions asked at the Goldman Sachs Summer Intern Analyst interview -

  1. The question was from brainstellar website. "n" people stand in a circular fash...read more
  2. write a code to swap two numbers by using only 2 variab...read more
  3. Process sceduling, how does the linux sceduler handle background proces...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 9 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 25%
2-4 weeks 50%
More than 8 weeks 25%
View more

Interview Questions from Similar Companies

WNS Interview Questions
3.3
 • 1.1k Interviews
IQVIA Interview Questions
3.8
 • 494 Interviews
Atos Interview Questions
3.8
 • 392 Interviews
Deutsche Bank Interview Questions
3.9
 • 390 Interviews
Synechron Interview Questions
3.5
 • 379 Interviews
S&P Global Interview Questions
4.0
 • 299 Interviews
Bank of America Interview Questions
4.2
 • 263 Interviews
Gallagher Interview Questions
3.7
 • 246 Interviews
View all

Goldman Sachs Summer Intern Analyst Reviews and Ratings

based on 24 reviews

4.1/5

Rating in categories

4.4

Skill development

3.8

Work-life balance

4.2

Salary

4.0

Job security

4.2

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 24 Reviews and Ratings
Associate
2.5k salaries
unlock blur

₹19 L/yr - ₹35 L/yr

Analyst
1.9k salaries
unlock blur

₹11.4 L/yr - ₹21.2 L/yr

Vice President
1.9k salaries
unlock blur

₹35.9 L/yr - ₹60 L/yr

Senior Analyst
1.3k salaries
unlock blur

₹9.1 L/yr - ₹15.1 L/yr

Senior Associate
445 salaries
unlock blur

₹14.9 L/yr - ₹26.6 L/yr

Explore more salaries
Compare Goldman Sachs with

JPMorgan Chase & Co.

3.9
Compare

Morgan Stanley

3.6
Compare

TCS

3.6
Compare

Amazon

4.0
Compare
write
Share an Interview