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

Clear (1)

S&P Global Intern Interview Questions and Answers

Updated 29 Jul 2024

S&P Global Intern Interview Experiences

3 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 29 Jul 2024

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

(1 Question)

  • Q1. OOPs concepts, SQL queries, Puzzles

Intern Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

The questions were related to finance questions and some are from exel related . So read the question carefully and attempt your best.

Round 3 - One-on-one 

(1 Question)

  • Q1. The interview was basic fiance questions

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 8 Feb 2022

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 

All about maths

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell about yourself in detail

Interview Preparation Tips

Interview preparation tips for other job seekers - clear with confidence if u behave u know everything u can make it otherwise it would be difficult to crack that process with low self esteem

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Datastructures, ALogorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Find the number of islands

Intern Interview Questions & Answers

FactSet user image Jai Prakash

posted on 13 Aug 2024

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

2 dsa question one medium and hard

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts, sql
  • Q2. System design, and 2 dsa
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in 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 - Aptitude Test 

Basic math and C questions. Algebra, algorithms, data structures, syntax,

Round 3 - HR 

(2 Questions)

  • Q1. Explain your college projects
  • Q2. Why do you want to join mu sigma
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

THE TEST DURATION IS ABOUT 30 MIN 30 QUESTIONS.QUESTIONS WERE FROM C++,PROBABILITY ETC,,

Round 2 - Technical 

(2 Questions)

  • Q1. ASKED ABOUT DBMS AND OOPS CONCEPT
  • Q2. DIFFERENCE BETWEEN FOREIGN KEY AND PRIMARY KEY
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key establishes a relationship between two tables.

    • Primary key is unique and cannot have null values

    • Foreign key references the primary key of another table

    • Primary key can be only one per table, while foreign key can be multiple

    • Example: Primary key in 'Students' table could be 'student_id', while foreign key in 'Courses' table could be 'student_id' refere

  • Answered by AI

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

S&P Global Interview FAQs

How many rounds are there in S&P Global Intern interview?
S&P Global interview process usually has 2-3 rounds. The most common rounds in the S&P Global interview process are Resume Shortlist, Aptitude Test and One-on-one Round.
How to prepare for S&P Global Intern 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 Internship, Analytical, Analytics, Auditing and Automation.
What are the top questions asked in S&P Global Intern interview?

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

  1. The interview was basic fiance questi...read more
  2. OOPs concepts, SQL queries, Puzz...read more

Recently Viewed

SALARIES

10times

REVIEWS

Techolution

No Reviews

SALARIES

Bluepi Consulting

SALARIES

DXC Technology

INTERVIEWS

Setu

No Interviews

LIST OF COMPANIES

Bluepi Consulting

Overview

REVIEWS

DXC Technology

No Reviews

JOBS

Bluepi Consulting

No Jobs

LIST OF COMPANIES

10times

Locations

SALARIES

Bluepi Consulting

Tell us how to improve this page.

S&P Global Intern Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Intern Interview Questions from Similar Companies

FactSet Intern Interview Questions
3.9
 • 2 Interviews
Nielsen Intern Interview Questions
3.7
 • 2 Interviews
View all
S&P Global Intern Salary
based on 9 salaries
₹2 L/yr - ₹3.5 L/yr
29% less than the average Intern Salary in India
View more details

S&P Global Intern Reviews and Ratings

based on 7 reviews

4.8/5

Rating in categories

4.8

Skill development

4.9

Work-life balance

4.3

Salary

4.8

Job security

4.8

Company culture

4.9

Promotions

4.8

Work satisfaction

Explore 7 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.0
Compare

Thomson Reuters

4.1
Compare

Bloomberg

3.4
Compare

FactSet

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