Upload Button Icon Add office photos

Filter interviews by

iSON Xperiences Senior QA Engineer Interview Questions and Answers

Updated 19 May 2024

iSON Xperiences Senior QA Engineer Interview Experiences

1 interview found

Senior QA Engineer Interview Questions & Answers

user image Vignesh Eswaramurthi

posted on 19 May 2024

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

I applied via Approached by Company and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your previous job
Round 2 - Technical 

(2 Questions)

  • Q1. What is regression testing
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • It involves running previously executed test cases to verify that the existing features still work correctly after code changes.

    • Regression testing helps in identifying any defects introduced by new code changes.

    • Automated testing tools are often used to streamline the r...

  • Answered by AI
  • Q2. What is retesting
  • Ans. 

    Retesting is the process of testing a previously failed test case again after the defects have been fixed.

    • Retesting is done to ensure that the reported defects have been fixed correctly.

    • It focuses on the areas where defects were found during initial testing.

    • Retesting is usually performed by the same tester who found the defect.

    • It is a part of regression testing to verify that the fixes did not introduce new defects.

    • Exa...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your salary expectation

Skills evaluated in this interview

Interview questions from similar companies

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 Aug 2022. There were 4 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 - Assignment 

Interview total 3 rounds

Round 3 - Assignment 

Voice recording contains amcat apptitude language skills

Round 4 - Technical 

(1 Question)

  • Q1. Tell me about you self why concentrix

Interview Preparation Tips

Interview preparation tips for other job seekers - Na
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. 1.Actions 2.Alerts 3.diff between string buffer and string builder 4. diff between hash map and hash table 5.program to find index of character in string 6.program to find character occurrences in a string...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Testing basic questions
Round 2 - HR 

(1 Question)

  • Q1. General HR questions
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
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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About your expertise.
  • Q2. Team management.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I appeared for an interview in Oct 2024.

Round 1 - Coding Test 

Interviewer gave a java program and asked output.

I applied via Naukri.com and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me something about your self
  • Q2. What is your salary expectation
Round 2 - Technical 

(2 Questions)

  • Q1. Process related questions
  • Q2. Why do you left your previous company
Round 3 - Client Interview 

(1 Question)

  • Q1. Tell me something about your job details

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and confident while answering questions.

I applied via Naukri.com and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. That place how I am work
  • Q2. What is software engineer
  • Ans. 

    A software engineer is a professional who designs, develops, and maintains software applications.

    • Designs and develops software applications

    • Uses programming languages and tools to write code

    • Tests and debugs software to ensure it functions properly

    • Collaborates with other engineers and stakeholders to ensure software meets requirements

    • Continuously learns and adapts to new technologies and industry trends

  • Answered by AI
  • Q3. What is technical science
  • Ans. 

    Technical science is the application of scientific principles and methods to solve practical problems in technology.

    • It involves the use of scientific knowledge to design, develop, and improve technology.

    • Examples include computer science, electrical engineering, and mechanical engineering.

    • Technical science is interdisciplinary, drawing on knowledge from physics, chemistry, and mathematics.

    • It is essential for innovation ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but I stayed test it lasted for about one hour 10 minutes this interview wanted to test both me knowledge and wanted to test both my knowledge and communication skill most of the question asked Tu Meri related to mine bi touch circular computer science related topics a started a lost of basic related to my projects

iSON Xperiences Interview FAQs

How many rounds are there in iSON Xperiences Senior QA Engineer interview?
iSON Xperiences interview process usually has 3 rounds. The most common rounds in the iSON Xperiences interview process are HR, One-on-one Round and Technical.
What are the top questions asked in iSON Xperiences Senior QA Engineer interview?

Some of the top questions asked at the iSON Xperiences Senior QA Engineer interview -

  1. What is regression test...read more
  2. What is retest...read more

Tell us how to improve this page.

iSON Xperiences Senior QA Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
WNS Interview Questions
3.4
 • 1.1k Interviews
Startek Interview Questions
3.1
 • 481 Interviews
View all

iSON Xperiences Senior QA Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Customer Care Executive
323 salaries
unlock blur

₹0.9 L/yr - ₹5 L/yr

Customer Service Executive
167 salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Team Lead
135 salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Quality Analyst
119 salaries
unlock blur

₹1.4 L/yr - ₹5.2 L/yr

Customer Support Executive
89 salaries
unlock blur

₹1 L/yr - ₹3.8 L/yr

Explore more salaries
Compare iSON Xperiences with

Tech Mahindra

3.5
Compare

Concentrix Corporation

3.7
Compare

LTIMindtree

3.7
Compare

HDB Financial Services

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