Upload Button Icon Add office photos

Filter interviews by

MSCI Senior Engineer Interview Questions and Answers

Updated 29 Dec 2024

MSCI Senior Engineer Interview Experiences

1 interview 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

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Questions and answers related to all mathematics topics.

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

I applied via Approached by Company and was interviewed before Jun 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Some basic aptitube and reasoning problems were asked. Easily solvable.

Round 2 - Coding Test 

They asked multiple choice questions on oracle sql and pl/sql emphasizing more on reading a code block ask output questions. These were of medium hardness.

Round 3 - Technical 

(1 Question)

  • Q1. They asked what you do on daily basis in your work. What is most complex thing you have implemented and some complex questions on multilevel plsql collection module. It lasted for 1.5 hrs
Round 4 - One-on-one 

(4 Questions)

  • Q1. Questions regarding Oracle architecture and its component
  • Q2. Question on live implementation of multilevel collection, bulk collect and record limiting and bulk exception handleing.
  • Q3. Dml error logging functionality
  • Ans. 

    DML error logging functionality allows for capturing errors during data manipulation language operations.

    • DML error logging can be enabled at the table level using the LOG ERRORS clause in DML statements.

    • It helps in identifying and resolving data issues without causing the entire transaction to fail.

    • Errors are logged in a separate error table, allowing the main operation to continue processing.

    • Example: INSERT INTO table...

  • Answered by AI
  • Q4. Query and join optimization
Round 5 - HR 

(1 Question)

  • Q1. Related to salary and what benefits they provide.

I applied via LinkedIn and was interviewed in Oct 2021. 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 - Technical 

(1 Question)

  • Q1. 1. Tell me about Python OS module. 2. What is Anachron? 3. What is the difference between Dynamic and Static website? 4. How will you clone a particular branch? 5. How will you handle exceptions in Ansible...
  • Ans. 

    Technical interview questions for Senior Engineer position

    • Python OS module provides a way of interacting with the operating system

    • Anachron is a tool for scheduling periodic jobs

    • Dynamic websites generate content on the fly while static websites serve pre-built content

    • To clone a particular branch, use the git clone command followed by the branch name

    • Exceptions in Ansible can be handled via the 'ignore_errors' parameter i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Ameriprise Financial Senior Engineer interview:
  • ansible
  • python
  • linux
  • aws
  • git
  • shell
  • jenkins
  • your resume
Interview preparation tips for other job seekers - Most of their questions were twisted. Take your time to understand what they are asking and then go forward with a response. Trust yourself and your knowledge, but, don't try to fake your knowledge or take too much time to give a response.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Write code to return the maximum profit by buying and selling stocks using available money

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is HTML and CSS?
  • Ans. 

    HTML and CSS are markup languages used for creating and styling web pages.

    • HTML stands for HyperText Markup Language and is used for structuring content on web pages.

    • CSS stands for Cascading Style Sheets and is used for styling the appearance of web pages.

    • HTML uses tags to define elements like headings, paragraphs, images, and links.

    • CSS allows for customization of colors, fonts, layout, and other visual aspects of a web...

  • Answered by AI
  • Q2. Operating Systems, DBMS, Python

Skills evaluated in this interview

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

(1 Question)

  • Q1. Best practices of coding
  • Ans. 

    Best practices of coding include writing clean and readable code, using meaningful variable names, following coding standards, and testing code thoroughly.

    • Write clean and readable code

    • Use meaningful variable names

    • Follow coding standards

    • Test code thoroughly

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

(1 Question)

  • Q1. String related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Tuple related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly with basics of python strings related questions.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Low-level design interview
I need to design a Music player app using oops concept

Round 3 - One-on-one 

(5 Questions)

  • Q1. Sort the stack in O(1) time complexity
  • Ans. 

    Use an additional stack to store sorted elements and maintain the minimum element at the top of the original stack.

    • Create a new stack to store sorted elements.

    • Pop elements from the original stack and compare with the top element of the new stack.

    • If the popped element is smaller, push it to the new stack. If larger, keep popping from the new stack and push to the original stack until the correct position is found.

    • Repeat...

  • Answered by AI
  • Q2. Difference between process and thread
  • Ans. 

    A process is an instance of a program running on a computer, while a thread is a smaller unit of execution within a process.

    • A process has its own memory space, while threads within the same process share memory.

    • Processes are independent of each other, while threads within the same process can communicate with each other.

    • Processes are heavyweight, requiring separate memory and resources, while threads are lightweight an...

  • Answered by AI
  • Q3. Difference between abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract class is used to provide a common base for multiple derived classes, while interface is used to define a contract fo...

  • Answered by AI
  • Q4. What is race condition?
  • Ans. 

    A race condition is a situation in which the outcome of a program depends on the order of execution of its threads or processes.

    • Occurs when multiple threads or processes access shared data or resources concurrently

    • Can lead to unpredictable behavior or bugs in the program

    • Prevented by using synchronization mechanisms like locks or semaphores

    • Example: Two threads trying to increment a shared variable simultaneously

  • Answered by AI
  • Q5. What is normalization in dbms
  • Ans. 

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

    • Normalization involves breaking down a database into smaller, more manageable tables.

    • It helps in reducing data redundancy by storing data in a structured way.

    • There are different normal forms like 1NF, 2NF, 3NF, BCNF, etc.

    • Example: In a database of students, instead of storing student details in multiple ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is policy manager
  • Ans. 

    Policy manager is a software tool used to centrally manage and enforce policies across an organization's systems and applications.

    • Policy manager helps define, monitor, and enforce policies related to security, compliance, access control, and other governance aspects.

    • It allows administrators to set rules and regulations that govern how data and resources are accessed and used within an organization.

    • Policy manager can au...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on actimize IFM.

Skills evaluated in this interview

MSCI Interview FAQs

How many rounds are there in MSCI Senior Engineer interview?
MSCI interview process usually has 2 rounds. The most common rounds in the MSCI interview process are Technical.
What are the top questions asked in MSCI Senior Engineer interview?

Some of the top questions asked at the MSCI Senior Engineer interview -

  1. What is the purpose of the slice function in Redux Toolk...read more
  2. How would you find object is Array without using Array.isArray() functi...read more
  3. Get all permutations of [1,2...read more

Tell us how to improve this page.

MSCI Senior Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

S&P Global Interview Questions
4.2
 • 272 Interviews
Morningstar Interview Questions
3.9
 • 242 Interviews
FactSet Interview Questions
3.9
 • 207 Interviews
Apex Group Interview Questions
2.7
 • 127 Interviews
Kotak Securities Interview Questions
3.6
 • 113 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
TresVista Interview Questions
2.9
 • 112 Interviews
Pine Labs Interview Questions
3.4
 • 107 Interviews
View all
MSCI Senior Engineer Salary
based on 4 salaries
₹18 L/yr - ₹34 L/yr
210% more than the average Senior Engineer Salary in India
View more details
Senior Associate
480 salaries
unlock blur

₹14 L/yr - ₹59 L/yr

Associate
475 salaries
unlock blur

₹9.1 L/yr - ₹35 L/yr

Analyst
218 salaries
unlock blur

₹5 L/yr - ₹21 L/yr

Vice President
200 salaries
unlock blur

₹22 L/yr - ₹73 L/yr

Data Analyst
60 salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Explore more salaries
Compare MSCI with

S&P Global

4.2
Compare

Moody's

4.1
Compare

Thomson Reuters

4.1
Compare

Bloomberg

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