Upload Button Icon Add office photos

Filter interviews by

Carelon Global Solutions Senior QA Engineer Interview Questions and Answers

Updated 19 Dec 2024

Carelon Global Solutions Senior QA Engineer Interview Experiences

6 interviews found

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

I was interviewed before Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. SQL Testing validations Project overview
Round 2 - Technical 

(1 Question)

  • Q1. Similar to round 1 with behaviour questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions about compensation, last working day,ok for shift

Senior QA Engineer Interview Questions & Answers

user image Sindiri Ratna Manideep

posted on 1 Nov 2023

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

I applied via Walk-in and was interviewed before Nov 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. Testing related
Round 3 - Technical 

(1 Question)

  • Q1. Healthcare functionality
Round 4 - HR 

(1 Question)

  • Q1. Last ctc and expected ctc

Senior QA Engineer Interview Questions Asked at Other Companies

asked in MakeMyTrip
Q1. Combination Sum Problem Statement Given an array of distinct posi ... read more
asked in MakeMyTrip
Q2. Next Greater Number Problem Statement Given a string S which repr ... read more
Q3. How do you get data from a file in selenium
Q4. if 2 threads are given and one burns in 30 minutes, how you can c ... read more
Q5. How can you execute a test case number of times?

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Selenium and collections
  • Q2. Java, testng data provider

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident at what you saying and correct your self by asking

Interview Questionnaire 

2 Questions

  • Q1. About Claims and EDi
  • Q2. 837 EDI Files validations

Carelon Global Solutions interview questions for designations

 QA Engineer

 (14)

 Senior QA Analyst

 (1)

 Senior Qa Test Engineer

 (1)

 QA

 (1)

 Senior Software Engineer

 (11)

 Senior Test Engineer

 (2)

 QA Engineer Automation QA.Selenium

 (1)

 Senior Software Engineer Testing

 (1)

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

(1 Question)

  • Q1. Throuhly based on your resume & job profile.
Round 3 - Technical 

(1 Question)

  • Q1. Throuhly based on your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare throuhly on your resume. Go in depth of your technical expertise.

Interview Questionnaire 

1 Question

  • Q1. Technology related and logical reasoning

Interview questions from similar companies

I applied via Monster and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical selenium and architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with technical knowlage
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude questions. Candidate with average knowledge can crack it.

Round 2 - Coding Test 

Two programming questions were asked. Difficulty level was medium.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions related to programming.
Round 4 - HR 

(1 Question)

  • Q1. HR type questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be confident.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hashmap is implemented using an array of linked lists or buckets to handle collisions.

    • Each key is hashed to determine its index in the array.

    • Common operations include put(key, value), get(key), and remove(key).

    • Example: HashMap map = new HashMap<>(); map.put("apple", 5); int value = map.get("app

  • Answered by AI
  • Q2. Difference between getWindowHandles and getWindowHandle
  • Ans. 

    getWindowHandles returns all open window handles, getWindowHandle returns handle of current window

    • getWindowHandles returns a set of all window handles currently open in the browser

    • getWindowHandle returns the handle of the current window being focused on

    • Example: driver.getWindowHandles() vs driver.getWindowHandle()

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPs and selenium concepts

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Match 14 characters before @ , given an url
  • Ans. 

    Extract the 14 characters before @ in a given URL

    • Use string manipulation to extract characters before @ symbol

    • Consider edge cases like no @ symbol or less than 14 characters before @

    • Handle special characters like %20 or %40

  • Answered by AI
  • Q2. Match Atleast one capital, once small case, 1 digit and 1 special character using regex?
  • Ans. 

    Regex pattern to match at least one capital letter, one small case letter, one digit, and one special character.

    • Use the regex pattern: (?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[^A-Za-z0-9])

    • Example: Password@123

  • Answered by AI
  • Q3. Given a string ="This is my interview for QA engineer"; write code to give an output of each word with vowel count?
  • Ans. 

    Code to output each word with vowel count in a given string.

    • Split the string into words using space as delimiter

    • Iterate through each word and count the number of vowels

    • Store the word and its vowel count in an array of strings

  • Answered by AI
  • Q4. Given a 2X2 Matrix, find the maximum diagonal sum?
  • Ans. 

    To find the maximum diagonal sum in a 2X2 Matrix, sum the elements of the main diagonal and the opposite diagonal.

    • Sum the elements of the main diagonal (top left to bottom right) and the opposite diagonal (top right to bottom left).

    • Compare the sums of both diagonals and return the maximum sum.

    • Example: For a 2X2 Matrix [[1, 2], [3, 4]], the main diagonal sum is 1+4=5 and the opposite diagonal sum is 2+3=5. The maximum d

  • Answered by AI
  • Q5. How do you find the selected option text from dropdown in selenium?
  • Ans. 

    To find the selected option text from a dropdown in Selenium, you can use the getFirstSelectedOption() method.

    • Use the Select class to work with dropdown elements in Selenium

    • Use the getFirstSelectedOption() method to get the selected option

    • Retrieve the text of the selected option using getText() method

  • Answered by AI
  • Q6. Given a dropdown contains options with duplicates. Find those duplicates along with its occurrence/frequency?
  • Ans. 

    Find duplicates in a dropdown along with their occurrence/frequency.

    • Iterate through the dropdown options and store each option in a hashmap with its frequency.

    • Identify options with frequency greater than 1 as duplicates.

    • Return the duplicates along with their occurrence/frequency.

  • Answered by AI
  • Q7. How do you resolve merge conflicts in git?
  • Ans. 

    Resolve merge conflicts in git by using git commands and tools.

    • Pull the latest changes from the remote repository

    • Use 'git status' to identify conflicting files

    • Open the conflicting files and manually resolve the conflicts

    • Add the resolved files to the staging area using 'git add'

    • Commit the changes with a merge message using 'git commit'

  • Answered by AI
  • Q8. How to bring specific commit changes to your branch?
  • Ans. 

    Use git cherry-pick command to bring specific commit changes to your branch.

    • Identify the commit hash of the specific changes you want to bring to your branch.

    • Checkout to the branch where you want to apply the changes.

    • Use 'git cherry-pick <commit-hash>' command to apply the specific commit changes to your branch.

  • Answered by AI
  • Q9. How to switch to frame and come out of it in selenium?
  • Ans. 

    To switch to a frame in Selenium, use driver.switchTo().frame() method. To come out of a frame, use driver.switchTo().defaultContent() method.

    • Use driver.switchTo().frame() method to switch to a frame

    • Use driver.switchTo().defaultContent() method to come out of a frame

    • Example: driver.switchTo().frame("frameName");

    • Example: driver.switchTo().defaultContent();

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing any activity(remove/add/update resume, change skills etc..) in naukri/linkedin so that i catches recruiters attention

Carelon Global Solutions Interview FAQs

How many rounds are there in Carelon Global Solutions Senior QA Engineer interview?
Carelon Global Solutions interview process usually has 3-4 rounds. The most common rounds in the Carelon Global Solutions interview process are Technical, Resume Shortlist and HR.
How to prepare for Carelon Global Solutions Senior QA 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 Carelon Global Solutions. The most common topics and skills that interviewers at Carelon Global Solutions expect are Manual Testing, Automation Testing, Operations, SAN and Test Cases.
What are the top questions asked in Carelon Global Solutions Senior QA Engineer interview?

Some of the top questions asked at the Carelon Global Solutions Senior QA Engineer interview -

  1. Healthcare functional...read more
  2. Similar to round 1 with behaviour questi...read more
  3. Technology related and logical reason...read more

Tell us how to improve this page.

Carelon Global Solutions Senior QA Engineer Interview Process

based on 2 interviews

1 Interview rounds

  • Technical Round
View more
Carelon Global Solutions Senior QA Engineer Salary
based on 704 salaries
₹7.8 L/yr - ₹22 L/yr
30% more than the average Senior QA Engineer Salary in India
View more details

Carelon Global Solutions Senior QA Engineer Reviews and Ratings

based on 60 reviews

3.7/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

3.8

Salary

3.7

Job security

3.7

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 60 Reviews and Ratings
Senior Software Engineer
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Claims Associate
2.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Carelon Global Solutions with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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