Upload Button Icon Add office photos

Filter interviews by

Clear (1)

S&P Global Associate Software Engineer Interview Questions and Answers

Updated 17 Feb 2024

S&P Global Associate Software Engineer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Aptitude Test 

Aptitude questions were pretty easy, most of them were time and distance questions

Round 3 - Coding Test 

It was a dynamic programming question a pretty standard one

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm in an interview, and learn the OOPs concept pretty well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

They gave live question on basic coding in c++

Round 2 - Technical 

(1 Question)

  • Q1. 1 hr Technical round in 3 different tech
Round 3 - HR 

(1 Question)

  • Q1. Semi Hr and Technical mix round.

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

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

Interview Questionnaire 

5 Questions

  • Q1. Core java questions like hashmap, concurrent hashmap,
  • Q2. Spring questions : bean, autowired, dependency injection,
  • Q3. Db questions
  • Q4. Angular questions
  • Q5. Basic coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have a look on core java, spring, data base SQL basic questions, angular if applied for fullstack

Interview questions from similar companies

I applied via Naukri.com and was interviewed in May 2022. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Be prepared with your strength and weakness and just be yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and focus on the basics whatever you have learnt throughout your curriculum.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 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 Resume tips
Round 2 - Aptitude Test 

1 hr test, simple aptitude questions

Round 3 - Coding Test 

Simple coding questions

Round 4 - Technical 

(3 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Iterate through the string from end to start and append each character to a new string

    • Use built-in functions like reverse() in Python or StringBuilder.reverse() in Java

    • Convert the string to an array, reverse the array, and convert it back to a string

  • Answered by AI
  • Q2. Basic Networking questions
  • Q3. Questions on working of jvm

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
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 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
Contribute & help others!
anonymous
You can choose to be anonymous

S&P Global Interview FAQs

How many rounds are there in S&P Global Associate Software Engineer interview?
S&P Global interview process usually has 3 rounds. The most common rounds in the S&P Global interview process are Coding Test, Resume Shortlist and Aptitude Test.
How to prepare for S&P Global 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 S&P Global. The most common topics and skills that interviewers at S&P Global expect are Basic, Computer science, HTTP, Information Technology and Linux.
What are the top questions asked in S&P Global Associate Software Engineer interview?

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

  1. Core java questions like hashmap, concurrent hashma...read more
  2. Spring questions : bean, autowired, dependency injecti...read more
  3. 1 hr Technical round in 3 different t...read more

Recently Viewed

INTERVIEWS

HCLTech

No Interviews

INTERVIEWS

VMware Software

No Interviews

REVIEWS

Aditya Birla Capital

No Reviews

INTERVIEWS

Thomson Reuters

No Interviews

INTERVIEWS

Thomson Reuters

No Interviews

INTERVIEWS

Thomson Reuters

No Interviews

INTERVIEWS

Infor Global Solution

No Interviews

JOBS

Space Matrix Design Consultants

No Jobs

SALARIES

FactSet

INTERVIEWS

Tech Mahindra

No Interviews

Tell us how to improve this page.

S&P Global Associate Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 740 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Mu Sigma Interview Questions
2.6
 • 229 Interviews
Access Healthcare Interview Questions
3.9
 • 209 Interviews
FactSet Interview Questions
3.9
 • 205 Interviews
Straive Interview Questions
3.4
 • 176 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
Nielsen Interview Questions
3.6
 • 117 Interviews
View all
S&P Global Associate Software Engineer Salary
based on 237 salaries
₹6 L/yr - ₹21.6 L/yr
132% more than the average Associate Software Engineer Salary in India
View more details

S&P Global Associate Software Engineer Reviews and Ratings

based on 20 reviews

4.4/5

Rating in categories

3.6

Skill development

4.3

Work-life balance

3.9

Salary

3.7

Job security

4.3

Company culture

3.3

Promotions

3.9

Work satisfaction

Explore 20 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
675 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
615 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Data Analyst
315 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare S&P Global with

Moody's

4.0
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