Morgan Stanley Interview Question


Country: India




Comment hidden because of low score. Click to expand.
0
of 0 vote

1. DataStructure similar to ConcurrentHashMap with n number of blocks, can be used to represent available seats, so that N users can concurrently book the ticket.
2. Given X is the number of seats an user want to book, and YZ is the range of rows preferred, the system should try to book the seats in continuous order in same row, if not possible in any of the rows in the given range, it should try to maximize the number of seats in the row and minimize the span across the rows.

- Anonymous September 01, 2015 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

Please provide more questions of your interview

- Abhishek September 01, 2015 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

struct tickets{
        int gold;
        int solver;
        int normal;
};
struct movie{
        char starcast[100];
        int duration;
        struct tickets *barfiT;
};
struct theater{
        struct movie *barfi;
        struct movie *humtum;
};
struct city{
        struct theater *theater1;
        struct theater *theater2;
};
struct state{
        struct city *rohini;
        struct city *dwarka;
};
struct country{
        struct state *delhi;
        struct state *mp;
};
struct countries {
        struct country *india;
        struct country *china;
};

- amit October 31, 2017 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More