Upload Button Icon Add office photos
Engaged Employer

i

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

Quess Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Quess Softwaretest Engineer Interview Questions and Answers

Updated 16 Jan 2025

Quess Softwaretest Engineer Interview Experiences

2 interviews found

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

Permutations and combinations

Round 2 - Technical 

(1 Question)

  • Q1. Oops concepts , reverse string
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

Don't be nervous to share your answer

Round 2 - Case Study 

Explain about the billing software

Interview Preparation Tips

Topics to prepare for Quess Softwaretest Engineer interview:
  • Billing software
Interview preparation tips for other job seekers - Good command over English

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are springboot annotations are used in your project
  • Ans. 

    Some common Spring Boot annotations used in projects are @SpringBootApplication, @RestController, @Autowired, @GetMapping, @PostMapping, @Service, @Repository.

    • @SpringBootApplication - Used to mark the main class of a Spring Boot application.

    • @RestController - Used to define a RESTful controller.

    • @Autowired - Used for automatic dependency injection.

    • @GetMapping - Used to handle HTTP GET requests.

    • @PostMapping - Used to hand...

  • Answered by AI
  • Q2. Tell me about java8 features
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, functional interfaces, and default methods.

    • Lambda expressions allow you to write more concise code by enabling functional programming.

    • Streams provide a way to work with sequences of elements and perform operations on them in a declarative way.

    • Functional interfaces are interfaces with a single abstract method, which can be implemented using la...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About myself, technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and found out to be fine while joining

I applied via Naukri.com and was interviewed before May 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. My Working experience
  • Ans. My Working experience was awesome...bcos my daily field work with new challenges and opportunities
  • Answered Anonymously
  • Q2. What is my Working style
  • Ans. My Working style too good with everyone morning bcos my market relationship are build my own...
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Please see my ability and experience...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe general scenario in english
  • Ans. 

    A general scenario is a common situation or setting that can be applied to various contexts.

    • General scenarios help to provide a framework for understanding different situations

    • They can be used in problem-solving, decision-making, and planning

    • Examples include a job interview, a classroom setting, or a family gathering

  • Answered by AI
  • Q2. Written assessment to check sentence formation and grammar

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your communication skills. Written and verbal

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

Interview Questionnaire 

1 Question

  • Q1. Why I wanted to leave my job and join iksula, what projects have I worked in.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and take your time. The interviewer are polite and will explain everything to you, but make sure to clear any doubts that arise.

Interview Questionnaire 

4 Questions

  • Q1. SQL Server Joins?
  • Q2. Top 2 Salary from each department?
  • Q3. Delete 30000000+ records from the live system aprroach to delete these records?
  • Ans. 

    Use a combination of backup and delete approach to safely delete the records.

    • Take a backup of the live system before deleting any records.

    • Identify the records to be deleted using a query or script.

    • Delete the records in batches to avoid overwhelming the system.

    • Monitor the system during the deletion process for any issues.

    • Verify the deletion by checking the number of records before and after.

    • Consider archiving the delete

  • Answered by AI
  • Q4. Performance Tuning?

Skills evaluated in this interview

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. What was your Targets, past experience,
  • Q2. What are the Latest trends
  • Ans. 

    The latest trends include AI, remote work, sustainability, and digital transformation.

    • Artificial Intelligence (AI) is being integrated into various industries and processes to improve efficiency and accuracy.

    • Remote work is becoming more popular due to advancements in technology and the COVID-19 pandemic.

    • Sustainability is a growing concern for businesses and individuals, leading to a shift towards eco-friendly practices...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be uptodate with current best practices, newest recruitment devices
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Create an interface in python or java
  • Ans. 

    Creating an interface in Python or Java

    • In Python, create an interface using the 'abc' module and the 'abstractmethod' decorator

    • In Java, create an interface using the 'interface' keyword

    • Interfaces define a set of methods that a class must implement

  • Answered by AI
  • Q2. Difference between return and yield in python
  • Ans. 

    Return is used to exit a function and yield is used to produce a series of values

    • Return statement is used to exit a function and return a value to the caller

    • Yield statement is used in generator functions to produce a series of values

    • Yield is used to create iterators, while return is used to return a value from a function

    • Example: def generator_function(): yield 1 yield 2 yield 3

    • Example: def return_function()

  • Answered by AI

Skills evaluated in this interview

Quess Interview FAQs

How many rounds are there in Quess Softwaretest Engineer interview?
Quess interview process usually has 2 rounds. The most common rounds in the Quess interview process are Group Discussion, Case Study and Aptitude Test.

Tell us how to improve this page.

Quess Softwaretest Engineer Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Randstad Interview Questions
3.8
 • 260 Interviews
IKS Health Interview Questions
3.6
 • 232 Interviews
Team Lease Interview Questions
3.9
 • 201 Interviews
IntouchCX Interview Questions
2.9
 • 191 Interviews
Alldigi Tech Interview Questions
4.0
 • 178 Interviews
TTEC India Interview Questions
3.7
 • 136 Interviews
Globiva Interview Questions
3.1
 • 104 Interviews
ReSource Pro Interview Questions
4.0
 • 92 Interviews
Adecco Group Interview Questions
3.7
 • 88 Interviews
View all

Fast track your campus placements

View all
Quess Softwaretest Engineer Salary
based on 118 salaries
₹1.5 L/yr - ₹10.6 L/yr
At par with the average Softwaretest Engineer Salary in India
View more details

Quess Softwaretest Engineer Reviews and Ratings

based on 7 reviews

2.7/5

Rating in categories

2.9

Skill development

2.9

Work-life balance

2.7

Salary

2.3

Job security

2.7

Company culture

2.3

Promotions

2.5

Work satisfaction

Explore 7 Reviews and Ratings
Relationship Officer
992 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
782 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
494 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Engineer
453 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Relationship Executive
302 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Quess with

Team Lease

3.9
Compare

Security and Intelligence Services (India)

4.2
Compare

ManpowerGroup

3.8
Compare

Randstad

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