Upload Button Icon Add office photos

S&P Global

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

S&P Global Associate Engineer Interview Questions and Answers

Updated 23 Sep 2024

S&P Global Associate Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is oops and define the parameter for basic oops concepts?
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • Basic OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation refers to the bundling of data with the methods that operate on that data.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Polymorphism allows objects to be treated as instances of the...

  • Answered by AI
  • Q2. Aptitude question to find the age of child with given data

Interview questions from similar companies

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

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 Company Website and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked python memory management, string manipulations, regex, and about my current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep strong hold on python basics and data structure

I applied via Naukri.com and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions on java8
  • Q2. Questions on multithreading
  • Q3. Questions on exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was a coding round where interviewer asked questions randomly and were asked to optimise our code. Next round was a technical round where everyone needs to be thorough with their technical skills

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

Round 1 - Aptitude Test 

Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer will test your logic building capability with puzzel/coding and technical questions and experience discussion.
Round 3 - One-on-one 

(1 Question)

  • Q1. Its a normal discussion with HR about CTC and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - In TR interviewer are really good. They will help you and give hints. They mostly check if you have problem solving approch.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain how you read messages from google cloud pusub
  • Ans. 

    Reading messages from Google Cloud Pub/Sub involves creating a subscription and pulling messages from the subscription.

    • Create a subscription to a Google Cloud Pub/Sub topic

    • Use the subscription to pull messages from the topic

    • Process the messages received from the subscription

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well about your past project design. you will get questioned about your choices in it

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It was a very simple coding test and the interviewer was focused on understanding the tradeoffs and time complexity analysis rather than the solution itself. And also asked a lot of questions of the hashmap internals, ArrayList implementation which was off track to what the interview was for.

S&P Global Interview FAQs

How many rounds are there in S&P Global Associate Engineer interview?
S&P Global interview process usually has 1 rounds. The most common rounds in the S&P Global interview process are One-on-one Round.
What are the top questions asked in S&P Global Associate Engineer interview?

Some of the top questions asked at the S&P Global Associate Engineer interview -

  1. What is oops and define the parameter for basic oops concep...read more
  2. Aptitude question to find the age of child with given d...read more

Tell us how to improve this page.

S&P Global Associate Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 739 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Mu Sigma Interview Questions
2.6
 • 229 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
Access Healthcare Interview Questions
3.9
 • 207 Interviews
Straive Interview Questions
3.4
 • 174 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
CorroHealth Interview Questions
3.3
 • 145 Interviews
Nielsen Interview Questions
3.7
 • 118 Interviews
View all
S&P Global Associate Engineer Salary
based on 14 salaries
₹7.4 L/yr - ₹26.5 L/yr
237% more than the average Associate Engineer Salary in India
View more details

S&P Global Associate Engineer Reviews and Ratings

based on 3 reviews

4.7/5

Rating in categories

4.4

Skill development

4.9

Work-life balance

4.5

Salary

4.7

Job security

4.9

Company culture

4.4

Promotions

4.5

Work satisfaction

Explore 3 Reviews and Ratings
Data Analyst
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Researcher
844 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
676 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
614 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Data Analyst
313 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare S&P Global with

Moody's

4.1
Compare

Thomson Reuters

4.1
Compare

Bloomberg

3.4
Compare

Dun & Bradstreet

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