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 Software Development Engineer II Interview Questions, Process, and Tips

Updated 27 Feb 2025

Top S&P Global Software Development Engineer II Interview Questions and Answers

  • Q1. Difference between truncate and delete and when we prefer what operation?
  • Q2. How to build a responsive Web UI page when we have to load large size images from the database like social networking site.
  • Q3. Why we use views, can we create indexes on that?
View all 11 questions

S&P Global Software Development Engineer II Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Covered most of the OOPS and data structure related questions. Also covered Design Patterns
  • Q2. How to build a responsive Web UI page when we have to load large size images from the database like social networking site.
  • Ans. 

    To build a responsive Web UI page with large images, use lazy loading, image optimization, and responsive design techniques.

    • Implement lazy loading to only load images when they are in the viewport.

    • Optimize images for web by compressing them and using modern image formats like WebP.

    • Use responsive design techniques like CSS media queries to adjust image sizes based on screen resolution.

    • Consider implementing a content del...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with all the basics and cover all technologies mentioned in the resume aligned with the project experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2022. There were 5 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 tips
Round 2 - Technical 

(6 Questions)

  • Q1. Difference between clustered, unclustered, and unique index?
  • Ans. 

    Clustered index physically reorders the data in the table, unclustered index does not, unique index enforces uniqueness of values.

    • Clustered index physically reorders the data in the table based on the index key. Only one clustered index per table.

    • Unclustered index does not reorder the data in the table. Can have multiple unclustered indexes per table.

    • Unique index enforces uniqueness of values in the indexed column(s).

  • Answered by AI
  • Q2. What is CDC in sql service?
  • Ans. 

    CDC stands for Change Data Capture in SQL Server.

    • CDC is a feature in SQL Server that captures changes made to data in a table.

    • It allows you to track insert, update, and delete operations on the table.

    • CDC uses a separate table to store the changes made to the tracked table.

    • It is useful for auditing, data replication, and data warehousing purposes.

  • Answered by AI
  • Q3. Why we use views, can we create indexes on that?
  • Ans. 

    Views are virtual tables that simplify complex queries. Indexes can be created on views to improve performance.

    • Views are virtual tables created by querying one or more tables.

    • They simplify complex queries by storing the query logic in the view.

    • Indexes can be created on views to improve query performance.

    • Indexes on views can speed up data retrieval by allowing the database to quickly locate the relevant data.

  • Answered by AI
  • Q4. Difference between temp table, global table and variable table?
  • Ans. 

    Temp table is local to a session, global table is accessible across sessions, variable table is a table variable declared in a function or stored procedure.

    • Temp table is created and dropped automatically when the session ends.

    • Global table is created using a double hash (##) prefix and is accessible across sessions.

    • Variable table is a table variable declared in a function or stored procedure and is only accessible withi

  • Answered by AI
  • Q5. Difference between truncate and delete and when we prefer what operation?
  • Ans. 

    Truncate removes all rows from a table, while delete removes specific rows. Truncate is faster but cannot be rolled back.

    • Truncate is a DDL operation while delete is a DML operation

    • Truncate resets the identity seed of the table, delete does not

    • Truncate is faster as it does not log individual row deletions, delete logs each row deletion

    • Truncate cannot be used on tables referenced by a foreign key constraint, delete can b...

  • Answered by AI
  • Q6. Question related to unpivot operation, department wise salary and duplicates ?
Round 3 - Technical 

(6 Questions)

  • Q1. Merge operation in sql?
  • Ans. 

    Merge operation in SQL is used to combine two sets of data into a single result set.

    • Merge operation is used to insert, update, or delete data in a target table based on the results of a join with a source table.

    • It is commonly used for data synchronization between two tables.

    • Syntax: MERGE INTO target_table USING source_table ON condition WHEN MATCHED THEN UPDATE SET column1 = value1 WHEN NOT MATCHED THEN INSERT (column1

  • Answered by AI
  • Q2. Error Handling way in sql ?
  • Ans. 

    Error handling in SQL involves using try-catch blocks, raising custom errors, and using error functions.

    • Use TRY-CATCH blocks to handle errors gracefully

    • Raise custom errors using RAISEERROR function

    • Use error functions like ERROR_MESSAGE(), ERROR_NUMBER(), ERROR_SEVERITY(), ERROR_STATE(), and ERROR_LINE() to retrieve error information

  • Answered by AI
  • Q3. How to plan ETL for various data sources?
  • Ans. 

    Plan ETL for various data sources by identifying sources, defining data extraction methods, transforming data, and loading into target systems.

    • Identify all data sources and understand their structure and format

    • Define data extraction methods based on the source systems (e.g. APIs, databases, files)

    • Transform data as needed to match the target system's schema and requirements

    • Consider data quality issues and implement data...

  • Answered by AI
  • Q4. What is Bulk insert?
  • Ans. 

    Bulk insert is a process of inserting a large amount of data into a database at once.

    • Efficient way to insert large volumes of data into a database

    • Reduces overhead by minimizing the number of transactions

    • Often used for data migration or loading data from external sources

  • Answered by AI
  • Q5. What is synonyms?
  • Ans. 

    Synonyms are words that have similar meanings.

    • Synonyms are words that can be used interchangeably in a sentence.

    • They help in avoiding repetition and adding variety to the language.

    • Examples include: big and large, happy and joyful, fast and quick.

  • Answered by AI
  • Q6. Questions related to performance improvements and will give scenrios for identify the better performance queries?
Round 4 - One-on-one 

(1 Question)

  • Q1. Will ask about projects and some aptitude type question based on 8 same size ball to identify which have less weight and some glass water scenario questions.
Round 5 - HR 

(1 Question)

  • Q1. Will Negotiate Salary and she will be rude so you will decrease your ask....dont hesitate and ask for good amount that you deserve.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your are ready for the interview and interviewer will be humble and help you understand the questions.

Skills evaluated in this interview

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given 2 large numeric comma seperated strings. You need to calcul ... read more
asked in Zepto
Q2. How many microservices do I own & at what scale they handle t ... read more
asked in Porter
Q3. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
Q4. design a LLD of portfolio management system where you can add any ... read more
asked in S&P Global
Q5. Difference between truncate and delete and when we prefer what op ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. How to invoke the xml file using LibXML?
  • Ans. 

    To invoke an XML file using LibXML, use the xmlReadFile() function.

    • Include the libxml/parser.h header file.

    • Use the xmlReadFile() function to read the XML file and create a xmlDocPtr object.

    • Use the xmlDocGetRootElement() function to get the root element of the XML document.

    • Use the xmlNodeGetContent() function to get the content of a node.

    • Use the xmlFreeDoc() function to free the memory allocated for the xmlDocPtr object...

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. SQL Joins
  • Q2. Swap 2 numbers without 3rd variable
  • Ans. 

    Swapping two numbers without using a third variable

    • Use arithmetic operations to swap the values

    • Add the two numbers and store the result in the first variable

    • Subtract the second number from the result and store it in the second variable

    • Subtract the second variable from the first variable to get the original value of the second variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st Round : Long set of Aptitude questions
2nd Round : Technical Interview
3rd Round : Technical Interview and HR questions

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical and reasoning, Maths

Round 2 - Coding Test 

Basic coding Java & C

Round 3 - Technical 

(2 Questions)

  • Q1. Array and types
  • Q2. Inheritance & OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - For fresher, Prepare basics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good number of questions on permutations, english etc

Round 2 - HR 

(1 Question)

  • Q1. What do you know about this company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

    • Has a strong team of experienced developers

    • Focuses on staying up-to-date with the latest technologies

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

In Mu Sigma APT round is divided into 3 sections Quant, Logical and verbal

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Discuss cons and pro for is education important to become successful in life?

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

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain oops concept
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for creating objects, while objects are instances of classes.

    • Inheritance allows a class to i...

  • Answered by AI
Round 2 - Coding Test 

Coding was good and it was based on bubble sort

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing

S&P Global Interview FAQs

How many rounds are there in S&P Global Software Development Engineer II interview?
S&P Global interview process usually has 3 rounds. The most common rounds in the S&P Global interview process are Technical, One-on-one Round and Resume Shortlist.
What are the top questions asked in S&P Global Software Development Engineer II interview?

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

  1. Difference between truncate and delete and when we prefer what operati...read more
  2. How to build a responsive Web UI page when we have to load large size images fr...read more
  3. Why we use views, can we create indexes on th...read more

Tell us how to improve this page.

S&P Global Software Development Engineer II Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 749 Interviews
Mu Sigma Interview Questions
2.6
 • 233 Interviews
Access Healthcare Interview Questions
3.9
 • 214 Interviews
Straive Interview Questions
3.4
 • 181 Interviews
AGS Health Interview Questions
4.0
 • 162 Interviews
Nielsen Interview Questions
3.7
 • 119 Interviews
Kantar Interview Questions
3.5
 • 98 Interviews
Netscribes Interview Questions
2.8
 • 84 Interviews
View all
S&P Global Software Development Engineer II Salary
based on 47 salaries
₹9 L/yr - ₹30 L/yr
26% less than the average Software Development Engineer II Salary in India
View more details

S&P Global Software Development Engineer II Reviews and Ratings

based on 6 reviews

4.6/5

Rating in categories

4.4

Skill development

4.8

Work-life balance

4.4

Salary

4.6

Job security

5.0

Company culture

3.9

Promotions

4.6

Work satisfaction

Explore 6 Reviews and Ratings
Data Analyst
1.5k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Data Researcher
844 salaries
unlock blur

₹2.5 L/yr - ₹7.7 L/yr

Senior Software Engineer
709 salaries
unlock blur

₹11.5 L/yr - ₹42.7 L/yr

Software Engineer
621 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Lead Data Analyst
312 salaries
unlock blur

₹4.5 L/yr - ₹13.2 L/yr

Explore more salaries
Compare S&P Global with

EXL Service

3.7
Compare

Access Healthcare

3.9
Compare

AGS Health

4.0
Compare

Straive

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