Goldman Sachs Interview Experience for Software Analyst | 7 Months Experienced
Online Round: 2 very easy basic string question
Technical Interview 1:
- https://www.geeksforgeeks.org/given-a-string-find-its-first-non-repeating-character/
- You are given a list of examination results of various students. A student can appear for examination multiple times.
If a student appears for examination multiple times, calculate the result for that particular student will be the average of all the examinations.
Return the student with the maximum result.
Input
{
{"Riya" "50"},
{"Ramesh" "72"},
{"Rinku" "65"},
{"Riya" "100"}
}
Output
RiyaAs the average of Riya would be 75, which is the highest mark scored by anyone in the entire list.
All the input is in string formatI had to code both of the questions, and I had to pass all the test cases he gave.
Technical Interview 2:
- Discussion on my current firm, my projects.
- Given 2 strings, target string, and pattern. Find all starting index anagrams of pattern string in the target string
Input
abaxbbcab
Output
[0,1,7]I had to code the question and it had to pass all the test cases they gave.
- Discussion on multi-threading
Technical Interview 3:
- Detailed disscussion on my current firm, my projects.
- Questions about OOPS, SQL Queries, Table joins.
- Discussion on LoadBalancer and AWS.
- https://www.geeksforgeeks.org/print-all-triplets-with-given-sum/
Technical Interview 4: For this round, they told me this is a Bar Raiser round and to answer each and every question with utmost care.
- Again, Detailed disscussion on my current firm, my projects.
- Why do I aspire to join this team?
- https://www.geeksforgeeks.org/minimum-number-platforms-required-railwaybus-station/
Verdict: Selected 🙂
Please Login to comment...