Upload Button Icon Add office photos

Filter interviews by

FarEye QA Engineer Interview Questions and Answers

Updated 5 Jul 2024

FarEye QA Engineer Interview Experiences

2 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Jul 2024

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

I applied via Walk-in and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude with some math questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is smoke testing
  • Ans. 

    Smoke testing is a preliminary testing to check if the basic functionalities of a software application are working fine.

    • Smoke testing is a quick and shallow testing of the critical functionalities of an application.

    • It is usually performed before more in-depth testing to ensure that the application is stable enough for further testing.

    • The main purpose of smoke testing is to verify that the application is ready for more ...

  • Answered by AI
  • Q2. 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.

    • Regression testing is performed after code changes to verify that the existing functionality still works correctly.

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

    • Automated testing tools are often used for regression testing to save time and effort.

    • R...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it mote technical and a bit of java and coding knowledge

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Apr 2022

I applied via Referral

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about basics javascript and ops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with whatever language you know, mainly the use of objects and operators, learn about ops concept, also prepare sql basic.

QA Engineer Interview Questions Asked at Other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many mi ... read more
Q2. Suppose your manager gave you one task which has to be complete i ... read more
Q3. how to access amazon page directly directly with out using driver ... read more
Q4. 100 apples in 5 consecutive days, each day 6 more than the previo ... read more
Q5. 7)how do you drive your data in automation , how do you validate ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. It was an easy question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. I have been with them twice . The first time I joined I had three rounds of interview - a few scenarios was provided and I had to answer it with testcases once that was round cleared, I had a technical ro...
  • Q2. 1. Basic SQL Concepts. 2. Scenario based questions to check logic for testing. 3. A few basic programs. 4. API related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - If selected definitely go for it, it is a great learning experience to see how startups work and see how teams work from scratch. They find new options, use open source tools, make budgets work and keeps you alert which makes you more disciplined.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 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 - Technical 

(1 Question)

  • Q1. Questions related to SQL, Manual concepts, test cases, Automation
Round 3 - Technical 

(1 Question)

  • Q1. SQL queries, Real-time scenarios, Manual and automation concepts, Java concepts
Round 4 - HR 

(1 Question)

  • Q1. About company and salary

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident while answering, prepare for real-time scenarios.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Advance aptitude questions which took 1 hour to solve

Round 2 - Coding Test 

Advance Coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Confident, and good knowledge in java
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is multithreading in java?
  • Ans. 

    Multithreading in Java allows multiple threads to execute concurrently within a single program.

    • Multithreading helps in improving the performance of applications by utilizing multiple CPUs or CPU cores.

    • Each thread runs independently and shares the same memory space.

    • Java provides built-in support for multithreading through the java.lang.Thread class or implementing the java.lang.Runnable interface.

    • Example: Creating a new...

  • Answered by AI
  • Q2. Detect a cycle in linkedList
  • Ans. 

    Detecting a cycle in a linked list by using two pointers approach.

    • Use two pointers approach - slow pointer moves one step at a time, fast pointer moves two steps at a time.

    • If there is a cycle, the two pointers will eventually meet at some point.

    • Check if the fast pointer reaches the end of the list (null) before meeting the slow pointer to determine if there is a cycle.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Asked question related to selenium, java, API
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java questions based on string and 2d array

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Selenium, java , manual , API related question, Program asked to find out duplicate
  • Q2. Oops concept, syntax of screenshot parameterization
Round 2 - Technical 

(1 Question)

  • Q1. Manager round ask project related question also some technical

FarEye Interview FAQs

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

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

  1. What is smoke test...read more
  2. What is regression test...read more
  3. Asked about basics javascript and ops conce...read more

Tell us how to improve this page.

FarEye QA Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Solution Engineer
109 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Solution Engineer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FarEye with

LogiNext Solutions

1.8
Compare

Shiprocket Private Limited

3.7
Compare

Shadowfax Technologies

3.6
Compare

Delhivery

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