Upload Button Icon Add office photos

QBurst Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

QBurst Technologies Senior QA Engineer Interview Questions, Process, and Tips

Updated 10 Jun 2023

Top QBurst Technologies Senior QA Engineer Interview Questions and Answers

QBurst Technologies Senior QA Engineer Interview Experiences

3 interviews found

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between List and Set
  • Ans. 

    List is an ordered collection of elements while Set is an unordered collection of unique elements.

    • List allows duplicate elements while Set does not.

    • List maintains the order of elements while Set does not.

    • List is implemented using an array while Set is implemented using a hash table.

    • Example: List - [1, 2, 3, 3, 4], Set - {1, 2, 3, 4}

  • Answered by AI
  • Q2. How do you get data from a file in selenium
  • Ans. 

    To get data from a file in Selenium, we can use Java IO classes and read the file content.

    • Create a File object with the file path

    • Create a FileReader object with the File object

    • Create a BufferedReader object with the FileReader object

    • Use the BufferedReader object to read the file content line by line

    • Close the BufferedReader object

  • Answered by AI
  • Q3. What are alpha testing and beta testing?
  • Ans. 

    Alpha testing and beta testing are two types of software testing performed before releasing the software to the public.

    • Alpha testing is performed by the developers in-house, before releasing the software to external testers.

    • Beta testing is performed by external testers, after the software has been released to a limited audience.

    • Alpha testing is focused on identifying bugs and issues in the software, while beta testing ...

  • Answered by AI
  • Q4. How can you exclude a tets case from execution?
  • Ans. 

    A test case can be excluded from execution by using tags or annotations.

    • Add a tag or annotation to the test case with a specific value

    • Configure the test runner to exclude test cases with that tag or annotation

    • Use conditional statements in the test code to skip the test case based on certain conditions

  • Answered by AI
  • Q5. How can you execute a test case number of times?
  • Ans. 

    Test case can be executed multiple times using automation tools or by manually running the test case.

    • Use automation tools like Selenium or Appium to execute test cases multiple times.

    • Create a loop in the automation script to execute the test case multiple times.

    • Manually execute the test case multiple times by following the steps in the test case document.

    • Use data-driven testing to execute the same test case with differ...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic questions like total work experience, As a working mother, how can you manage work and life?

Interview Preparation Tips

Topics to prepare for QBurst Technologies Senior QA Engineer interview:
  • Testng
  • Selenium
  • Java
  • Agile Methodology
Interview preparation tips for other job seekers - For quality assurance automation have a detailed knowledge of the testing tools and language you are working.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Roles & Responsibilities 2. Automation Framework 3. Write an Program to find duplicate in an array and Remove the duplicate? 4. SQL Join Queries 5. Boundary & Equivalence Values 6. Agile Ceremonies 7...
Round 2 - Behavioral 

(1 Question)

  • Q1. 1. Introduce yourself 2. Why Qburst? 3. Why leaving your Current Company?
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for QBurst Technologies Senior QA Engineer interview:
  • Selenium
  • Java
  • Agile
  • SQL
Interview preparation tips for other job seekers - Prepare well according to your Resume

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

I applied via Approached by Company and was interviewed before Jun 2022. 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 

(1 Question)

  • Q1. Manual testing questions like what is sanity, smoke etc Automation testing questions about TestNG framework, selenium Asked to write code for 3 basic programs
Round 3 - Behavioral 

(1 Question)

  • Q1. Behavioral questions general

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 Questionnaire 

2 Questions

  • Q1. Basisc of cove java
  • Ans. 

    Core Java is the fundamental part of Java programming language.

    • Core Java includes basic concepts like data types, control structures, and object-oriented programming.

    • It is used to develop standalone applications, web applications, and mobile applications.

    • Examples of Core Java libraries include java.lang, java.util, and java.io.

    • Core Java is a prerequisite for learning advanced Java concepts like Spring and Hibernate.

  • Answered by AI
  • Q2. Framework designing and selenium questions

Skills evaluated in this interview

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
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Work on jva concepts

Round 2 - Coding Test 

Array and link list questions.

Round 3 - Technical 

(1 Question)

  • Q1. Rest Api and rest assured
Round 4 - HR 

(1 Question)

  • Q1. Negotiations regarding the post
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Java program string and array related
  • Q2. Core java questions
Round 2 - Technical 

(2 Questions)

  • Q1. Java program for array
  • Ans. 

    Java program to create and manipulate an array of strings

    • Declare and initialize an array of strings: String[] arrayName = new String[] {"string1", "string2", "string3"};

    • Access elements in the array using index: String element = arrayName[index];

    • Modify elements in the array: arrayName[index] = "newString";

    • Iterate through the array using a loop: for(String element : arrayName) { // do something with element }

  • Answered by AI
  • Q2. Java program for string
  • Ans. 

    Java program to manipulate an array of strings

    • Use a for loop to iterate through the array of strings

    • Use string methods like substring, indexOf, or replace to manipulate the strings

    • Use StringBuilder for efficient string manipulation

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About your expertise.
  • Q2. Team management.
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
Contribute & help others!
anonymous
You can choose to be anonymous

QBurst Technologies Interview FAQs

How many rounds are there in QBurst Technologies Senior QA Engineer interview?
QBurst Technologies interview process usually has 2-3 rounds. The most common rounds in the QBurst Technologies interview process are Technical, Behavioral and HR.
What are the top questions asked in QBurst Technologies Senior QA Engineer interview?

Some of the top questions asked at the QBurst Technologies Senior QA Engineer interview -

  1. How do you get data from a file in selen...read more
  2. How can you execute a test case number of tim...read more
  3. How can you exclude a tets case from executi...read more

Recently Viewed

INTERVIEWS

Dassault Systemes

No Interviews

INTERVIEWS

PreludeSys

No Interviews

INTERVIEWS

Infosys BPM

No Interviews

LIST OF COMPANIES

Infosys BPM

Locations

SALARIES

EbixCash Limited

INTERVIEWS

Infosys BPM

No Interviews

INTERVIEWS

AirAsia

No Interviews

DESIGNATION

INTERVIEWS

Infosys BPM

300 top interview questions

SALARIES

Hinge Health

Tell us how to improve this page.

QBurst Technologies Senior QA Engineer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Fast track your campus placements

View all
QBurst Technologies Senior QA Engineer Salary
based on 106 salaries
₹5.5 L/yr - ₹13.8 L/yr
18% less than the average Senior QA Engineer Salary in India
View more details

QBurst Technologies Senior QA Engineer Reviews and Ratings

based on 10 reviews

4.9/5

Rating in categories

4.8

Skill development

4.8

Work-life balance

4.8

Salary

4.6

Job security

4.9

Company culture

4.8

Promotions

4.6

Work satisfaction

Explore 10 Reviews and Ratings
Senior Engineer
417 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
334 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
286 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
260 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
149 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare QBurst Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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