Upload Button Icon Add office photos
Engaged Employer

i

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

WinZO Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

WinZO QA Engineer Interview Questions and Answers

Updated 7 Apr 2022

WinZO QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Apr 2022

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic information about API testing tools
Round 2 - Technical 

(1 Question)

  • Q1. Depp information about API testing tools and other general interview questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Types of testing tools
  • Ans. 

    Testing tools include functional, performance, security, and automation tools.

    • Functional testing tools: Selenium, Appium, TestComplete

    • Performance testing tools: JMeter, LoadRunner, Gatling

    • Security testing tools: OWASP ZAP, Burp Suite, Nessus

    • Automation testing tools: Jenkins, Travis CI, CircleCI

  • Answered by AI
  • Q2. Other general interview questions

Interview Preparation Tips

Topics to prepare for WinZO QA Engineer interview:
  • Postman
  • API Testing
Interview preparation tips for other job seekers - Have prior knowledge of API testing tools and know what is on your resume.

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. What are the different types of testing STLC llifecycle
  • Ans. 

    Different types of testing in STLC lifecycle include unit testing, integration testing, system testing, and acceptance testing.

    • Unit testing: Testing individual units or components of a software application.

    • Integration testing: Testing the integration of different modules or components.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing to ensure the system meets the requirements and is read

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Same questions Scenarion based questions
Round 3 - Technical 

(1 Question)

  • Q1. Scenario based questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Bar raiser round
Round 5 - HR 

(1 Question)

  • Q1. Culture fit round

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. All the questions related to your technical work experience throughout the carrier

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I have no one question?Only I have an doubt I'm selected or no selected...

I applied via LinkedIn and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There will be 3 coding questions. They are of medium and hard level.

Round 2 - Technical 

(1 Question)

  • Q1. Sort array consisting 0's 1's and 2's without inbuilt functions
  • Ans. 

    Sort an array of 0's, 1's, and 2's without using inbuilt functions.

    • Use three pointers to keep track of the last index of 0's, 1's, and 2's

    • Iterate through the array and swap elements based on their value

    • Continue until all elements are sorted

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Os cn related questions
Round 4 - HR 

(1 Question)

  • Q1. Java questions and general hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Java and CS topics.
DSA is anyways compulsory for this company you need to solve the questions in the given time

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 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 - Coding Test 

Mcqs on javascript,. 1 coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Campus recruitment
1 online coding
2 technical rounds DSA
1 tech managerial
1 hr

Os, DBMS, DSA, stacks, trees,
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2023. 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 - Telephonic Call 

(3 Questions)

  • Q1. Introduction and technical questions.
  • Q2. What is the use of JAVA API?
  • Ans. 

    The JAVA API is a collection of pre-written classes and interfaces that provide ready-to-use functionality for Java developers.

    • The JAVA API allows developers to save time and effort by using pre-built code for common tasks.

    • It provides a wide range of classes and interfaces for various purposes such as file handling, networking, database connectivity, GUI development, etc.

    • Developers can leverage the API to access system...

  • Answered by AI
  • Q3. Questions are picked from Leetcode.
Round 3 - Coding Test 

The duration of the test is one hour and four coding questions are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am not able to qualify for the coding round so I have no idea of further process.

Skills evaluated in this interview

Interview experience
3
Average
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 - Aptitude Test 

Aptitude test question logical reasoning and cheking availablity.

Round 3 - Coding Test 

It's test last test and skill related to C ,Java, HTML

Interview Preparation Tips

Interview preparation tips for other job seekers - My opinion jobseeker is a best platform for developing a job portal and candidate registration for available company .
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2023. 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 - Coding Test 

4 Coding Questions Were Given.
Check Palindrome String
Longest Increasing Subsequence
Group Anagrams
Add Two Numbers(Linked List)

Questions were picked from leetcode but the restriction of not using any inbuild function made them difficult to solve in the given time frame.

Round 3 - Technical 

(5 Questions)

  • Q1. Basic Java Technical Questions
  • Q2. Throws Vs Throw
  • Ans. 

    Throws is used for checked exceptions in Java, while throw is used to explicitly throw an exception.

    • Throws is used in method signature to declare that the method may throw a checked exception.

    • Throw is used to actually throw an exception in the code.

    • Example: public void method() throws IOException { //code }

    • Example: throw new IOException();

  • Answered by AI
  • Q3. Method Overriding Basics and Output-Based Questions
  • Q4. Springboot annotations
  • Q5. Inheritance and Concept of Abstract Classes and Interfaces
  • Ans. 

    Inheritance allows a class to inherit properties and behaviors from another class. Abstract classes cannot be instantiated and can have abstract methods. Interfaces define a contract for classes to implement.

    • Inheritance allows a class to inherit properties and behaviors from another class

    • Abstract classes cannot be instantiated and can have abstract methods

    • Interfaces define a contract for classes to implement

  • Answered by AI

Skills evaluated in this interview

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

There are three sections: -
1. Quants
2. English
3. Reasoning
All sections are accessible medium but you have maintained the speed and accuracy.
after that coding snippet are in java/python.

Round 2 - Coding Test 

Code snippets are there in coding sections.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all basic concepts and try to do good as well as u know.

WinZO Interview FAQs

How many rounds are there in WinZO QA Engineer interview?
WinZO interview process usually has 3 rounds. The most common rounds in the WinZO interview process are One-on-one Round and Technical.
How to prepare for WinZO QA Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at WinZO. The most common topics and skills that interviewers at WinZO expect are Android, Defect Tracking Tool, IOS, JIRA and Mac Os.
What are the top questions asked in WinZO QA Engineer interview?

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

  1. Types of testing to...read more
  2. Depp information about API testing tools and other general interview questi...read more
  3. Basic information about API testing to...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Dream11 Interview Questions
3.8
 • 37 Interviews
NexTurn Interview Questions
4.2
 • 26 Interviews
Bonami Software Interview Questions
4.1
 • 21 Interviews
Koantek Interview Questions
3.3
 • 17 Interviews
Ivanti Interview Questions
3.6
 • 14 Interviews
TestVagrant Interview Questions
3.5
 • 13 Interviews
Calibraint Interview Questions
3.5
 • 12 Interviews
View all
WinZO QA Engineer Salary
based on 8 salaries
₹7 L/yr - ₹15 L/yr
81% more than the average QA Engineer Salary in India
View more details

WinZO QA Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

3.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Product Manager
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graphic Designer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare WinZO with

Mpl

Compare

Dream11

3.8
Compare

Mobile Premier League

3.4
Compare

Rummy Circle

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