Upload Button Icon Add office photos

Moody's Analytics

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Moody's Analytics Associate Programmer Analyst Interview Questions and Answers

Updated 26 Sep 2024

Moody's Analytics Associate Programmer Analyst 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 before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

SQL questions are asked and English scenario based questions where you should have a bit of banking knowledge.

Round 2 - Technical 

(1 Question)

  • Q1. SQL core is asked along with DBMs and banking questions are asked . We are asked if we have done any projects.
Round 3 - HR 

(1 Question)

  • Q1. They ask about the company and whether we can relocate to Gurgaon and how was college life

Interview Preparation Tips

Topics to prepare for Moody's Analytics Associate Programmer Analyst interview:
  • SQL
  • Banking
  • regultory
Interview preparation tips for other job seekers - Prepare SQL and learn about the company if your into regulatory reporting then it is an easy interview.

Interview questions from similar companies

Interview Preparation Tips

Round: Pre-placement offer
Experience: Each intern was assigned a individual project and mentor.
In the last week of internship there was project presentation and interview.
interview was easy .For me 50% of the questions were about project and some questions about algorithms and DBMS.
More emphasis was given to the quality of work on project.

General Tips: Working in company is complete different from working on course project. learning many new frameworks required for the project was really challenging.
Programming : Tree, Btree, Tries ..
Operating System: Memory Management
Networks: OSI model
DBMS : basics. they dint ask me any. Show case your interest in big data, servers and passion for technology
Skill Tips: Be confident, even if you don't know the exact answer don't give up tell your approaches to interviewer. some times they will also help you. Software Developer some question s you can ask are: what technologies do your company works on. how are freshers will be selected to different teams in the company.
Skills:
College Name: NIT Surathkal

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 Questionnaire 

1 Question

  • Q1. Core Java and aws

I applied via Recruitment Consultant and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Family background
  • Q3. Process related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview always be Prepared & gently, go through the Topics and do some research before the interview for the process you have to select, This is not a rocket science to crack the interview but knowledge will mainly helps you to manage and attend the interview.

Interview Preparation Tips

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

Skills:
College Name: IIT Madras

I appeared for an interview before Jun 2016.

Interview Questionnaire 

6 Questions

  • Q1. What is a bond? What are different types of bonds?
  • Ans. 

    A bond is a debt security that represents a loan made by an investor to a borrower.

    • Bonds are issued by governments, municipalities, and corporations.

    • They are used to raise capital and finance projects.

    • Different types of bonds include government bonds, corporate bonds, municipal bonds, and convertible bonds.

    • Government bonds are issued by national governments and are considered low-risk.

    • Corporate bonds are issued by comp...

  • Answered by AI
  • Q2. Tell us something about your specialisation subjects of BBA
  • Ans. 

    My specialisation subjects in BBA include marketing, finance, human resource management, and operations management.

    • Marketing involves understanding consumer behavior and creating strategies to promote products or services.

    • Finance focuses on managing funds, investments, and financial planning.

    • Human resource management deals with recruiting, training, and managing employees.

    • Operations management involves overseeing produ...

  • Answered by AI
  • Q3. Which is your favourite subject? Describe about it
  • Ans. 

    My favorite subject is history because I enjoy learning about past events and how they have shaped the world we live in today.

    • I find studying different time periods and cultures fascinating

    • I enjoy analyzing historical documents and artifacts

    • I like understanding how historical events have influenced current societies and politics

  • Answered by AI
  • Q4. Are you comfortable in night shifts
  • Ans. 

    Yes, I am comfortable with night shifts as I have prior experience working in night shifts.

    • I have previous experience working night shifts in my previous job.

    • I am able to adjust my sleep schedule to accommodate night shifts.

    • I understand the importance of being alert and focused during night shifts.

    • I am willing to work night shifts if required for the role.

  • Answered by AI
  • Q5. What are your hobbies
  • Ans. 

    My hobbies include hiking, painting, and playing the guitar.

    • Hiking: I enjoy exploring nature trails and challenging myself physically.

    • Painting: I find relaxation and creativity in expressing myself through art.

    • Playing the guitar: I love learning new songs and improving my musical skills.

  • Answered by AI
  • Q6. Where do your parents and siblings work
  • Ans. 

    My parents work in education and my siblings work in finance and healthcare.

    • Parents work in education

    • Siblings work in finance and healthcare

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: In this round there was an online test which had objective and subjective questions regarding the mentioned sections.
Duration: 1 hour
Total Questions: 30

Round: Technical Interview
Experience: The interviewer asked such questions about my graduation subjects and a little about how familiar I am of the work the company deals in.

Round: HR Interview
Experience: This round had the HR person ask general questions about my hobbies and about my family background and also told me about the company, its culture and the salary structure

College Name: Maharaja Surajmal Institute Of Technology

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

Interview Preparation Tips

Round: Test
Experience: Quantitative, verbal, reasoning and basic technical questions.
Duration: 1 hour
Total Questions: 50

Round: Technical + HR Interview
Experience: Questions based on data structures, algorithms, and object oriented programming concepts.
Tested basic knowledge in Finance sector especially related to the company.

College Name: Delhi Technological University, Delhi
Contribute & help others!
anonymous
You can choose to be anonymous

Moody's Analytics Interview FAQs

How many rounds are there in Moody's Analytics Associate Programmer Analyst interview?
Moody's Analytics interview process usually has 3 rounds. The most common rounds in the Moody's Analytics interview process are Aptitude Test, Technical and HR.
How to prepare for Moody's Analytics Associate Programmer Analyst 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 Automation Testing, Javascript, Performance Testing, Bash and Entity Framework.

Recently Viewed

SALARIES

Paltech

164 salaries

LIST OF COMPANIES

Gramophone

Overview

LIST OF COMPANIES

Vnr Seeds

Overview

COMPANY BENEFITS

Gramophone

11 benefits

INTERVIEWS

Plural Technology

No Interviews

INTERVIEWS

Sunlord Apparels Manufacturing

No Interviews

INTERVIEWS

Crossword Bookstores

No Interviews

SALARIES

Arya Collateral Warehousing Services

INTERVIEWS

Shriram Automall

No Interviews

INTERVIEWS

Neethoz Apparels and Design

No Interviews

Tell us how to improve this page.

Moody's Analytics Associate Programmer Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 740 Interviews
S&P Global Interview Questions
4.1
 • 277 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Access Healthcare Interview Questions
3.9
 • 209 Interviews
FactSet Interview Questions
3.9
 • 205 Interviews
Crisil Interview Questions
3.6
 • 188 Interviews
Straive Interview Questions
3.4
 • 177 Interviews
AGS Health Interview Questions
4.0
 • 159 Interviews
Indegene Interview Questions
3.4
 • 151 Interviews
View all
Moody's Analytics Associate Programmer Analyst Salary
based on 20 salaries
₹6 L/yr - ₹12.5 L/yr
64% more than the average Associate Programmer Analyst Salary in India
View more details

Moody's Analytics Associate Programmer Analyst Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
162 salaries
unlock blur

₹4.9 L/yr - ₹18.8 L/yr

Associate
134 salaries
unlock blur

₹4 L/yr - ₹11.2 L/yr

Delivery Lead
115 salaries
unlock blur

₹6.8 L/yr - ₹20.3 L/yr

Assistant Director
70 salaries
unlock blur

₹18 L/yr - ₹46 L/yr

Delivery Manager
59 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Explore more salaries
Compare Moody's Analytics with

S&P Global

4.1
Compare

Fitch Ratings

4.9
Compare

Dun & Bradstreet

3.3
Compare

Morningstar

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