Upload Button Icon Add office photos

S&P Global

Compare button icon Compare button icon Compare
4.2

based on 2.4k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

S&P Global Senior .NET Developer Interview Questions and Answers for Experienced

Updated 20 Jul 2024

S&P Global Senior .NET Developer Interview Experiences for Experienced

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Event loop in js
  • Ans. 

    Event loop in JavaScript manages asynchronous operations by executing callback functions in a queue.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows non-blocking I/O operations by executing callback functions in a queue.

    • Event loop continuously checks the call stack and the callback queue to determine which function to execute next.

    • setTimeout and setInterval functions are examples o...

  • Answered by AI
  • Q2. React Js questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not go per their job description. Interview can happen on different technologies also. I am .net developer and given interview on Javascript technologies(Nodejs, Reactjs) only. with in job description that primary skills is Net core

Skills evaluated in this interview

Interview questions from similar companies

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 

(2 Questions)

  • Q1. Oops concepts, abstract
  • Q2. Interface, polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much more questions they asked .
Know technical answers
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Oct 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. What is sas, on Prem
  • Ans. 

    SAS on Prem refers to SAS software installed and operated on-premises rather than in the cloud.

    • SAS on Prem stands for SAS software that is deployed and managed on the organization's own servers.

    • It allows organizations to have full control over their data and infrastructure.

    • SAS on Prem is often preferred by organizations with strict data security and compliance requirements.

    • Examples of SAS on Prem solutions include SAS

  • Answered by AI
  • Q2. API automation explain?
  • Ans. 

    API automation involves using software tools to automatically test and interact with APIs.

    • API automation involves using scripts or tools to send requests to an API and validate the responses.

    • It helps in automating the testing of APIs to ensure they function correctly and meet requirements.

    • API automation can be done using tools like Postman, SoapUI, or programming languages like Python with libraries like requests.

  • Answered by AI
  • Q3. Explain about iqbot
  • Ans. 

    IQ Bot is an AI-powered cognitive automation solution that can learn from human behavior to handle unstructured data.

    • IQ Bot uses cognitive technology to extract and process unstructured data like emails, PDFs, and images.

    • It can learn from human corrections to improve accuracy over time.

    • IQ Bot can be integrated with RPA platforms like UiPath to automate end-to-end processes.

    • It is used in industries like finance, healthc...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ask questions related to CSS, Javascript, React, Node and Cloud stuff
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics on Java 8, MySql, Linux
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2023.

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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1.Oops springboot 2.spring restful
  • Q2. Coding question -find first unique
  • Ans. 

    Find the first unique element in an array of integers.

    • Iterate through the array and count the frequency of each element.

    • Return the first element with a frequency of 1.

    • If no unique element is found, return -1.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - ..Be prepared before attending the interview pratice coding ques

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Apt + coding questions, medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. Basics qs on oops and known programming language
Round 3 - Technical 

(1 Question)

  • Q1. In-depth of oops and live coding questions
Round 4 - HR 

(1 Question)

  • Q1. Basics qs like y and what

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are joins, given 2 tables, join them
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column between them.

    • Use JOIN keyword followed by the name of the table to join

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the related column between tables

    • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL OUTER JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

  • Answered by AI
  • Q2. All C# OOPS Concepts, Inheritance, Overriding and Overloading

Interview Preparation Tips

Topics to prepare for Moody's Senior Software Developer interview:
  • MySQL
  • C#.Net
Interview preparation tips for other job seekers - Study basics of C# and SQL very well.

Skills evaluated in this interview

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts, abstract
  • Q2. Interface, polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much more questions they asked .
Know technical answers
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How is GIL and how python handle multi threading
  • Ans. 

    GIL stands for Global Interpreter Lock in Python, which limits execution of multiple threads at once.

    • GIL is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once.

    • Due to GIL, Python threads are not suitable for CPU-bound tasks but are still useful for I/O-bound tasks.

    • To handle multi-threading in Python, one can use multiprocessing module or asynchronous progr...

  • Answered by AI
  • Q2. Explain How React works under the hood.
  • Ans. 

    React uses a virtual DOM to efficiently update the actual DOM based on changes in state or props.

    • React creates a virtual DOM representation of the actual DOM.

    • When state or props change, React compares the virtual DOM with the actual DOM to determine the minimal set of changes needed.

    • React then updates the actual DOM efficiently to reflect the changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep understanding of technology you apply for

Skills evaluated in this interview

S&P Global Interview FAQs

How many rounds are there in S&P Global Senior .NET Developer interview for experienced candidates?
S&P Global interview process for experienced candidates usually has 1 rounds. The most common rounds in the S&P Global interview process for experienced candidates are Technical.
How to prepare for S&P Global Senior .NET Developer interview for experienced candidates?
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 ASP.Net, C#, Object Oriented Programming, Rabbitmq and Unit Testing.
What are the top questions asked in S&P Global Senior .NET Developer interview for experienced candidates?

Some of the top questions asked at the S&P Global Senior .NET Developer interview for experienced candidates -

  1. Event loop in...read more
  2. React Js questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 712 Interviews
Morningstar Interview Questions
4.0
 • 237 Interviews
Mu Sigma Interview Questions
2.7
 • 221 Interviews
FactSet Interview Questions
4.0
 • 202 Interviews
Access Healthcare Interview Questions
3.9
 • 197 Interviews
Straive Interview Questions
3.4
 • 164 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
CorroHealth Interview Questions
3.3
 • 137 Interviews
Nielsen Interview Questions
3.7
 • 112 Interviews
View all
Data Analyst
1.4k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Data Researcher
925 salaries
unlock blur

₹2 L/yr - ₹7.3 L/yr

Senior Software Engineer
664 salaries
unlock blur

₹11 L/yr - ₹40 L/yr

Software Engineer
618 salaries
unlock blur

₹9.8 L/yr - ₹36.5 L/yr

Research Analyst
290 salaries
unlock blur

₹3 L/yr - ₹12.8 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview