Upload Button Icon Add office photos

Filter interviews by

Exxat QA Engineer Interview Questions and Answers

Updated 22 Sep 2024

Exxat QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Sep 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sorting for array
  • Ans. 

    Sorting an array of strings alphabetically

    • Use built-in sorting functions like sort() in programming languages

    • Consider case sensitivity when sorting

    • Handle special characters and numbers appropriately

    • Example: ['apple', 'banana', 'cherry'] should be sorted as ['apple', 'banana', 'cherry']

  • Answered by AI
  • Q2. Addition of array
  • Ans. 

    Adding elements of an array of strings

    • Iterate through the array and convert each element to a number before adding

    • Use parseInt() function to convert string to number

    • Handle edge cases like empty array or non-numeric strings

    • Example: ['1', '2', '3'] should return 6 after addition

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Manual question
  • Q2. Framework questions and explanation

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Indeed and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Smog Testing
  • Ans. 

    Smog testing is a process to measure the amount of pollutants emitted by vehicles to ensure they meet environmental standards.

    • Smog testing is also known as emissions testing or vehicle inspection.

    • It is typically required by law to ensure vehicles are not emitting excessive pollutants into the air.

    • The testing process usually involves measuring the levels of pollutants such as carbon monoxide, hydrocarbons, and nitrogen ...

  • Answered by AI
  • Q2. What is SDLC lifecycle
  • Ans. 

    SDLC lifecycle is the process of planning, creating, testing, and deploying software.

    • SDLC stands for Software Development Life Cycle

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance

    • Each phase has specific goals and deliverables

    • Examples of SDLC models include Waterfall, Agile, and DevOps

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Given was a case study of lift, need to make test cases regarding that.
Round 3 - HR 

(1 Question)

  • Q1. What is your marital status, family and current job.
  • Ans. 

    Married with two children, currently working as a QA Engineer.

    • Married with two children

    • Currently working as a QA Engineer

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Automation, Manual Testing, Payment Gateway

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. TELL ME ABOUT YOUSELF
  • Ans. 

    I am a dedicated QA Engineer with a passion for ensuring software quality through thorough testing and attention to detail.

    • Experienced in manual and automated testing

    • Proficient in test case creation and execution

    • Skilled in identifying and documenting software defects

    • Strong knowledge of testing methodologies and tools

  • Answered by AI
  • Q2. HOW WAS YOUR DAY
  • Ans. 

    My day was productive and busy, with a lot of testing and bug fixing.

    • Completed regression testing on new feature

    • Identified and fixed several critical bugs

    • Collaborated with developers to resolve issues

    • Attended team meeting to discuss project progress

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Assignment 

Sql question more and related to database

I applied via Approached by Company and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Agilecscrum, team management, test Mgmt, end to end testing, jira, defect flow
Round 2 - One-on-one 

(1 Question)

  • Q1. Agile scrum, validation testing, jira, Team management, test mgmt

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview process, shot n sweet process

Software Engineer Interview Questions & Answers

Medlife user image nerella saikrishna

posted on 9 Jan 2016

Interview Questionnaire 

12 Questions

  • Q1. Insert a node in a Linked List, if a pointer to a node(it's not a head pointer) of Linked List is given.
  • Q2. What is the Time Complexity of Binary Search and it's derivation
  • Ans. 

    Binary Search has a time complexity of O(log n) and is derived from dividing the search space in half at each step.

    • Binary Search is a search algorithm that works on sorted arrays.

    • It starts by comparing the target value to the middle element of the array.

    • If the target value is smaller, the search continues on the lower half of the array.

    • If the target value is larger, the search continues on the upper half of the array.

    • T...

  • Answered by AI
  • Q3. Write code for QuickSort
  • Ans. 

    QuickSort is a sorting algorithm that uses divide and conquer approach.

    • Choose a pivot element from the array

    • Partition the array into two sub-arrays, one with elements less than the pivot and one with elements greater than the pivot

    • Recursively apply the above steps to the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
  • Q4. Write code for Fibonacci Series using Recursion, Iteration and Dynamic Programming
  • Ans. 

    Code for Fibonacci Series using Recursion, Iteration and Dynamic Programming

    • Recursion: Define a function that calls itself with the previous two numbers in the series as arguments

    • Iteration: Use a loop to calculate the series by adding the previous two numbers in each iteration

    • Dynamic Programming: Store the previous two numbers in variables and use them to calculate the next number in the series

  • Answered by AI
  • Q5. How to implement an operation with Stacks which will be similar to Queue
  • Ans. 

    Implementing a Queue using Stacks

    • Use two stacks to implement a queue

    • Push elements onto the first stack

    • When dequeuing, pop all elements from the first stack and push onto the second stack

    • Pop the top element from the second stack to dequeue

    • If the second stack is empty, pop all elements from the first stack and push onto the second stack

  • Answered by AI
  • Q6. Write code for MergeSort
  • Ans. 

    MergeSort is a divide and conquer algorithm that sorts an array of strings.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q7. 2 types of detective ball puzzles
  • Q8. 25 Horses, 5 Tracks, 3 Fastest Puzzle
  • Q9. How the letters of a text are determined(Basically about OCR)
  • Q10. Write code for Insertion Sort and Selection Sort and find their time complexities and also the cases where their usage is efficient
  • Q11. Explain about Counting Sort
  • Ans. 

    Counting Sort is a sorting algorithm that sorts elements by counting the number of occurrences of each unique element.

    • Count the occurrences of each element in the array

    • Calculate the cumulative sum of the counts

    • Place each element in the sorted array based on its count and cumulative sum

    • Time complexity is O(n+k) where n is the number of elements and k is the range of input

    • Example: Sort an array of strings based on their

  • Answered by AI
  • Q12. When we type a part of a word in chrome, how is it able to show all the types of words, which are consisted of that part
  • Ans. 

    Chrome uses an algorithm to predict and suggest words based on user input.

    • Chrome's algorithm uses a combination of user history, bookmarks, and popular searches to predict and suggest words.

    • The algorithm also takes into account the frequency and recency of the user's input.

    • Chrome's suggestion feature is powered by Google's Autocomplete API, which uses machine learning to predict and suggest words.

    • The suggestions are di...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: First Question, at the start I was not able to answer and he gave me an hint(He asked me the insertion in an array). So, I got the idea for the insertion in Linked List and was able to answer it.
Remaining questions, I was able to answer confidently.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I was able to answer all the questions confidently, since I know the answers for them, But the last question was out of my scope and I explained based on my intuition and knowledge.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I have given the answers for 1&2 questions with clear explanation. And the third question is again out of my scope and I explained this also based intuition.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

General Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skill Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skills: Logical Puzzles, Algorithms And DataStructures
College Name: IIT Madras
Motivation: 1. Primary Reason: Passionate about Programming and Problem solving.
2. The profile is software Engineer.
3. You can see your idea, having an impact on the society which is possible with this type of company.
4. And a good package.
Funny Moments: Nothing Really...

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 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 - Coding Test 

There were 3 coding and 1 SQL question.

Round 3 - Technical 

(1 Question)

  • Q1. This was regarding the coding test on your approach and how you came with that answer
Round 4 - Technical 

(1 Question)

  • Q1. Some technical questions about programming were there to know about your understanding with coding
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Create pagination component using an api show the data for the pages
  • Ans. 

    Create a pagination component using an API to display data for different pages.

    • Use API to fetch data for each page

    • Implement pagination logic to display data for each page

    • Allow users to navigate between pages

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Introduce Yourself.
  • Ans. I, Shubham Kumar Kushwaha, live in Lucknow, Uttar Pradesh. My father name is Sanjay Kumar Kushwaha and I complete Graduation form University of Lucknow in 2019.
  • Answered Anonymously
  • Q2. Aapne Isse phle kha job ki hai?
  • Ans. Teaching as a English Teacher of Class 10th in SLG Public School.
  • Answered Anonymously
  • Q3. Aapne teaching ki job kyo chhodi?
  • Q4. Due To Corona. School were closed.
  • Q5. Aapko medicine ki knowledge hai?
  • Ans. I replied that I have knowledge of medicine used in Daily life.
  • Answered Anonymously
  • Q6. What is Cross Cheque?
  • Ans. 

    A cross cheque is a type of cheque that has two parallel lines drawn across its face, indicating that it can only be deposited into the bank account of the payee.

    • A cross cheque is a safer form of payment as it cannot be cashed by anyone other than the intended recipient.

    • The two parallel lines on a cross cheque can be either general or special crosses.

    • A general cross cheque can only be deposited into a bank account, whi...

  • Answered by AI

Exxat Interview FAQs

How many rounds are there in Exxat QA Engineer interview?
Exxat interview process usually has 2 rounds. The most common rounds in the Exxat interview process are One-on-one Round and Technical.
What are the top questions asked in Exxat QA Engineer interview?

Some of the top questions asked at the Exxat QA Engineer interview -

  1. Sorting for ar...read more
  2. Addition of ar...read more
  3. Framework questions and explanat...read more

Tell us how to improve this page.

Exxat QA Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Exxat QA Engineer Salary
based on 7 salaries
₹4 L/yr - ₹14.7 L/yr
49% more than the average QA Engineer Salary in India
View more details

Exxat QA Engineer Reviews and Ratings

based on 2 reviews

3.1/5

Rating in categories

2.6

Skill development

3.1

Work-life balance

2.6

Salary

2.6

Job security

2.6

Company culture

2.0

Promotions

2.6

Work satisfaction

Explore 2 Reviews and Ratings
Customer Success Specialist
120 salaries
unlock blur

₹3.5 L/yr - ₹8.2 L/yr

Production Analyst
53 salaries
unlock blur

₹3.2 L/yr - ₹7.4 L/yr

Business Analyst
27 salaries
unlock blur

₹3.4 L/yr - ₹12 L/yr

Product Manager
25 salaries
unlock blur

₹16 L/yr - ₹43 L/yr

Medical Data Analyst
24 salaries
unlock blur

₹3 L/yr - ₹6.8 L/yr

Explore more salaries
Compare Exxat with

Practo

3.1
Compare

Curofy

4.0
Compare

Lybrate

3.5
Compare

Portea Medical

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