Upload Button Icon Add office photos

Filter interviews by

FasTrax Infotech QA Engineer Interview Questions and Answers

Updated 6 Jun 2024

FasTrax Infotech QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Jun 2024

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

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Fully Manual Testing Questions
  • Q2. Scenario based questions
  • Q3. SQL queries like Joins etc
  • Q4. API testing basic questions
Round 2 - One-on-one 

(3 Questions)

  • Q1. Scenario based and tricky questions of manual testing
  • Q2. SQL queries writing during interview
  • Q3. API testing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Manual Testing, Mobile Testing, SQL, API testing.
Whatever you mention in resume expect the question based on that.
Be fluent in english and clear straightforward.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About sdlc and stlc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare good from guru99

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

Interview Questionnaire 

4 Questions

  • Q1. Wait in Selenium. type of waits.
  • Ans. 

    Types of waits in Selenium include implicit, explicit, and fluent waits.

    • Implicit waits wait for a certain amount of time before throwing an exception if an element is not found.

    • Explicit waits wait for a certain condition to be met before proceeding with the next step.

    • Fluent waits wait for a certain condition to be met within a specified time frame.

    • Examples of conditions include element visibility, element clickability,...

  • Answered by AI
  • Q2. Dynamic element how to search
  • Ans. 

    Dynamic elements can be searched using unique attributes like ID, class, name, or XPath.

    • Use ID attribute if it's unique and static

    • Use class attribute if it's unique and dynamic

    • Use name attribute if it's unique and static

    • Use XPath if other attributes are not unique or not available

  • Answered by AI
  • Q3. Jenkins do u know or not
  • Ans. 

    Jenkins is an open-source automation server that helps to automate parts of the software development process.

    • Jenkins is used for continuous integration and continuous delivery

    • It can be used to build, test, and deploy software

    • Jenkins has a large number of plugins available to extend its functionality

    • Examples of plugins include Git, Maven, and JUnit

    • Jenkins can be configured to run on different operating systems and envir

  • Answered by AI
  • Q4. How to fetch data from xls
  • Ans. 

    To fetch data from xls, use a library like Apache POI or OpenPyXL.

    • Use a library like Apache POI or OpenPyXL to read data from xls files

    • Identify the sheet and cell range to read data from

    • Iterate through the rows and columns to extract the data

    • Handle any formatting or data type conversions as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare selenium with java testng and appache poi.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Programming language mentioned in Resume
  • Q2. Interviewer will check confidence
  • Q3. Academic Project

Interview Preparation Tips

Interview preparation tips for other job seekers - what ever we answer we should say in confidence

QA Engineer Interview Questions & Answers

IBM user image Rishik Bhimavarapu

posted on 11 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-
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 

2 coding ques in 1 hr

Round 3 - Technical 

(5 Questions)

  • Q1. Core java and oops
  • Q2. Use of this keyword in java
  • Ans. 

    The 'this' keyword in Java refers to the current instance of the class.

    • Used to refer to instance variables or methods of the current object

    • Can be used to differentiate between instance variables and local variables with the same name

    • Can be passed as an argument to other methods

  • Answered by AI
  • Q3. Difference between final and finally
  • Ans. 

    final is a keyword used in Java to declare constants, while finally is a block of code used in exception handling to ensure a piece of code is always executed.

    • final is used to declare constants in Java, its value cannot be changed once assigned

    • finally is a block of code used in exception handling to ensure a piece of code is always executed, regardless of whether an exception is thrown or not

    • Example: final int MAX_VALU...

  • Answered by AI
  • Q4. Basic principles of oops
  • Ans. 

    Basic principles of OOP include encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Example: A 'Car' class may have properties like 'color' and 'model', and methods like 'st

  • Answered by AI
  • Q5. Method over riding and method overloading

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is test NG annotation, Can you define priority 0
  • Ans. 

    TestNG annotation is used in TestNG framework to provide additional information about test methods or classes.

    • TestNG annotations are used to control the execution flow of test methods.

    • They can be used to set the priority of test methods, define dependencies, configure test groups, etc.

    • Examples of TestNG annotations include @Test, @BeforeMethod, @AfterMethod, @DataProvider, etc.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What pojo ,testNG.xml
  • Ans. 

    POJO stands for Plain Old Java Object, which is a Java class used to represent data. TestNG.xml is an XML file used to configure TestNG tests.

    • POJO is a simple Java class that encapsulates data and provides getter and setter methods.

    • TestNG.xml is used to define test suites, test cases, and test configurations for TestNG framework.

    • POJO and TestNG.xml are commonly used in QA testing to define and manage test data and test

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude and coding question

Round 2 - Technical 

(1 Question)

  • Q1. Types of exception in selenium
  • Ans. 

    Types of exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, StaleElementReferenceException, TimeoutException, and WebDriverException.

    • NoSuchElementException: Thrown when an element could not be found in the DOM.

    • ElementNotVisibleException: Thrown when an element is present in the DOM but not visible.

    • StaleElementReferenceException: Thrown when an element is no longer attached to the DOM.

    • Tim...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Questions related to apptitude, Selenium, TestNG, Java, c++

Round 2 - Technical 

(2 Questions)

  • Q1. On Java Program
  • Q2. On Selenium questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Testing concepts and coding
  • Q2. Automation concepts
Round 2 - HR 

(2 Questions)

  • Q1. Generic HR question
  • Q2. Exp related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a dedicated QA Engineer with 5 years of experience in manual and automated testing.

    • Experienced in creating test plans, test cases, and executing tests

    • Proficient in using testing tools such as Selenium and Jira

    • Strong knowledge of software development lifecycle and Agile methodologies

  • Answered by AI
  • Q2. Find the dynamic xpath
  • Ans. 

    Dynamic xpath is a way to locate elements on a web page that may change frequently.

    • Identify a unique attribute of the element that remains constant

    • Use functions like contains(), starts-with(), or ends-with() to create dynamic xpath

    • Avoid using indexes in xpath as they can change with page structure

  • Answered by AI
  • Q3. Java programs on strings

Skills evaluated in this interview

FasTrax Infotech Interview FAQs

How many rounds are there in FasTrax Infotech QA Engineer interview?
FasTrax Infotech interview process usually has 2 rounds. The most common rounds in the FasTrax Infotech interview process are One-on-one Round.
How to prepare for FasTrax Infotech 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 FasTrax Infotech. The most common topics and skills that interviewers at FasTrax Infotech expect are API Testing, Automation Engineering, Automation Testing, Automation Tools and Bug Tracking Tool.
What are the top questions asked in FasTrax Infotech QA Engineer interview?

Some of the top questions asked at the FasTrax Infotech QA Engineer interview -

  1. Scenario based and tricky questions of manual test...read more
  2. SQL queries writing during interv...read more
  3. SQL queries like Joins ...read more

Tell us how to improve this page.

FasTrax Infotech QA Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
FasTrax Infotech QA Engineer Salary
based on 4 salaries
₹1 L/yr - ₹3.2 L/yr
60% less than the average QA Engineer Salary in India
View more details

FasTrax Infotech QA Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

2.0

Salary

5.0

Job security

5.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accountant
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FasTrax Infotech with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

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