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

Updated 20 Jul 2024

S&P Global Senior .NET Developer Interview Experiences

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
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, JavaScript, and SQL.

    • 5 years of experience in software development

    • Proficient in Java, JavaScript, and SQL

    • Developed web applications for various clients

    • Strong problem-solving skills

    • Excellent team player

  • Answered by AI
  • Q2. What is your roles and responsibilities
  • Ans. 

    As a Software Developer, my roles and responsibilities include designing, developing, testing, and maintaining software applications.

    • Designing and developing software applications based on client requirements

    • Testing and debugging code to ensure functionality and performance

    • Collaborating with team members to brainstorm and implement new features

    • Maintaining and updating existing software applications

    • Staying up-to-date wi

  • Answered by AI
  • Q3. Explain about bug lifecycle
  • Ans. 

    Bug lifecycle involves identification, reporting, fixing, retesting, and closing of software bugs.

    • Identification: Bug is identified by testers or users through testing or real-world usage.

    • Reporting: Bug is reported to developers with detailed information like steps to reproduce.

    • Fixing: Developers analyze and fix the bug in the code.

    • Retesting: Testers verify the fix to ensure the bug is resolved.

    • Closing: Bug is closed o

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Case study with the topic provided
  • Q2. Questions on the resume

Skills evaluated in this interview

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
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. SQL: Find the nth highest salary of employee?
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the nth highest salary of an employee.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to specify the nth highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT n-1, 1

  • Answered by AI
  • Q2. SQL: Types of Joins in SQL?
  • Ans. 

    Types of joins in SQL include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q3. Algorithm: BinarySearch algorithm using Recursion, explanation and implementation.
  • Ans. 

    BinarySearch algorithm using Recursion finds the target element in a sorted array by dividing the array in half at each step.

    • Divide the array in half and compare the target element with the middle element

    • If the target element is smaller, search the left half recursively

    • If the target element is larger, search the right half recursively

    • Repeat until the target element is found or the array is empty

  • Answered by AI
  • Q4. Given a string s and t find that s is a subsequence string in t or not?
  • Ans. 

    Check if string s is a subsequence of string t.

    • Iterate through both strings using two pointers.

    • Compare characters of s and t, moving pointer in t only if characters match.

    • If all characters of s are found in t in order, return true.

    • Example: s = 'abc', t = 'ahbgdc' => true

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

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

I applied via Referral and was interviewed before Mar 2022. There were 3 interview rounds.

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 - Aptitude Test 

Basic coding questions And logical questions

Round 3 - Coding Test 

Simple program for mathematics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basic coding in python for Fibonacci series and inverse or a string and all
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

S&P Global Interview FAQs

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

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

  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
 • 722 Interviews
Morningstar Interview Questions
4.0
 • 240 Interviews
Mu Sigma Interview Questions
2.7
 • 225 Interviews
FactSet Interview Questions
3.9
 • 206 Interviews
Access Healthcare Interview Questions
3.9
 • 198 Interviews
Straive Interview Questions
3.4
 • 166 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
CorroHealth Interview Questions
3.3
 • 141 Interviews
Nielsen Interview Questions
3.7
 • 115 Interviews
View all
Data Analyst
1.4k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Data Researcher
932 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
665 salaries
unlock blur

₹11.5 L/yr - ₹40 L/yr

Software Engineer
622 salaries
unlock blur

₹9.6 L/yr - ₹36.5 L/yr

Associate Director
302 salaries
unlock blur

₹15.9 L/yr - ₹58.4 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