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 SQA Engineer Interview Questions and Answers

Updated 23 Aug 2024

S&P Global SQA Engineer Interview Experiences

1 interview found

SQA Engineer Interview Questions & Answers

user image Piyush Garg

posted on 23 Aug 2024

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Authentication vs Authorization in API, error codes
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what actions they are allowed to perform in an API.

    • Authentication ensures the user is who they claim to be, usually through credentials like username and password.

    • Authorization determines the level of access a user has once authenticated, such as read-only or read-write permissions.

    • Error codes in APIs are used to communicate issues with auth...

  • Answered by AI
  • Q2. API testing questions, HTTP methods
  • Q3. Explain STLC, bug life cycle
  • Ans. 

    STLC is Software Testing Life Cycle which includes various phases like requirement analysis, test planning, test design, test execution, and test closure. Bug life cycle is the process of a bug from identification to resolution.

    • STLC includes phases like requirement analysis, test planning, test design, test execution, and test closure

    • Bug life cycle involves stages like New, Assigned, Open, Fixed, Retest, Reopened, and ...

  • Answered by AI
  • Q4. Introduction, current role
  • Q5. Automation testing questions

Interview Preparation Tips

Topics to prepare for S&P Global SQA Engineer interview:
  • API Testing
  • Automation Testing
Interview preparation tips for other job seekers - HR is not aware about the requirements of job profile. Also the interviewers take the person for granted. My technical interview was scheduled with 2 persons out of which 1 didn't came and no explanation was given for his absence.
Interviewer said they require someone from Automation background only but when I asked I had no experience in that and also my resume does not specify that thing, then why my profile was shortlisted and I was called for the interview, she had no answer for that. Interviewer didn't even looked at my resume before the interview, as it was shared with her from past 2 days. Terrible people working over there who consider them as kings/queens

Skills evaluated in this interview

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Questions related to AWS dynamodb,lambdas,cloudwatch logs,Athena,json filehandling,decorators,classes and others oops concepts ,string manipulation, word frequency problems, dictionary,boto3 scripting

I applied via Company Website and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked python memory management, string manipulations, regex, and about my current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep strong hold on python basics and data structure

Interview Questionnaire 

1 Question

  • Q1. Basic java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Verify your project before joining, since they give different project and skill

I applied via Recruitment Consulltant and was interviewed in Oct 2021. 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 - Technical 

(2 Questions)

  • Q1. Technical questions .
  • Q2. All objects oriented questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - B prepare technically as well as with all programming concepts.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Write code to return the maximum profit by buying and selling stocks using available money

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

I applied via Campus Placement and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Simple coding questions for 1 hour duration

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question about graph data structure
  • Q2. Implementation of hashmap using OOPS
  • Ans. 

    Implementing hashmap using OOPS involves creating a class with key-value pairs and methods for adding, retrieving, and deleting entries.

    • Create a class with private data members for storing key-value pairs

    • Implement methods for adding a key-value pair, retrieving a value by key, and deleting a key-value pair

    • Use hashing function to map keys to indices in an array for efficient retrieval

    • Handle collisions by using technique

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

S&P Global Interview FAQs

How many rounds are there in S&P Global SQA Engineer 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 SQA 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, SQA, Agile, Automation and Test Cases.
What are the top questions asked in S&P Global SQA Engineer interview?

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

  1. Authentication vs Authorization in API, error co...read more
  2. Explain STLC, bug life cy...read more
  3. API testing questions, HTTP meth...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

TCS

No Interviews

INTERVIEWS

S&P Global

No Interviews

INTERVIEWS

GeeksForGeeks

No Interviews

INTERVIEWS

TCS

10 top interview questions

INTERVIEWS

Elektrobit India

No Interviews

INTERVIEWS

rtCamp

No Interviews

INTERVIEWS

ClarityTTS

No Interviews

INTERVIEWS

Antino

10 top interview questions

Tell us how to improve this page.

S&P Global SQA Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 739 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Mu Sigma Interview Questions
2.6
 • 229 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
Access Healthcare Interview Questions
3.9
 • 207 Interviews
Straive Interview Questions
3.4
 • 174 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
CorroHealth Interview Questions
3.3
 • 145 Interviews
Nielsen Interview Questions
3.7
 • 117 Interviews
View all
S&P Global SQA Engineer Salary
based on 134 salaries
₹10.3 L/yr - ₹31 L/yr
119% more than the average SQA Engineer Salary in India
View more details

S&P Global SQA Engineer Reviews and Ratings

based on 18 reviews

3.9/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.6

Salary

4.3

Job security

3.7

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 18 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.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