Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      Morgan Stanley

      Questa è la tua azienda?

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Morgan Stanley | Offerte di lavoro di Morgan Stanley | Stipendi di Morgan Stanley | Benefit di Morgan Stanley
      Colloqui di Morgan StanleyColloqui per Software Engineer presso Morgan StanleyColloquio di Morgan Stanley


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Colloquio per Software Engineer

      7 lug 2022
      Candidato anonimo a colloquio
      Bengaluru
      Nessuna offerta
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura online. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso Morgan Stanley (Bengaluru) nel mese di giu 2022

      Colloquio

      Coder Pad Interview Round for Java Backend Developer. Interviewer will share a Hackerrank link and will ask us to solve it in screen share. We will need to explain our solution and the interviewer may ask question on the code you are writing.

      Domande di colloquio [1]

      Domanda 1

      package Interviews; /** * ===================Question=================== * In a college, A student can be identified uniquely with combination of student's first and last name * and in a given stream a student can enroll to one or many subjects. Finally, during evaluations students are scored for each subjects * * E.g. In Physics Subject(See code below) Rahul, Sidd, Monica has scored 40, 50, 30 marks each. * * * We need to print the students in the descending order of their average marks across subjects. * * Expected output for students in code snippet should be as below: * * Student{firstName='Sidd', lastName='Bhatia', age=30, stream='Science', avgScore=50.0} * Student{firstName='Neha', lastName='Jain', age=33, stream='Science', avgScore=48.0} * Student{firstName='Vishal', lastName='Garg', age=24, stream='Commerce', avgScore=44.0} * Student{firstName='Abhishek', lastName='Kakkar', age=22, stream='Commerce', avgScore=43.0} * Student{firstName='Rahul', lastName='Garg', age=25, stream='Science', avgScore=43.0} * Student{firstName='Monica', lastName='Mishra', age=26, stream='Science', avgScore=41.333333333333336} * * Also, please note Evaluator will give some different input to the program and code should produce expected output for the same. * ===========================Code snippet================================= */ import java.util.*; import java.util.stream.Collectors; public class AvgMaxGrade { static Map<String, List<Student>> subjectToStudentsMap = new HashMap(); static { subjectToStudentsMap.put("Physics", Arrays.asList( new Student("Rahul", "Garg", 25,"Science", 40), new Student("Sidd", "Bhatia", 30,"Science", 50), new Student("Monica", "Mishra", 26, "Science", 30) )); subjectToStudentsMap.put("Chemistry", Arrays.asList( new Student("Rahul", "Garg", 25,"Science", 46), new Student("Neha", "Jain", 33,"Science", 48), new Student("Monica", "Mishra", 26,"Science", 46) )); subjectToStudentsMap.put("Maths", Arrays.asList( new Student("Vishal", "Garg", 24,"Commerce", 44), new Student("Abhishek", "Kakkar",22, "Commerce", 43), new Student("Monica", "Mishra", 26,"Science", 48) )); } public static void main(String[] args) { //Write your code here } class Student implements Comparable { String firstName; String lastName; double score; String stream; int age; public Student(String firstName, String lastName, int age, String stream, double score) { this.firstName = firstName; this.lastName = lastName; this.score = score; this.age = age; this.stream = stream; } @Override public int compareTo(Object o) { Student s2 = (Student) o; return Double.compare(s2.score, this.score); } @Override public String toString() { return "Student{" + "firstName='" + firstName + '\'' + ", lastName='" + lastName + '\'' + ", score=" + score + ", stream='" + stream + '\'' + ", age=" + age + '}'; } }
      1 risposta
      3

      Altre recensioni di colloqui per Software Engineer presso Morgan Stanley

      Colloquio per Software Engineer

      1 apr 2026
      Candidato anonimo a colloquio
      Offerta rifiutata
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho sostenuto un colloquio presso Morgan Stanley

      Colloquio

      Great processes - 4 interviews and one presentation. Over all found it fair and enjoyable . Was tough but think it was the correct process for the role and I’m glad that I took part.

      Colloquio per Software Engineer

      14 ott 2025
      Candidato anonimo a colloquio
      Montréal, QC
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho sostenuto un colloquio presso Morgan Stanley (Montréal, QC)

      Colloquio

      Mostly technical. Asked reverse string. Asked stuff from my resume, both experience wise and technically delved deeper asking about SQL questions etc...Know your resume well and be prepared for easy lt.

      Domande di colloquio [1]

      Domanda 1

      Reverse string, easy lt question basically.
      Rispondi alla domanda

      Colloquio per Software Engineer

      11 ott 2025
      Candidato anonimo a colloquio
      Mumbai
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho sostenuto un colloquio presso Morgan Stanley (Mumbai)

      Colloquio

      I recently had a telephonic interview focused on technical concepts such as Core Java, OOPS principles, Multithreading, and String usage. The interviewer asked in-depth questions, especially about real-time implementation of multithreading and memory handling with strings.

      Domande di colloquio [1]

      Domanda 1

      One question each from every Core Java Concept
      Rispondi alla domanda

      Le migliori aziende per "stipendio e benefit" vicino a te

      avatar
      Access Bank PLC
      3.7★Stipendio e benefit
      avatar
      Goldman Sachs
      3.6★Stipendio e benefit
      avatar
      The Blackstone Group
      3.9★Stipendio e benefit
      avatar
      Catapult Advisors
      4.0★Stipendio e benefit