Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Daphnis Software Services Team. If you also belong to the team, you can get access from here

Daphnis Software Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Daphnis Software Services QA Engineer Interview Questions and Answers

Updated 5 Mar 2024

Daphnis Software Services QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Mar 2024

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

I appeared for an interview in Sep 2023.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Java selenium automation manual
  • Ans. 

    Java Selenium is a popular tool for automating web applications. Manual testing involves executing test cases manually.

    • Java is a programming language used for writing automation scripts in Selenium.

    • Selenium is a testing framework used for automating web applications.

    • Manual testing involves executing test cases manually to ensure the application functions correctly.

    • Automation testing with Selenium involves writing scrip...

  • Answered by AI
  • Q2. Java selenium automation manual
  • Ans. 

    Java Selenium automation is a popular tool for automating web applications testing.

    • Java is the programming language used for writing automation scripts

    • Selenium is the automation tool used for testing web applications

    • Manual testing involves testing the application manually without automation tools

  • Answered by AI
  • Q3. Selenium Automation manual testing java
  • Q4. Detail base question

Interview Preparation Tips

Interview preparation tips for other job seekers - Qa automation tester manual testing java selenium bdd framework

Interview questions from similar companies

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

I applied via Internshala and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write scenarios on banking application
  • Ans. 

    Scenarios on banking application for QA testing

    • 1. User login with valid credentials

    • 2. User login with invalid credentials

    • 3. Transfer funds between accounts

    • 4. Check account balance

    • 5. Update personal information

  • Answered by AI
  • Q2. Write sql queries
  • Ans. 

    SQL queries for QA Engineer interview

    • Use SELECT statement to retrieve data from database

    • Use WHERE clause to filter data based on specific conditions

    • Use JOIN clause to combine data from multiple tables

    • Use GROUP BY clause to group data based on specific columns

    • Use ORDER BY clause to sort data in ascending or descending order

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the D/B verification and validation in QA?
  • Ans. 

    D/B verification and validation in QA refers to the process of ensuring that data in a database is accurate, complete, and consistent.

    • Verification involves checking if the data in the database matches the expected values or rules.

    • Validation involves ensuring that the data in the database meets the specified requirements and is reliable.

    • Examples include verifying that user information is correctly stored in a database a...

  • Answered by AI
  • Q2. Verification : ensures the product is being built correctly (meet design specifications). Validation : ensures the right product is built (meets user needs and requirements).

Interview Preparation Tips

Interview preparation tips for other job seekers - Network smartly; connections open door.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the main responsibility of a QA Engineer?
  • Ans. 

    The main responsibility of a QA Engineer is to ensure the quality of software products by testing and identifying defects.

    • Creating test plans and test cases

    • Executing test cases and reporting defects

    • Collaborating with developers to resolve issues

    • Automating test cases using tools like Selenium

    • Performing regression testing to ensure software stability

  • Answered by AI
  • Q2. Ensure software quality through testing.
  • Ans. 

    Ensuring software quality through testing involves thorough testing of all functionalities to identify and fix any bugs or issues.

    • Create test cases to cover all functionalities of the software

    • Perform manual and automated testing to identify bugs

    • Regression testing to ensure new changes do not impact existing functionalities

    • Use tools like Selenium, JUnit, or TestNG for automated testing

    • Collaborate with developers to fix

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is JMeter?
  • Ans. 

    JMeter is an open-source tool used for performance testing and load testing of web applications.

    • JMeter allows testers to simulate heavy loads on servers, networks, or objects to test their strength and analyze overall performance.

    • It can be used to measure performance under different load types, such as stress testing, spike testing, and endurance testing.

    • JMeter supports various protocols like HTTP, HTTPS, FTP, JDBC, LD...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Cucumber and Karate?
  • Ans. 

    Cucumber and Karate are testing frameworks used for behavior-driven development (BDD) and API testing, respectively.

    • Cucumber is a BDD tool that allows writing test cases in plain English using Gherkin syntax

    • Karate is an API testing tool that combines API testing, test doubles, performance testing, and UI automation in one framework

    • Both tools support automation testing and help in collaboration between technical and non

  • Answered by AI

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

Daphnis Software Services Interview FAQs

How many rounds are there in Daphnis Software Services QA Engineer interview?
Daphnis Software Services interview process usually has 1 rounds. The most common rounds in the Daphnis Software Services interview process are One-on-one Round.
What are the top questions asked in Daphnis Software Services QA Engineer interview?

Some of the top questions asked at the Daphnis Software Services QA Engineer interview -

  1. Java selenium automation man...read more
  2. Selenium Automation manual testing j...read more
  3. Detail base quest...read more

Tell us how to improve this page.

Daphnis Software Services QA Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Daphnis Software Services QA Engineer Salary
based on 36 salaries
₹3.5 L/yr - ₹7 L/yr
21% less than the average QA Engineer Salary in India
View more details

Daphnis Software Services QA Engineer Reviews and Ratings

based on 8 reviews

4.5/5

Rating in categories

4.3

Skill development

4.2

Work-life balance

4.5

Salary

4.4

Job security

4.6

Company culture

4.5

Promotions

4.4

Work satisfaction

Explore 8 Reviews and Ratings
QA Tester
43 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

QA Engineer
36 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Automation Test Engineer
21 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Qa Automation Testing Engineer
18 salaries
unlock blur

₹2.6 L/yr - ₹9 L/yr

QA Test Engineer
11 salaries
unlock blur

₹5.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Daphnis Software Services with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Diverse Lynx

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