Upload Button Icon Add office photos

Morningstar

Compare button icon Compare button icon Compare

Filter interviews by

Morningstar Associate Engineer Interview Questions and Answers

Updated 13 Jul 2021

Morningstar Associate Engineer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly into technical sides

Interview Preparation Tips

Interview preparation tips for other job seekers - Smooth interview process

Interview questions from similar companies

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 Naukri.com and was interviewed in Apr 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. C# basics, api, program

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in c# basics

I applied via Naukri.com and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is multiple questions on java, SQL, spring and more focus on current working challenges, how your approach towards resolution

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with technical skills and interpersonal skills as well.

I applied via Naukri.com and was interviewed in Jun 2021. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java , Spring boot , Kafka

I applied via Naukri.com and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Java 8, data structures, spring boot , microservices
  • Q2. Active mq/rabbit mq
  • Q3. JPA/jdbc queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and give, worth to join netspend

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

I applied via Referral and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions on corporate actions, call and put options, crystallization process

Interview Preparation Tips

Interview preparation tips for other job seekers - study well on corporate actions, journal entries on accruals, prepayments, crystallization, performance fees etc

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Q. How to improve SQL performance
  • Ans. 

    Improving SQL performance involves optimizing queries, indexes, and server resources.

    • Optimize queries by reducing complexity and avoiding unnecessary joins

    • Use indexes to speed up data retrieval

    • Ensure server resources are adequate for the workload

    • Consider partitioning large tables to improve query performance

    • Use stored procedures to reduce network traffic and improve security

  • Answered by AI
  • Q2. Q.What is index,Trigger,Stored procedure
  • Ans. 

    Index, trigger, and stored procedure are database objects used to improve performance and automate tasks.

    • An index is a data structure that improves the speed of data retrieval operations on a database table.

    • A trigger is a set of instructions that automatically executes in response to certain events, such as an insert, update, or delete operation on a table.

    • A stored procedure is a precompiled set of SQL statements that ...

  • Answered by AI
  • Q3. Q.Define relationship in sql
  • Ans. 

    Relationship in SQL refers to the association between two or more tables based on common fields.

    • Relationships are established using foreign keys

    • Types of relationships include one-to-one, one-to-many, and many-to-many

    • Relationships can be visualized using ER diagrams

    • Joins are used to retrieve data from related tables

  • Answered by AI
  • Q4. Q.Define Class module in vba
  • Ans. 

    Class module is a custom object in VBA that allows you to define your own properties and methods.

    • Class modules are used to create custom objects in VBA

    • They allow you to define your own properties and methods

    • You can create instances of a class module and use them in your code

    • Class modules are useful for encapsulating complex logic and data

    • They can be used to create reusable code libraries

  • Answered by AI
  • Q5. Q.Objects in ms access
  • Ans. 

    Objects in MS Access are used to represent tables, forms, reports, and other database objects.

    • Objects are used to organize and manage data in MS Access.

    • Tables are the most basic object and store data in rows and columns.

    • Forms are used to display and edit data in a user-friendly way.

    • Reports are used to present data in a formatted and organized way.

    • Queries are used to retrieve and manipulate data from tables.

    • Modules are ...

  • Answered by AI
  • Q6. Q.What is Design view,Datasheet view in ms access
  • Ans. 

    Design view is used to create and modify database objects, while Datasheet view is used to view and edit data in tables.

    • Design view allows users to create and modify tables, queries, forms, reports, and macros.

    • Datasheet view displays data in a spreadsheet-like format and allows users to edit data directly.

    • Design view is used to set properties and define relationships between tables.

    • Datasheet view is used to sort, filte...

  • Answered by AI
  • Q7. Q. Describe joins and types in sql
  • Ans. 

    Joins are used to combine data from two or more tables in SQL. There are different types of joins.

    • Inner join returns only the matching rows from both tables

    • Left join returns all the rows from the left table and matching rows from the right table

    • Right join returns all the rows from the right table and matching rows from the left table

    • Full outer join returns all the rows from both tables

    • Cross join returns the Cartesian p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare practical question for sql

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2022. There were 4 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. Don't remember the questions
Round 3 - Technical 

(1 Question)

  • Q1. Don't remember the questions
Round 4 - HR 

(1 Question)

  • Q1. Don't remember the questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to learn about payments and it's processing before giving interview. Also, it's better to clarify small and big things with HR in the beginning itself before joining. Overall it's a good company compared to others.

Tell us how to improve this page.

Interview Questions from Similar Companies

FactSet Interview Questions
3.9
 • 206 Interviews
Apex Group Interview Questions
2.7
 • 137 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
Mr Cooper Interview Questions
4.0
 • 84 Interviews
Sharekhan Interview Questions
3.8
 • 81 Interviews
Synchrony Interview Questions
4.3
 • 77 Interviews
Axis Direct Interview Questions
3.8
 • 76 Interviews
View all
Morningstar Associate Engineer Salary
based on 6 salaries
₹4.9 L/yr - ₹8 L/yr
33% more than the average Associate Engineer Salary in India
View more details

Morningstar Associate Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Data Research Analyst
1.5k salaries
unlock blur

₹1.6 L/yr - ₹8.1 L/yr

Research Associate
649 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Senior Data Research Analyst
585 salaries
unlock blur

₹3.6 L/yr - ₹8.5 L/yr

Software Engineer
329 salaries
unlock blur

₹6.6 L/yr - ₹17.1 L/yr

Senior Research Associate
307 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Explore more salaries
Compare Morningstar with

Axis Direct

3.8
Compare

Kotak Securities

3.6
Compare

FactSet

3.9
Compare

Sharekhan

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