Upload Button Icon Add office photos

Filter interviews by

Fern Software QA Analyst Interview Questions and Answers

Updated 28 Mar 2023

Fern Software QA Analyst Interview Experiences

1 interview found

QA Analyst Interview Questions & Answers

user image T. P. Sandhiya

posted on 28 Mar 2023

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

I applied via Referral and was interviewed before Mar 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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Tell me about myself
Round 3 - HR 

(1 Question)

  • Q1. Questions related to Software testing and previous project

Interview Preparation Tips

Interview preparation tips for other job seekers - if you are inside the city its a better place.But there is a partiality inside the team

Interview questions from similar companies

QA Analyst Interview Questions & Answers

Accenture user image Firthouse Thasin Taj

posted on 10 Jun 2024

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Why automation required main purpose of automation testing?
  • Ans. 

    Automation is required in testing to increase efficiency, reduce human error, save time, and improve test coverage.

    • Automation helps in executing repetitive test cases quickly and accurately.

    • It allows for running tests on multiple configurations and environments simultaneously.

    • Automation can be used for regression testing to ensure that new code changes do not break existing functionality.

    • It helps in increasing test cov...

  • Answered by AI
  • Q2. Difference between regression testing and retesting?
  • Ans. 

    Regression testing is testing the entire application after changes, while retesting is testing a specific bug fix.

    • Regression testing is done to ensure that new code changes do not affect existing functionality.

    • Retesting is done to verify that a specific bug or issue has been fixed.

    • Regression testing involves testing the entire application, while retesting focuses on a specific area.

    • Examples: After adding a new feature,...

  • Answered by AI
  • Q3. What is locator? Different type of locators
  • Ans. 

    Locator is a way to identify web elements on a webpage. Types include ID, class name, name, tag name, link text, partial link text, xpath, and css selector.

    • ID - unique identifier for an element

    • Class name - class attribute value of an element

    • Name - name attribute value of an element

    • Tag name - HTML tag of an element

    • Link text - text of a link element

    • Partial link text - partial text of a link element

    • XPath - XML path expres...

  • Answered by AI
  • Q4. Difference between absolute-XPATH and relative-XPATH?
  • Ans. 

    Absolute XPath specifies the location of an element from the root of the document, while relative XPath specifies the location of an element relative to another element.

    • Absolute XPath starts with a single forward slash (/) and specifies the complete path from the root element to the desired element.

    • Relative XPath does not start with a forward slash and specifies the path from the current node to the desired element.

    • Abs...

  • Answered by AI
  • Q5. In locator which is fastest one?
  • Ans. 

    CSS selector is the fastest locator.

    • CSS selector is faster than XPath

    • ID and class selectors are faster than tag and attribute selectors

    • Avoid using complex CSS selectors for better performance

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Introduction about your profession
  • Ans. 

    QA Analysts are responsible for testing software applications to ensure they meet quality standards.

    • Performing manual and automated testing

    • Identifying and documenting defects

    • Collaborating with developers and stakeholders

    • Creating test plans and test cases

    • Regression testing to ensure software updates do not break existing functionality

  • Answered by AI
  • Q2. How to take screenshot in selenium
  • Ans. 

    To take a screenshot in Selenium, you can use the getScreenshotAs method provided by the WebDriver interface.

    • Use the getScreenshotAs method provided by the WebDriver interface to capture a screenshot

    • Save the screenshot as a file using the FileUtils class in Selenium

    • Handle exceptions like IOException when saving the screenshot

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How to performa cross browsing testing
  • Ans. 

    Cross browsing testing is performed to ensure the compatibility of a website or application across different browsers and platforms.

    • Identify the target browsers and platforms to be tested

    • Create a test plan and test cases for each browser and platform

    • Execute the test cases on different browsers and platforms

    • Verify the functionality, layout, and performance of the website or application

    • Report and track any issues or inco...

  • Answered by AI
  • Q2. How to test an APi when you dont have real entity to answer that api
  • Ans. 

    To test an API without a real entity, use mock data or create dummy data for testing purposes.

    • Create mock data that simulates the expected behavior of the real entity

    • Use tools like Postman or cURL to send requests to the API using the mock data

    • Verify that the API responds correctly to the requests and returns the expected results

    • Test different scenarios and edge cases to ensure the API handles them properly

    • Monitor the ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
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 - One-on-one 

(2 Questions)

  • Q1. Tell me about your project
  • Q2. What pip framework in python
  • Ans. 

    The pip framework in Python is a package management system used to install and manage software packages written in Python.

    • Pip is the standard package manager for Python.

    • It allows you to easily install, upgrade, and remove Python packages.

    • You can use pip to install packages from the Python Package Index (PyPI) or from local directories.

    • Examples: 'pip install requests', 'pip uninstall numpy'

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Test cases for coffee vending machine
  • Ans. 

    Test cases for coffee vending machine

    • Verify that the machine dispenses the correct type of coffee selected

    • Test if the machine accepts different payment methods (cash, card, etc.)

    • Check if the machine displays the correct prices for each type of coffee

    • Ensure that the machine dispenses the correct amount of sugar and cream as per user selection

    • Test if the machine provides a receipt after each transaction

  • Answered by AI
  • Q2. Can we have more than one main functions in a Java class
  • Ans. 

    No, a Java class can only have one main function.

    • A Java class can have only one main function, which serves as the entry point of the program.

    • Having more than one main function in a Java class will result in a compilation error.

    • Each Java application can have multiple classes, but only one class can contain the main function.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

You get questions from aptitude ,reasoning and English

Round 2 - Coding Test 

You have to write two code

Round 3 - Technical 

(1 Question)

  • Q1. They will ask about yours skillset whatever mentioned in the resume
Round 4 - HR 

(1 Question)

  • Q1. Normal qus only have
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about myself, education, work experience.
Round 3 - Technical 

(1 Question)

  • Q1. My technical skills questions
Round 4 - HR 

(1 Question)

  • Q1. CTC was discussed
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2022. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Self introduction about candidate
Round 3 - Technical 

(1 Question)

  • Q1. Questions related to Testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly get yourself prepared well for the interview and answer the questions with a pleasant and peaceful mind

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction round was done
  • Q2. Previous experience was done

Interview Preparation Tips

Interview preparation tips for other job seekers - I was screen bye ayush sir and he was good and v polite

Fern Software Interview FAQs

How many rounds are there in Fern Software QA Analyst interview?
Fern Software interview process usually has 3 rounds. The most common rounds in the Fern Software interview process are Resume Shortlist, One-on-one Round and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Fern Software interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

QA Analyst Interview Questions from Similar Companies

TCS QA Analyst Interview Questions
3.7
 • 7 Interviews
View all
Software Developer
16 salaries
unlock blur

₹2 L/yr - ₹5.1 L/yr

Salesforce Developer
11 salaries
unlock blur

₹3 L/yr - ₹4.2 L/yr

Software Analyst
7 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Senior Software Analyst
7 salaries
unlock blur

₹4.4 L/yr - ₹7.2 L/yr

Business Analyst
5 salaries
unlock blur

₹3 L/yr - ₹3.1 L/yr

Explore more salaries
Compare Fern Software with

Temenos

3.3
Compare

Nucleus Software Exports

3.5
Compare

Intellect Design Arena

4.1
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview