Upload Button Icon Add office photos

Filter interviews by

Clear (1)

S&P Global Senior Software Engineer Interview Questions and Answers

Updated 16 Sep 2024

S&P Global Senior Software Engineer Interview Experiences

4 interviews found

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

(2 Questions)

  • Q1. Moderate questions
  • Q2. Asynchronous coding, async, mvc, sql, missing number program
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Sql query on joins Given two tables and create output result . It was self join
  • Q2. Oops polymorphism questions Microservices Design pattern Factory pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops and sql in detail

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write progrem to check balenced brackets in a given string
  • Ans. 

    Program to check balanced brackets in a given string

    • Use a stack to keep track of opening brackets

    • Iterate through the string and push opening brackets onto the stack

    • When a closing bracket is encountered, pop from the stack and check if it matches the corresponding opening bracket

    • If stack is empty at the end and all brackets are matched, the string is balanced

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basics and some algorithms

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain your previous projects
  • Q2. Scenario based question

S&P Global interview questions for designations

 Senior Software Engineer 2

 (1)

 Software Engineer

 (7)

 Associate Software Engineer

 (3)

 Software Engineer II

 (1)

 Lead Software Engineer

 (1)

 Senior Software Engineer 1

 (1)

 Software Development Engineer II

 (2)

 Software Quality Assurance Engineer

 (1)

Senior Software Engineer Jobs at S&P Global

View all

Interview questions from similar companies

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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 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 - Technical 

(1 Question)

  • Q1. Monolithic and microservice architecture difference and how will you migrate.
  • Ans. 

    Monolithic architecture is a single large application while microservice architecture is a collection of small, independent services.

    • Monolithic architecture is a single, tightly coupled application where all components are interconnected.

    • Microservice architecture breaks down the application into smaller, loosely coupled services that communicate through APIs.

    • Migrating from monolithic to microservices involves breaking ...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round few technical questions followed by team building and leadership related questions asked.
Round 4 - HR 

(1 Question)

  • Q1. Basic leadership related questions and few questions on why job change etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics good, system design and cloud architecture is important. Question on DS and algo.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between abstract class and interface?
  • Q2. Explain OOP in C#?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Java coding questions asked

Round 2 - One-on-one 

(1 Question)

  • Q1. Overriding rules
Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you
  • Ans. 

    I have a strong technical background, proven track record of delivering high-quality software, and excellent problem-solving skills.

    • Extensive experience in software development with expertise in multiple programming languages such as Java, Python, and C++

    • Proven track record of successfully delivering complex projects on time and within budget

    • Strong problem-solving skills and ability to think creatively to find innovati...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. Pagination in SQL
  • Ans. 

    Pagination in SQL allows for displaying a subset of query results at a time.

    • Use LIMIT and OFFSET clauses in SQL queries to implement pagination.

    • LIMIT specifies the maximum number of rows to return.

    • OFFSET specifies the number of rows to skip before starting to return rows.

  • Answered by AI
  • Q2. OOPS concepts.. SOILD design principles
  • Q3. Thread vs task in multiprocessing.. explain with examples
  • Ans. 

    Threads and tasks are both used in multiprocessing, but have different characteristics and use cases.

    • Threads are lightweight processes within a single process, sharing memory space. They are managed by the operating system.

    • Tasks are units of work that can be executed asynchronously. They are typically managed by a task scheduler.

    • Threads are suitable for parallel processing and improving performance, while tasks are use...

  • Answered by AI
  • Q4. ViewBag vs Tempdata in MVC
  • Ans. 

    ViewBag is used to pass data from controller to view, while TempData is used to pass data between controller actions.

    • ViewBag is a dynamic property that allows you to pass data from controller to view

    • TempData is a dictionary object that allows you to pass data between controller actions

    • ViewBag is not type-safe and requires typecasting, while TempData is type-safe

    • ViewBag data is lost if redirection occurs, while TempData

  • Answered by AI
  • Q5. Abstract vs Interface
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods.

    • Interfaces can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of OOPS concepts, SQL joins

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java concepts like multithreading, collections, trading related topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with Java core concepts
Contribute & help others!
anonymous
You can choose to be anonymous

S&P Global Interview FAQs

How many rounds are there in S&P Global Senior Software Engineer interview?
S&P Global interview process usually has 1 rounds. The most common rounds in the S&P Global interview process are Technical and One-on-one Round.
How to prepare for S&P Global 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 S&P Global. The most common topics and skills that interviewers at S&P Global expect are HTTP, SQL, Javascript, HTML and Agile.
What are the top questions asked in S&P Global Senior Software Engineer interview?

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

  1. write progrem to check balenced brackets in a given str...read more
  2. Sql query on joins Given two tables and create output result . It was self j...read more
  3. Asynchronous coding, async, mvc, sql, missing number prog...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Shapoorji Pallonji Group

No Interviews

INTERVIEWS

S&P Global

No Interviews

INTERVIEWS

S&P Global

No Interviews

INTERVIEWS

Gammon Engineers And Contractors

No Interviews

INTERVIEWS

Amara Raja Infra

No Interviews

INTERVIEWS

ITC Infotech

No Interviews

INTERVIEWS

Survey2Connect

No Interviews

INTERVIEWS

rtCamp

No Interviews

Tell us how to improve this page.

S&P Global Senior Software Engineer Interview Process

based on 5 interviews

1 Interview rounds

  • Technical Round
View more
S&P Global Senior Software Engineer Salary
based on 676 salaries
₹11.5 L/yr - ₹40.5 L/yr
79% more than the average Senior Software Engineer Salary in India
View more details

S&P Global Senior Software Engineer Reviews and Ratings

based on 64 reviews

4.0/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.9

Salary

3.8

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 64 Reviews and Ratings
Senior Software Engineer-Java

Hyderabad / Secunderabad,

Mumbai

4-8 Yrs

Not Disclosed

Sr Software engineer

Noida

8-10 Yrs

₹ 17-40 LPA

Senior Software Engineer-Java

Mumbai,

Hyderabad / Secunderabad

6-8 Yrs

₹ 10.1-35 LPA

Explore more jobs
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