Upload Button Icon Add office photos

Filter interviews by

Qness Software Sr.QA Interview Questions and Answers

Updated 26 Aug 2024

Qness Software Sr.QA Interview Experiences

1 interview found

Sr.QA Interview Questions & Answers

user image Anonymous

posted on 26 Aug 2024

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

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Cypress architecture and commands
  • Q2. Wait without explicit wait in Playwright

Interview questions from similar companies

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

(1 Question)

  • Q1. Database testing related questions
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 Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its basic Apti test with 40 questions in 12 minutes

Round 2 - Technical 

(4 Questions)

  • Q1. OOP Concepts, Exception Handling, type of framewors
  • Q2. Overloading vs Overriding
  • Ans. 

    Overloading is when multiple methods have the same name but different parameters. Overriding is when a subclass provides a different implementation of a method inherited from its superclass.

    • Overloading is used to create multiple methods with the same name but different parameters.

    • Overriding is used to provide a different implementation of a method in a subclass.

    • Overloading is resolved at compile-time based on the metho...

  • Answered by AI
  • Q3. Wrapper Classes
  • Q4. Exception Handling

Interview Preparation Tips

Topics to prepare for Nagarro Sr.QA interview:
  • Selenium
  • OOPS
  • Core Java

Sr.QA Interview Questions & Answers

FIS user image Anonymous

posted on 30 Nov 2022

I was interviewed before Nov 2021.

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 

(2 Questions)

  • Q1. Selenium queries, manual testing questions, SQL queries
  • Q2. SQL queries, joins, basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare as per you resume skills and mainly focus on technical
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Current Project
  • Ans. 

    Currently working on developing automated test scripts for a web application

    • Creating test cases using Selenium WebDriver

    • Implementing test automation frameworks like TestNG

    • Performing regression testing on new features

    • Collaborating with developers to identify and fix bugs

  • Answered by AI
  • Q2. Framework Structure
  • Q3. Code for sorting an array
  • Ans. 

    Code for sorting an array of strings

    • Use built-in sort function in programming language (e.g. sort() in Python)

    • Specify the comparison function to sort strings alphabetically

    • Handle uppercase and lowercase letters properly

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

  • Answered by AI
  • Q4. Create Xpath
  • Ans. 

    Creating Xpath for locating elements in web pages

    • Use unique attributes like id, class, name to create Xpath

    • Avoid using indexes in Xpath as they can be brittle

    • Use functions like contains(), starts-with() for dynamic attributes

    • Consider using axes like ancestor, following-sibling for complex Xpath

  • Answered by AI
  • Q5. Few Appium related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Few scenario based questions
  • Q2. Why GlobalLogic
  • Ans. 

    GlobalLogic offers a diverse range of projects, cutting-edge technologies, and a collaborative work environment.

    • GlobalLogic provides opportunities to work on a variety of projects, allowing for professional growth and skill development.

    • The company is known for its use of cutting-edge technologies, providing exposure to the latest tools and trends in the industry.

    • GlobalLogic fosters a collaborative work environment, enc...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain your project
  • Q2. Write code to Automate sauce demo login functionality
  • Ans. 

    Automate sauce demo login functionality using code

    • Use Selenium WebDriver to automate the login process

    • Identify the username and password fields using locators

    • Enter valid credentials and click on the login button

    • Verify successful login by checking for the presence of a welcome message

  • Answered by AI
  • Q3. Write code to automate getting product prices by their names
  • Ans. 

    Automate getting product prices by their names

    • Create a function that takes in an array of product names as input

    • Use a web scraping tool like Selenium to extract prices from a website

    • Map the product names to their corresponding prices and return the result

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Parallel test in cucumber
  • Ans. 

    Parallel test execution in Cucumber allows running multiple test scenarios simultaneously for faster results.

    • Use tools like TestNG or JUnit to run Cucumber tests in parallel

    • Configure the test runner to specify the number of threads to use for parallel execution

    • Ensure that the tests are independent and do not interfere with each other

    • Consider using a parallel plugin like Cucumber-JVM-Parallel to manage parallel executio

  • Answered by AI
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be handled by clearing cache, cookies, and browsing data regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use incognito mode for private browsing to prevent history from being saved

    • Disable browser history tracking if needed for privacy reasons

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Implicit Wait and Explicit Wait
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be managed by clearing cache, cookies, and browsing history regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use private browsing mode to prevent saving browsing history

    • Disable browser history tracking in browser settings

    • Use browser extensions or plugins to manage and delete browsing history

    • Consider using a VPN for additional privacy and security

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

ITC Infotech user image Mamta Balakrishna

posted on 13 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java program to split alpha-numeric values without using the split method
  • Ans. 

    Split alpha-numeric values in Java without using split method

    • Iterate through each character in the input string

    • Check if the character is a digit or a letter using Character.isDigit() and Character.isLetter() methods

    • Create separate strings for digits and letters and store them in an array

  • Answered by AI
  • Q2. SQL query to add a new column to a table and the column value should have a default value and never be null
  • Ans. 

    Use ALTER TABLE statement to add a new column with a default value and set it to NOT NULL

    • Use ALTER TABLE table_name ADD column_name data_type DEFAULT default_value NOT NULL;

    • Example: ALTER TABLE employees ADD hire_date DATE DEFAULT '2022-01-01' NOT NULL;

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain selenium framework
  • Ans. 

    Selenium framework is a test automation tool used for web applications.

    • Selenium framework allows for automated testing of web applications.

    • It supports multiple programming languages like Java, Python, C#, etc.

    • Selenium WebDriver is a key component for interacting with web elements.

    • Test scripts can be written using Selenium IDE, WebDriver, or Grid.

    • Selenium framework can be integrated with tools like TestNG, JUnit, etc.,

  • Answered by AI

Skills evaluated in this interview

Qness Software Interview FAQs

How many rounds are there in Qness Software Sr.QA interview?
Qness Software interview process usually has 1 rounds. The most common rounds in the Qness Software interview process are Technical.
What are the top questions asked in Qness Software Sr.QA interview?

Some of the top questions asked at the Qness Software Sr.QA interview -

  1. Wait without explicit wait in Playwri...read more
  2. Cypress architecture and comma...read more

Tell us how to improve this page.

Qness Software Sr.QA Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 799 Interviews
Nagarro Interview Questions
4.0
 • 776 Interviews
View all
Associate Software Developer
9 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Associate Financial Analyst
7 salaries
unlock blur

₹3.3 L/yr - ₹5.5 L/yr

Financial Analyst
6 salaries
unlock blur

₹5.5 L/yr - ₹7 L/yr

Software Developer
4 salaries
unlock blur

₹6.8 L/yr - ₹10.2 L/yr

Senior Analyst
4 salaries
unlock blur

₹11.7 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Qness Software with

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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