Upload Button Icon Add office photos

MSCI

Compare button icon Compare button icon Compare

Filter interviews by

MSCI Network Associate Interview Questions and Answers

Updated 23 Feb 2024

MSCI Network Associate Interview Experiences

1 interview found

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

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

Interview Questionnaire 

3 Questions

  • Q1. Compensation specific
  • Q2. Domain based questions
  • Q3. Questions related to family and personal information

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Assignment 

Easy assignment with basic questions on patent

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 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. What is the P/E ratio?
  • Ans. 

    The P/E ratio, or price-to-earnings ratio, is a financial metric used to assess the valuation of a company's stock.

    • P/E ratio compares a company's stock price to its earnings per share (EPS).

    • It indicates how much investors are willing to pay for each dollar of earnings.

    • A higher P/E ratio suggests higher expectations for future earnings growth.

    • A lower P/E ratio may indicate undervaluation or lower growth prospects.

    • P/E ra...

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

(1 Question)

  • Q1. Define PEG Ratio?
  • Ans. 

    PEG ratio is a valuation metric used to assess the relationship between a company's stock price, its earnings growth, and its potential for future growth.

    • PEG ratio is calculated by dividing the price-to-earnings (P/E) ratio by the earnings growth rate.

    • It helps investors determine if a stock is overvalued or undervalued based on its growth prospects.

    • A PEG ratio below 1 suggests that the stock may be undervalued, while a...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is the difference between DCF and Relative valuation
  • Ans. 

    DCF values a company based on its future cash flows, while Relative valuation compares a company to its peers based on multiples like P/E ratio.

    • DCF calculates the intrinsic value of a company by discounting its future cash flows to present value.

    • Relative valuation compares a company's valuation metrics (like P/E ratio, EV/EBITDA) to similar companies in the industry.

    • DCF is more focused on the specific company's fundame...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why did you apply to S&P
  • Q2. Do you know SqL or C Sharp
  • Ans. 

    Yes, I know both SQL and C#.

    • I have experience in writing SQL queries for database management.

    • I have worked on C# projects for developing desktop and web applications.

    • I am familiar with object-oriented programming concepts and database design principles.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great internal growth, but lacks on pay. Company is moving in the B right direction.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Dividend yield ratio
  • Ans. 

    Dividend yield ratio is a financial ratio that shows how much a company pays out in dividends each year relative to its stock price.

    • Dividend yield ratio is calculated by dividing the annual dividends per share by the price per share.

    • It is used by investors to evaluate the attractiveness of a stock based on its dividend payments.

    • A higher dividend yield ratio indicates a higher return on investment from dividends.

    • For exa...

  • Answered by AI
  • Q2. Stock splits& EPS & other ratios

Interview Questionnaire 

1 Question

  • Q1. Core Java and aws

Interview Preparation Tips

Round: Technical Interview
Tips: * Easy technical questions
* Hiring procedure is more of technical assessment + personality assessment

Skills:
College Name: IIT Madras

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

I applied via Company Website and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked python memory management, string manipulations, regex, and about my current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep strong hold on python basics and data structure

MSCI Interview FAQs

What are the top questions asked in MSCI Network Associate interview?

Some of the top questions asked at the MSCI Network Associate interview -

  1. Domain based questi...read more
  2. Compensation speci...read more

Tell us how to improve this page.

MSCI Network Associate Interview Process

based on 1 interview

Interview experience

5
  
Excellent
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
Apex Group Interview Questions
2.7
 • 133 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.9
 • 115 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Pine Labs Interview Questions
3.4
 • 109 Interviews
View all
Senior Associate
483 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
466 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
224 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Vice President
201 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
66 salaries
unlock blur

₹0 L/yr - ₹0 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