Upload Button Icon Add office photos

Filter interviews by

Moody's Analytics Senior Software Engineer Interview Questions and Answers

Updated 28 Feb 2024

Moody's Analytics Senior Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Typical questions about your experience, technical background and working knowledge relevant to their technical stack.
  • Q2. Tell me about your experience in network security.
  • Q3. Tell me about your experience in Java and Springboot.

Interview Preparation Tips

Interview preparation tips for other job seekers - There was no formal technical assesment but the technical architect will ask about experience, logic based and system based questions.

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 simple coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Merge sort with list
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively divides the input array into smaller subarrays, sorts them, and then merges them back together.

    • Divide the input list into two halves

    • Recursively apply merge sort to each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Similar to coin exchange DP
  • Q3. SQL query medium level

Interview Preparation Tips

Topics to prepare for Nielsen Senior Software Engineer interview:
  • DSA
  • Design Patterns
Interview preparation tips for other job seekers - I would suggest not to take interview or join this company . They already have some people who they want to take and they just take some rounds of you and even if it goes extremely good they wont contact you back . Work here is also not good they tell as developer and will make you do devops writing yml files . This is what I heard from people inside . Even if you get this offer don't consider as first choice . This is my advice to people who are looking to apply here

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

First round was on Hacker Earth

Round 2 - Technical 

(1 Question)

  • Q1. Technical round was on Spring Data Jpa, Pagination, SOLID principles

Interview Preparation Tips

Interview preparation tips for other job seekers - I had given the interview for Senior Software Engineer at Indegene on May 2024. I cleared the round as well. Mr. Pradeep Kumar was the POC for my recruitment. He confirmed that he's going to schedule the HR the next day after clearing the technical round. Upon calling him the very next day he started ghosting me, ignoring my phone calls, messages and emails. After one month he called me and said "sorry at that time the project went on hold, so we have other new opening are you interested to join". I said yes and had salary discussion as well. He said that I'll be getting the offer letter the very next day. So, I contacted him again the next day, he started ghosting again then on WhatsApp he told that my offer letter is on the final stage of approval and I'll get it by tomorrow. Next day I didn't received anything I tried calling he started ghosting again. So please be aware of this type of company. Its a total waste of time. The management is totally un-professional.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Round one was an online coding test where there were 5 sections :

1 - dsa - medium

2 - Java - Easy

3 - OOP - Easy

4 - Git - Easy

Round 2 - One-on-one 

(5 Questions)

  • Q1. 1 - where is bean annotation used in springboot ?... In class or method
  • Ans. 

    Bean annotation is used in Spring Boot on class or method to indicate that a method produces a bean to be managed by the Spring container.

    • Bean annotation is used on methods within a class to indicate that the method produces a bean to be managed by the Spring container.

    • It can also be used at the class level to indicate that the class itself is a Spring bean.

    • For example, @Bean annotation can be used on a method that cre...

  • Answered by AI
  • Q2. Which access modifier to restrict interface method access to only derived or implemented classes
  • Ans. 

    Protected access modifier restricts interface method access to only derived or implemented classes.

    • Use 'protected' access modifier to restrict access to only derived or implemented classes

    • Protected members are accessible within the same package or by subclasses

    • Example: 'protected void methodName() {}' in an interface

  • Answered by AI
  • Q3. How does one services interact with other in microservice
  • Ans. 

    Microservices interact with each other through APIs, messaging, or events.

    • Microservices communicate with each other through APIs, which can be synchronous or asynchronous.

    • Messaging systems like RabbitMQ or Kafka can be used for communication between microservices.

    • Events can be used for loosely coupled communication between microservices.

    • Service discovery mechanisms like Eureka or Consul help microservices locate and co...

  • Answered by AI
  • Q4. In an integer array where element represent stock price and index represent days how to detect the best day to buy and best day to sell in O(N)
  • Ans. 

    To detect the best day to buy and sell stock in an integer array representing stock prices and days in O(N).

    • Iterate through the array and keep track of the minimum price seen so far.

    • Calculate the profit by subtracting the current price from the minimum price.

    • Update the maximum profit and best buy/sell days accordingly.

    • Return the best buy and sell days to maximize profit.

  • Answered by AI
  • Q5. In an integer array find the next greatest number for all and display in O(N)
  • Ans. 

    Find the next greatest number for each integer in an array in O(N) time complexity.

    • Iterate through the array from right to left

    • Use a stack to keep track of potential next greatest numbers

    • Pop elements from the stack that are less than the current element and update their next greatest number to the current element

    • Push the current element onto the stack

    • Repeat until all elements have a next greatest number

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, JavaScript, and SQL.

    • 5 years of experience in software development

    • Proficient in Java, JavaScript, and SQL

    • Developed web applications for various clients

    • Strong problem-solving skills

    • Excellent team player

  • Answered by AI
  • Q2. What is your roles and responsibilities
  • Ans. 

    As a Software Developer, my roles and responsibilities include designing, developing, testing, and maintaining software applications.

    • Designing and developing software applications based on client requirements

    • Testing and debugging code to ensure functionality and performance

    • Collaborating with team members to brainstorm and implement new features

    • Maintaining and updating existing software applications

    • Staying up-to-date wi

  • Answered by AI
  • Q3. Explain about bug lifecycle
  • Ans. 

    Bug lifecycle involves identification, reporting, fixing, retesting, and closing of software bugs.

    • Identification: Bug is identified by testers or users through testing or real-world usage.

    • Reporting: Bug is reported to developers with detailed information like steps to reproduce.

    • Fixing: Developers analyze and fix the bug in the code.

    • Retesting: Testers verify the fix to ensure the bug is resolved.

    • Closing: Bug is closed o

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Case study with the topic provided
  • Q2. Questions on the resume

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Can you provide a detailed explanation of object-oriented programming concepts?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Js questions and 2 coding questions
  • Q2. Questions on angular, html and css

Software Engineer Interview Questions & Answers

Kantar user image K VENKATA SAI DEEPAK

posted on 14 May 2024

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

I was interviewed in Apr 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basics of sql and some coding questions
  • Q2. Data structures
Round 2 - Technical 

(1 Question)

  • Q1. Putin arrays strings
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Some Qs were quite difficult had graphs tables etc

Moody's Analytics Interview FAQs

How many rounds are there in Moody's Analytics Senior Software Engineer interview?
Moody's Analytics interview process usually has 1 rounds. The most common rounds in the Moody's Analytics interview process are One-on-one Round.
How to prepare for Moody's Analytics Senior 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 Moody's Analytics. The most common topics and skills that interviewers at Moody's Analytics expect are Java, .Net, Angularjs, Python and C#.

Tell us how to improve this page.

Moody's Analytics Senior Software Engineer Salary
based on 23 salaries
₹12 L/yr - ₹42 L/yr
75% more than the average Senior Software Engineer Salary in India
View more details

Moody's Analytics Senior Software Engineer Reviews and Ratings

based on 2 reviews

4.6/5

Rating in categories

4.1

Skill development

4.6

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.6

Company culture

3.6

Promotions/Appraisal

4.1

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Associate
182 salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Delivery Lead
149 salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Associate
147 salaries
unlock blur

₹4 L/yr - ₹11.2 L/yr

Delivery Manager
72 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Assistant Director
69 salaries
unlock blur

₹14.5 L/yr - ₹41 L/yr

Explore more salaries
Compare Moody's Analytics with

S&P Global

4.2
Compare

Fitch Ratings

4.9
Compare

Dun & Bradstreet

3.3
Compare

Morningstar

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview