Upload Button Icon Add office photos

MSCI

Compare button icon Compare button icon Compare

Filter interviews by

MSCI Software Developer Intern Interview Questions and Answers

Updated 8 Mar 2025

MSCI Software Developer Intern Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

DSA questions - 2, SQL - 1

Round 2 - Assignment 

DSA questions - 2, SQL - 1

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA questions of medium level and SQL
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Test has three questions

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Why would we hire you?
  • Ans. 

    I have a strong technical background, a passion for software development, and a proven track record of delivering high-quality projects.

    • Strong technical skills in programming languages such as Java, Python, and C++

    • Experience with software development projects, including creating web applications and mobile apps

    • Proven ability to work well in a team and communicate effectively with stakeholders

    • Passion for learning and st...

  • Answered by AI

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Technical MCQ and coding (medium)

Round 2 - Coding Test 

This was long programing round. In this you need to design a application. First you need do ER or class diagram. Then you need code in any programing language but OOPS is prefered. They see is app is scalable and data modeling

Round 3 - Technical 

(4 Questions)

  • Q1. Basing OOPS, DBMS, SQL and DS
  • Q2. Sql joins and normalisation
  • Q3. Sort stack ds and real life example
  • Ans. 

    Sorting a stack data structure and its real-life example

    • Sorting a stack involves popping elements and comparing them to the remaining elements in the stack

    • Real-life example: arranging books on a shelf in alphabetical order

    • Another example: sorting a deck of cards by suit and rank

  • Answered by AI
  • Q4. Question from resume and previous round solution

Interview Preparation Tips

Interview preparation tips for other job seekers - If you pass the last round then you will be having HR interview

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. Find a number which occurs odd number of times and all number occurs even number of times
  • Ans. 

    Find an odd occurring number among even occurring numbers.

    • Use XOR operation to cancel out even occurring numbers and get the odd occurring number.

    • Iterate through the array and XOR each element with the result variable.

    • The final result will be the odd occurring number.

  • Answered by AI
  • Q2. Some discussion about my minor project
  • Q3. Spiral order of binary tree and mattrix, print it
  • Ans. 

    Print the spiral order of a binary tree and matrix.

    • For binary tree, use level order traversal and alternate direction for each level.

    • For matrix, use four pointers to traverse in spiral order.

    • Example for binary tree: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9

    • Example for matrix: 1 2 3 4 -> 8 7 6 5 -> 9 10 11 12 -> 16 15 14 13

  • Answered by AI
  • Q4. Some question about os,dbms
  • Q5. Find pair which have a given sum in a given array
  • Ans. 

    Finding pairs in an array with a given sum.

    • Iterate through the array and for each element, check if the difference between the given sum and the element exists in the array.

    • Use a hash table to store the elements of the array and their indices for faster lookup.

    • If there are multiple pairs with the same sum, return any one of them.

    • If no pair is found, return null or an empty array.

  • Answered by AI
  • Q6. Find total number of k element which have a given avg in a given array in minimum time complexity
  • Ans. 

    Find total number of k element with given avg in an array in minimum time complexity.

    • Use sliding window technique to traverse the array in O(n) time complexity.

    • Maintain a sum variable to keep track of the sum of elements in the window.

    • If the sum of elements in the window is equal to k times the given avg, increment the count.

    • Move the window by subtracting the first element and adding the next element in the array.

  • Answered by AI
  • Q7. Print all elements which in not boundary element in a given binary tree
  • Ans. 

    Printing non-boundary elements of a binary tree

    • Traverse the tree in any order (preorder, inorder, postorder)

    • Check if the current node is not a boundary node (not the first or last node in its level)

    • If it is not a boundary node, print its value

    • Recursively traverse its left and right subtrees

  • Answered by AI
  • Q8. Then some question about process synchronisation,error vs exception,and then 2-3 hr question

Interview Preparation Tips

Round: Test
Experience: practice codes on paper
Tips:

Round: Technical Interview
Experience: very good
Tips: please try to explain each and every question in detail

Round: Technical Interview
Experience: my hr round is not taken by them,and some of face 3rd round ,which is HR
Tips: please prepare all types of problem from geeksforgeeks

Skill Tips: please try to understand every problem from geeksforgeeks
Skills: ds
College Name: NIT Bhopal
Motivation: best work culture,and a lots of learning opportunity in this company,and in every 6 month there is a appraisal

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Basic javascript.. closures,hoisting, es6 features etc
  • Q2. Prototype in JavaScript
  • Ans. 

    Prototyping in JavaScript allows for quick and easy creation of new objects and functions.

    • Prototyping allows for inheritance and sharing of properties and methods.

    • New objects can be created using the 'new' keyword and the prototype of an existing object.

    • Functions can also be prototyped to add new methods or properties.

    • Example: function Person(name) { this.name = name; } Person.prototype.greet = function() { console.log...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Arithmetic Aptitude , Computer Application and SQL

Round 2 - System Design 

(1 Question)

  • Q1. Create a Fitness Tracking Application
  • Ans. 

    A fitness tracking application to monitor and track user's physical activities and progress.

    • Include features like tracking steps, calories burned, distance traveled, and workout sessions.

    • Allow users to set goals, view progress charts, and receive notifications for reminders.

    • Integrate with wearable devices like Fitbit or Apple Watch for real-time data syncing.

    • Provide social sharing options to motivate users and compete ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mr Cooper Software Developer interview:
  • System Design
  • SQL
  • OOPS

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

Duration 3 hours topics medium level coding from hackerearth

Round 2 - Technical 

(2 Questions)

  • Q1. Long programming
  • Q2. Er diagrams

Interview Preparation Tips

Interview preparation tips for other job seekers - hard work brings success much more than we expect
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is linked list
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence.

    • Consists of nodes connected by pointers

    • Can be singly linked (each node points to the next) or doubly linked (each node points to the next and previous)

    • Allows for dynamic size and efficient insertion/deletion operations

  • Answered by AI
Round 2 - Coding Test 

Hacker earth problem

Round 3 - HR 

(1 Question)

  • Q1. Ds , oops , sql
Round 4 - HR 

(1 Question)

  • Q1. About me , prefered location

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hour 10 mins, MERN Stack, Face to Face. Mongodb, medium DSA Question, callback, eventloop, NodeJS asynchronous working

Interview Preparation Tips

Interview preparation tips for other job seekers - you should have prior experience in coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between a static function and a static variable?
  • Ans. 

    Static function is a function that can only be accessed within the same file, while a static variable is a variable that retains its value between function calls.

    • Static function is declared using the 'static' keyword before the return type, limiting its scope to the file it is defined in.

    • Static variable is declared using the 'static' keyword before the variable type, retaining its value between function calls.

    • Example o...

  • Answered by AI
  • Q2. What is the synchronization technique?
  • Ans. 

    Synchronization technique is a method used to control access to shared resources in a multi-threaded environment.

    • Synchronization techniques prevent race conditions and ensure data consistency

    • Common synchronization techniques include locks, semaphores, and monitors

    • Examples include using synchronized keyword in Java or mutex in C++

  • Answered by AI
Round 2 - Coding Test 

Add an element to a linked list.

MSCI Interview FAQs

How many rounds are there in MSCI Software Developer Intern interview?
MSCI interview process usually has 2 rounds. The most common rounds in the MSCI interview process are Coding Test, Technical and Assignment.

Tell us how to improve this page.

MSCI Software Developer Intern Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

S&P Global Interview Questions
4.1
 • 277 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 206 Interviews
Apex Group Interview Questions
2.7
 • 137 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.8
 • 115 Interviews
Thomson Reuters Interview Questions
4.1
 • 113 Interviews
Pine Labs Interview Questions
3.4
 • 111 Interviews
View all
Associate
490 salaries
unlock blur

₹9 L/yr - ₹36.7 L/yr

Senior Associate
481 salaries
unlock blur

₹16 L/yr - ₹60 L/yr

Analyst
229 salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Vice President
206 salaries
unlock blur

₹22 L/yr - ₹94 L/yr

Data Analyst
66 salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Explore more salaries
Compare MSCI with

SBI Cards & Payment Services

3.7
Compare

Axis Direct

3.8
Compare

Kotak Securities

3.6
Compare

FactSet

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview