I applied through an employee referral. I interviewed at Goldman Sachs (Utah, TN) in Aug 2024
Interview
Had an interview through 3rd party. 1 hour. First 45-50 min, I had to code in the shared CoderPad link. We can choose our language.
Questions: Best average score and related to trees. (like debugging).
Interview questions [1]
Question 1
Best average score
Find whats the bug in the given code.(related to tree)
I applied online. The process took 2 weeks. I interviewed at Goldman Sachs in Mar 2024
Interview
I was informed that the interview process would be 5 rounds.
The first round was just a casual chat with an Engineer, The topics to be discussed was mentioned a week ago. But the Interviewer had no idea about the topics which were to be discussed. She didn't have an idea about the company culture as she was working in another region.
Also, the interviewer did not have an idea about how the coderpad is going to be as this was a topic I wanted to know about.
2nd interview was a coderpad. I was not even asked to introduce myself. Interviewer seemed to be agitated.
Interview questions [1]
Question 1
I was given 2 simple coding tests in Java. They check your knowledge on data structures.
I applied online. The process took 2 weeks. I interviewed at Goldman Sachs (Bengaluru) in Jan 2024
Interview
My interview was for E-Clercx company. They took my first round and their client is Goldman Sachs who took my second round.
Both were similar rounds where I had to complete their java code.
First round I had questions based on Hashmap, insert some values in it and then print those values.
One questions in TreeSet, you should know that it implements Comparable interface.
Another questions on converting datatypes, string to int, etc.
Interview questions [1]
Question 1
2 Java questions on CoderPad. I was asked to complete the code and pass their test cases.
First question: Given a String[][] array of names and score. You have to find the best average score among the given students. Let's say the array has Ram:100, Shyam 90, Ram:70, so average score for Ram would be 170/2 = 85 and shyam would be 90/1 =90, so return 90.
Also if answer is not integer return floor of the answer.
Second Question: Given a string, return starting index, max_count of a character appearing continuously.
Example: "aabbbbcdAA101aaa" return {2,4} since b char has the max continuous count.