Upload Button Icon Add office photos

Morningstar

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Morningstar Associate Software Engineer Interview Questions and Answers

Updated 7 May 2024

Morningstar Associate Software Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. What are joins in sql
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. What is OOP features
  • Ans. 

    OOP features are key concepts in Object-Oriented Programming that include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: Ability for a class to inherit properties and behavior from another class

    • Polymorphism: Ability for objects to be treated as instances of their parent class or their own class

    • Abstractio...

  • Answered by AI
  • Q3. Primary key , foreign key
  • Q4. Exception in java
  • Ans. 

    An exception in Java is a runtime error that disrupts the normal flow of a program.

    • Exceptions are objects that are thrown when an error occurs during the execution of a program.

    • They can be caught and handled using try-catch blocks.

    • Common types of exceptions in Java include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was basic aptitude test on rs aggrawal

Round 2 - One-on-one 

(1 Question)

  • Q1. Try catch exception handling
Round 3 - HR 

(1 Question)

  • Q1. Where do you live

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How would you write a REST API from scratch? Explain your role in the project.
  • Ans. 

    To write a REST API from scratch, I would follow these steps:

    • Define the resources and endpoints

    • Choose a programming language and framework

    • Implement CRUD operations for each resource

    • Use HTTP methods and status codes correctly

    • Add authentication and authorization

    • Test the API using tools like Postman

    • Document the API using tools like Swagger

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There are two rounds of technical and one hr.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Overall on SQL interview questions.
  • Q2. Triiggers, sp, function , some queries to build

Interview Preparation Tips

Interview preparation tips for other job seekers - Good SQL knowledge is required
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement 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 Resume tips
Round 2 - Coding Test 

Basic concepts of programming

Round 3 - One-on-one 

(1 Question)

  • Q1. Programming concepts
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 - Technical 

(3 Questions)

  • Q1. Core java concepts,Sql queries,2 coding question based on arrays and string
  • Q2. Reverse the string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end to reverse the string

    • Return the reversed string

  • Answered by AI
  • Q3. Find third highest salary from a employee table
Round 2 - Technical 

(4 Questions)

  • Q1. Advance java and project related
  • Q2. Springboot and spring diff
  • Q3. Springboot annotations used in your project
  • Ans. 

    Some common Springboot annotations used in projects are @RestController, @Autowired, @RequestMapping, @Service, @Component, @Repository.

    • @RestController - Used to define RESTful web services.

    • @Autowired - Used for automatic dependency injection.

    • @RequestMapping - Used to map web requests to specific handler methods.

    • @Service - Used to indicate that a class is a service.

    • @Component - Used to indicate that a class is a Spring...

  • Answered by AI
  • Q4. Springboot dependencies

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. I was interviewed for 2yr experience. Normal Core java and basic sql question.
  • Q2. Oops concept. Collections. Abstract class and interface. Sql procedures and functions Sql basic query
Round 3 - Behavioral 

(2 Questions)

  • Q1. Questions related to the projects worked till date. Explain your project. And counter question on your project.
  • Q2. How many projects have you worked on? Explain each in short.

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly focus on your communication and be detailed about project.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. In How many ways we can create objects in Java
  • Ans. 

    Objects in Java can be created in multiple ways, including using new keyword, cloning, deserialization, and reflection.

    • Using the 'new' keyword

    • Cloning an existing object

    • Deserialization from a file or network

    • Using reflection to create objects dynamically

  • Answered by AI
  • Q2. Difference between Interface and Abstract Class
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while abstract class can have both implemented and abstract methods.

    • Interface methods are public and abstract by default, while abstract class can have abstract and non-abstract methods.

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

    • Interfaces are used to achieve multiple inheritance in Java, while abstract ...

  • Answered by AI
  • Q3. What is Serialization
  • Ans. 

    Serialization is the process of converting an object into a format that can be easily stored or transmitted.

    • Serialization is used to convert complex data structures or objects into a stream of bytes.

    • Serialized data can be stored in files, databases, or sent over a network.

    • Common serialization formats include JSON, XML, and Protocol Buffers.

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Python programming questions
  • Q2. Custom Exceptional Handling

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer everything confidently.

I applied via Company Website and was interviewed in Dec 2021. 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 Resume tips
Round 2 - Coding Test 

Java Multiple choice questions and 2 coding questions

Round 3 - Technical 

(3 Questions)

  • Q1. Collection in java works
  • Ans. 

    Collection in Java is a framework that provides interfaces and classes to store and manipulate groups of objects.

    • Collections can be used to store objects of any type.

    • Some common collection types include ArrayList, LinkedList, HashSet, and TreeMap.

    • Collections can be sorted, searched, and filtered using various methods.

    • Iterators can be used to traverse through collections and perform operations on each element.

    • Collection...

  • Answered by AI
  • Q2. Multithreading environment
  • Q3. 2 coding questions and reduce its complexity
Round 4 - One-on-one 

(1 Question)

  • Q1. Spring and cloud platform difference
  • Ans. 

    Spring is a framework for building Java applications, while cloud platform provides infrastructure for deploying and scaling applications.

    • Spring provides a set of tools and frameworks for building Java applications, while cloud platform provides infrastructure for deploying and scaling those applications.

    • Spring can be used with any cloud platform, while cloud platform can support applications built with any framework.

    • S...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Geeks for geeks for coding and concepts of java 8 , concepts of multithreading and collection is minimum required

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Morningstar Interview FAQs

How many rounds are there in Morningstar Associate Software Engineer interview?
Morningstar interview process usually has 2 rounds. The most common rounds in the Morningstar interview process are Technical, Aptitude Test and One-on-one Round.
How to prepare for Morningstar Associate Software Engineer 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 Morningstar. The most common topics and skills that interviewers at Morningstar expect are Analytics, Computer science, Linux, Python and SQL.
What are the top questions asked in Morningstar Associate Software Engineer interview?

Some of the top questions asked at the Morningstar Associate Software Engineer interview -

  1. What are joins in ...read more
  2. What is OOP featu...read more
  3. exception in j...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Continental

No Interviews

INTERVIEWS

Titan Company

No Interviews

INTERVIEWS

Stellarix Consultancy Services

No Interviews

INTERVIEWS

IKS Health

No Interviews

INTERVIEWS

GlobalLogic

No Interviews

Tell us how to improve this page.

Morningstar Associate Software Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Morningstar Associate Software Engineer Salary
based on 89 salaries
₹6 L/yr - ₹10.2 L/yr
50% more than the average Associate Software Engineer Salary in India
View more details

Morningstar Associate Software Engineer Reviews and Ratings

based on 9 reviews

4.7/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

4.5

Salary

4.7

Job security

4.6

Company culture

4.5

Promotions

4.8

Work satisfaction

Explore 9 Reviews and Ratings
Data Research Analyst
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Research Associate
646 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Research Analyst
552 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
313 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Research Associate
308 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Morningstar with

Crisil

3.6
Compare

ICRA

3.3
Compare

CareEdge Ratings

3.0
Compare

India Ratings & Research

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent