Tip 1 : Goldman Sachs focuses on DBMS since this is an Analyst Role, Be prepared with your DBMS(very imp.), OS and CN skills.
Tip 2 : Solve DSA problems consistently
Tip 3 : Be prepared to answer questions on your projects.
Tip 1 : Use a good template from overleaf from your resume.
Tip 2 : Crosscheck your resume for any potential errors before submitting it to the hackerrank portal.
MCQs will be based on very hard aptitude reasoning.
MCQ with
2 - Easy - Medium coding questions
8 - Quantitative aptitude questions
7 - CS fundamentals
2 - English essay questions



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)



‘STR’ = “i am a Ninja”, ‘N’ = 3 and ‘WORDS[]’ = [“Ninja”,”a”,”am”]. Then the output should be [1,1,1]. Because the occurrence of “Ninja” in ‘STR’ is 1 and the occurrence of “a” in ‘STR’ is 1.Similarly occurrence of “am” is 1.
The output should be in the same order as given in ‘WORDS’.
I was invited to join a zoom call and from there was a breakout room where my interview happened. It starts at around 10 AM in the morning and in around an hour the interview the started. Since I didn't get selected for the second round, my process finished at around 12:30 PM. But I have heard that the interviews may go up to 9 PM depending on how many rounds you have maximum being 3. The interviewer was great. I was asked a lot of questions on core CS concepts so make sure to focus on them to clear the interviews.
Why did you use NoSQL DB in your project? Why not an SQL? What's the difference between them?
What is Data modelling?
What is ER Model?
What is an SDLC?
What is UML modelling? and All the related diagrams like class diagram, sequence diagram



Step 1 : I initialized the first column with the default values.
Step 2 : Since you can travel right, right up or right down that means if you are at a position then you can come from either left, left up or left down.
Step 3 : Apply the DP technique to maximize the output at each mine.
Step 4 : Print the maximum element in the last column.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?