Upload Button Icon Add office photos

MSCI

Compare button icon Compare button icon Compare

Filter interviews by

MSCI Interview Questions, Process, and Tips

Updated 14 Mar 2025

Top MSCI Interview Questions and Answers

View all 52 questions

MSCI Interview Experiences

Popular Designations

51 interviews found

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

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Get all permutations of [1,2,3]
  • Ans. 

    Generate all permutations of [1,2,3] as array of strings

    • Use recursion to generate all possible permutations

    • Swap elements to create different permutations

    • Base case: when only one element is left, add to result array

  • Answered by AI
  • Q2. What is the purpose of the slice function in Redux Toolkit?
  • Ans. 

    The slice function in Redux Toolkit is used to create a copy of a portion of an array state.

    • Allows for immutably updating arrays in Redux state by creating a new array with a subset of elements.

    • Can be used to remove elements from an array without mutating the original state.

    • Example: const newState = state.slice(0, 2) will create a new array with the first 2 elements of the original state.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How would you find object is Array without using Array.isArray() function?
  • Ans. 

    Check if an object is an array without using Array.isArray() function

    • Check if the object has a length property

    • Check if the object has a slice method

    • Check if the object has an index of 0

  • Answered by AI

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What is software?
  • Ans. 

    Software is a collection of programs and data that instructs a computer on how to perform specific tasks.

    • Software can be categorized into system software (e.g., operating systems like Windows) and application software (e.g., Microsoft Word).

    • Programming languages (e.g., Python, Java) are used to create software applications.

    • Software can be proprietary (e.g., Adobe Photoshop) or open-source (e.g., Linux).

    • Software updates...

  • Answered by AI
  • Q2. What is an array, and what are the different types of arrays?
  • Ans. 

    An array is a collection of items stored at contiguous memory locations, allowing efficient data management.

    • 1. One-Dimensional Array: A linear list of elements, e.g., ['apple', 'banana', 'cherry'].

    • 2. Two-Dimensional Array: A grid-like structure, e.g., [['apple', 'banana'], ['cherry', 'date']].

    • 3. Multi-Dimensional Array: Arrays with more than two dimensions, e.g., a 3D array for storing data in layers.

    • 4. Dynamic Array: ...

  • Answered by AI
  • Q3. What is an operator?
  • Ans. 

    An operator is a person or system that performs specific tasks or functions, often involving data manipulation or processing.

    • Operators can be human or automated systems, like software applications.

    • In data entry, an operator inputs, updates, or manages data in databases.

    • Examples include data entry clerks, machine operators, and software operators.

    • Operators may also perform quality checks to ensure data accuracy.

  • Answered by AI
  • Q4. What are interface and inheritance in programming?
  • Ans. 

    Interfaces define contracts for classes, while inheritance allows classes to share properties and methods.

    • An interface is a reference type in programming that defines a contract of methods and properties without implementation.

    • Example of an interface in Java: 'interface Animal { void sound(); }'

    • Inheritance allows a class to inherit properties and methods from another class, promoting code reusability.

    • Example of inherit...

  • Answered by AI
  • Q5. What is polymorphism in programming?
  • Q6. What is the definition of a class in programming?
  • Q7. What are HTML and HTML5, and what are the differences between them?
  • Ans. 

    HTML is the standard markup language for creating web pages, while HTML5 is its latest version with enhanced features.

    • HTML (HyperText Markup Language) is the foundation of web pages, while HTML5 is the fifth version with new capabilities.

    • HTML5 supports multimedia elements like <audio> and <video>, which were not natively supported in earlier versions.

    • HTML5 introduces semantic elements like <header>, &...

  • Answered by AI
  • Q8. What is Cascading Style Sheets (CSS)?
  • Ans. 

    Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML or XML.

    • CSS controls layout, colors, fonts, and overall visual appearance of web pages.

    • It allows for responsive design, adapting layouts for different screen sizes (e.g., mobile vs. desktop).

    • CSS can be applied inline, embedded in the head of an HTML document, or linked as an external stylesheet.

    • Example: ...

  • Answered by AI
  • Q9. What is a data type?
  • Ans. 

    A data type defines the kind of data a variable can hold, such as integers, strings, or booleans.

    • Integer: Represents whole numbers, e.g., 1, 42, -7.

    • String: Represents text, e.g., 'Hello', 'Data Entry'.

    • Boolean: Represents true/false values, e.g., true, false.

    • Float: Represents decimal numbers, e.g., 3.14, -0.001.

  • Answered by AI
  • Q10. What are the differences between JavaScript and Java?
  • Ans. 

    JavaScript is a scripting language for web development, while Java is a robust, object-oriented programming language.

    • JavaScript is primarily used for client-side web development, while Java is used for server-side applications.

    • JavaScript is dynamically typed, meaning variable types are determined at runtime, whereas Java is statically typed, requiring explicit type declaration.

    • JavaScript runs in web browsers, while Jav...

  • Answered by AI
  • Q11. What is Java?

Top MSCI Data Entry Operator Interview Questions and Answers

Q1. What are HTML and HTML5, and what are the differences between them?
View answer (1)

Data Entry Operator Interview Questions asked at other Companies

Q1. What is skills matrix of Return center Department?
View answer (45)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Simple java questions, one coding question and one design question

Round 2 - Technical 

(5 Questions)

  • Q1. What is visitor pattern?
  • Ans. 

    Visitor pattern is a design pattern where a visitor class is used to perform operations on elements of a data structure.

    • Visitor pattern allows adding new operations to existing classes without modifying them

    • It separates the algorithm from the object structure on which it operates

    • Commonly used in compilers, interpreters, and other complex systems

  • Answered by AI
  • Q2. You have a 2d array {{1,2},{1,3},{5,6}}. Calculate the sum of elements of 1st position in every array with Java 8.
  • Ans. 

    Calculate sum of elements at 1st position in each array using Java 8.

    • Use Java 8 stream to map each array to its 1st element and then sum them up.

    • Example: {{1,2},{1,3},{5,6}} -> 1 + 1 + 5 = 7

  • Answered by AI
  • Q3. Design Thread collector class
  • Ans. 

    Thread collector class to manage and organize threads in a system

    • Create a ThreadCollector class with methods to add, remove, and retrieve threads

    • Implement a data structure like a list or queue to store the threads

    • Ensure thread safety by using synchronization mechanisms like locks or semaphores

  • Answered by AI
  • Q4. What is volatile?
  • Ans. 

    Volatile refers to a type of memory storage that is temporary and can change frequently.

    • Volatile memory loses its data when power is turned off, unlike non-volatile memory.

    • Volatile memory is commonly used for temporary storage of data that needs to be quickly accessed and modified.

    • Examples of volatile memory include RAM (Random Access Memory) in computers and cache memory in processors.

  • Answered by AI
  • Q5. Sql query to remove duplicates
  • Ans. 

    Use the DISTINCT keyword in a SELECT statement to remove duplicates from a table.

    • Use the SELECT DISTINCT statement to retrieve unique rows from a table.

    • For example: SELECT DISTINCT column_name FROM table_name;

    • Another way is to use the GROUP BY clause with the COUNT() function to remove duplicates.

    • For example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name;

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Why do you think you are fit for this role?
  • Q2. Why are you leaving your current company?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and opportunities

    • Looking for career advancement

    • Seeking a more innovative and dynamic work environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Manager seems to be very rude here as he cut my interview midway and said we should not proceed as we are not a good match for each other. Very unprofessional approach. Study java and designing for technical rounds.

Skills evaluated in this interview

Vice President Engineering Interview Questions asked at other Companies

Q1. You have a 2d array {{1,2},{1,3},{5,6}}. Calculate the sum of elements of 1st position in every array with Java 8.
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Describe your projects
  • Ans. 

    I have worked on various projects involving data analysis, market research, and process improvement.

    • Conducted market research to identify new opportunities for product development

    • Utilized data analysis techniques to optimize business processes

    • Implemented process improvement strategies to increase efficiency and reduce costs

  • Answered by AI
  • Q2. All about resume
Round 2 - Technical 

(2 Questions)

  • Q1. What is normalisation
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down data into smaller, more manageable tables

    • It helps in reducing data redundancy by storing data in a structured manner

    • Normalization ensures data integrity by minimizing anomalies such as update, insert, and delete anomalies

  • Answered by AI
  • Q2. How is data stored in power BI
  • Ans. 

    Data in Power BI is stored in a compressed columnar format called VertiPaq.

    • Data in Power BI is stored in a compressed columnar format called VertiPaq.

    • VertiPaq stores data in memory, allowing for fast query performance.

    • Power BI also supports DirectQuery mode where data is queried directly from the data source.

    • Data can be imported into Power BI or connected live to the data source.

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. How did you write BRDs
  • Ans. 

    I wrote BRDs by gathering requirements from stakeholders, documenting them clearly, and ensuring alignment with project goals.

    • Conducting interviews with stakeholders to gather requirements

    • Documenting requirements in a clear and structured manner

    • Ensuring alignment of requirements with project goals

    • Reviewing and revising BRDs based on feedback

  • Answered by AI
  • Q2. What is the motivating and demotivating factor when joining a new organization
  • Ans. 

    Motivating factors include growth opportunities and positive work culture, while demotivating factors include lack of recognition and poor management.

    • Motivating factors: opportunities for growth and advancement, positive work culture, competitive salary and benefits

    • Demotivating factors: lack of recognition for hard work, poor management and leadership, toxic work environment

    • Examples: A motivating factor could be a clea...

  • Answered by AI

Skills evaluated in this interview

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)

MSCI interview questions for popular designations

 Senior Associate

 (7)

 Data Operator

 (5)

 Real Estate Analyst

 (3)

 Analyst

 (3)

 Associate

 (3)

 Data Analyst

 (2)

 Software Engineer Intern

 (2)

 Data Entry Operator

 (2)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding questions and 1 sql query question

Round 2 - One-on-one 

(2 Questions)

  • Q1. LRU cache memory implementation using linked list
  • Ans. 

    LRU cache memory can be implemented using a linked list to store and manage recently used items efficiently.

    • Use a doubly linked list to keep track of the order of items based on their usage.

    • When an item is accessed, move it to the front of the list to indicate it is the most recently used.

    • If the cache is full, remove the least recently used item from the end of the list.

    • Maintain a hashmap for quick access to items in t

  • Answered by AI
  • Q2. Sliding window coding question
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on projects

Skills evaluated in this interview

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

Get interview-ready with Top MSCI Interview Questions

Risk Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is VAR? Methods of calculating VAR
  • Ans. 

    VAR stands for Value at Risk, a measure used to assess the potential loss in value of a portfolio due to market risk.

    • VAR is a statistical measure used to quantify the level of financial risk within a firm or investment portfolio.

    • There are different methods to calculate VAR such as historical simulation, parametric method, and Monte Carlo simulation.

    • Historical simulation involves using historical data to estimate potent...

  • Answered by AI

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)

Jobs at MSCI

View all
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

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About previous company project
  • Q2. Weakness and strengths

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your project well, what you did was right..ewhat had been your learnings

Executive Director Interview Questions asked at other Companies

Q1. 1. How proficient are you with tools like Excel, SAP, or Tally?
View answer (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Jun 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was a test which I have to complete in one hour

Round 2 - Technical 

(2 Questions)

  • Q1. They asked me some technical questions related to my CV
  • Q2. They told about my responsibility

Interview Preparation Tips

Interview preparation tips for other job seekers - They just mislead people

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

HackerRank Test on 2 coding and 1 SQL question.

Round 2 - One-on-one 

(2 Questions)

  • Q1. OOPS, Data Structures and algorithm coding questions.
  • Q2. SQL query question

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

Associate Interview Questions & Answers

user image Anonymous

posted on 4 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General questions about current job role
Round 2 - Technical 

(1 Question)

  • Q1. Discussion about job related topics
Round 3 - One-on-one 

(1 Question)

  • Q1. One on one discussion regarding job role and aptitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare topics well

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR &amp; why required for powder coating process ?
View answer (17)

MSCI Interview FAQs

How many rounds are there in MSCI interview?
MSCI interview process usually has 2-3 rounds. The most common rounds in the MSCI interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for MSCI interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at MSCI. The most common topics and skills that interviewers at MSCI expect are Recruitment, CVS, Python, Financial Services and SQL.
What are the top questions asked in MSCI interview?

Some of the top questions asked at the MSCI interview -

  1. Have you found a conflicting situation about Data Science projects, where a tea...read more
  2. How will you design Android lock pattern, which days Structure will you use for...read more
  3. What is your knowledge about Real Esta...read more
How long is the MSCI interview process?

The duration of MSCI interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

MSCI Interview Process

based on 52 interviews

Interview experience

4.2
  
Good
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
 • 205 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Bloomberg Interview Questions
3.4
 • 24 Interviews
Moody's Interview Questions
4.0
 • 22 Interviews
NASDAQ Interview Questions
3.7
 • 18 Interviews
View all

MSCI Reviews and Ratings

based on 276 reviews

3.9/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

4.0

Salary

3.4

Job security

3.9

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 276 Reviews and Ratings
Software Engineer - Vice President

Bangalore / Bengaluru

10-13 Yrs

Not Disclosed

Software Engineer - Senior Associate

Pune

3-6 Yrs

₹ 16.5-32 LPA

Machine Learning Engineer

Mumbai

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Associate
482 salaries
unlock blur

₹15.4 L/yr - ₹60 L/yr

Associate
477 salaries
unlock blur

₹9 L/yr - ₹34.9 L/yr

Analyst
220 salaries
unlock blur

₹5.3 L/yr - ₹20 L/yr

Vice President
204 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

S&P Global

4.1
Compare

Moody's

4.0
Compare

Thomson Reuters

4.1
Compare

Bloomberg

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