Upload Button Icon Add office photos
Engaged Employer

i

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

Kwalee India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Kwalee India Senior QA Tester Interview Questions and Answers

Updated 21 Feb 2023

Kwalee India Senior QA Tester Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jan 2023. There were 5 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 - Aptitude Test 

Online test on zoom call , General Questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Why Kwallee Bangalore
  • Ans. 

    Kwallee Bangalore is a leading software testing company with a strong reputation in the industry.

    • Kwallee Bangalore has a team of highly skilled and experienced QA testers.

    • The company has a track record of delivering high-quality testing services to clients.

    • Kwallee Bangalore offers a wide range of testing solutions, including functional testing, performance testing, and security testing.

    • The company has a strong focus on...

  • Answered by AI
  • Q2. Technical Questions related to position
Round 4 - Behavioral 

(2 Questions)

  • Q1. Have pen paper and draw things
  • Q2. About you and your roles and responsibilities
Round 5 - Behavioral 

(3 Questions)

  • Q1. All about me and my current role in current employment
  • Q2. Why you want to join kwalee
  • Ans. 

    I want to join Kwalee because of their innovative and exciting game development projects.

    • Kwalee is known for their unique and creative game concepts.

    • They have a strong focus on innovation and pushing boundaries in the gaming industry.

    • I am passionate about game testing and want to be a part of a company that values quality assurance.

    • Kwalee's company culture and values align with my own professional goals.

    • I am impressed ...

  • Answered by AI
  • Q3. Why client base to product base company now?
  • Ans. 

    Companies are shifting from client base to product base to increase scalability, revenue, and market reach.

    • Product-based companies have the potential for higher revenue and profitability compared to client-based companies.

    • Product-based companies can scale their operations more easily by selling their products to a larger market.

    • Product-based companies have the opportunity to build a strong brand and customer loyalty.

    • Pr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghosted after 4 rounds of interview and no response from any HRs for feedback or any contact ,no mails have been ans nor any calls. Would never recommend such unprofessional behaving company with do decency to even respond to peoples trying to contact.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is bug in any application?
  • Ans. 

    A bug in an application is an error, flaw, failure, or fault in the software code that causes it to produce incorrect or unexpected results.

    • Bugs can range from simple syntax errors to complex logic issues.

    • Common types of bugs include logic errors, syntax errors, and runtime errors.

    • Examples of bugs include a calculator app displaying incorrect results, a website crashing when a specific button is clicked, or a game free

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What is the life cycle of bug?
  • Ans. 

    Bug life cycle includes identification, reporting, fixing, retesting, and closing.

    • Identification: Bug is identified by testers during testing.

    • Reporting: Testers report the bug to developers.

    • Fixing: Developers fix the bug in the code.

    • Retesting: Testers retest the fixed bug to ensure it is resolved.

    • Closing: Once bug is confirmed fixed, it is closed.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why team bonding is needed for healthy work culture?

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Palindrome
  • Q2. Study basic coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic aptitude test, if you know basic maths you can easily crack it.

Data Analyst Interview Questions & Answers

Octro user image Parth Jasathy

posted on 14 Jan 2025

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

Different question were asked on sql python java

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

I was interviewed before Feb 2024.

Round 1 - Coding Test 

There were two coding questions; one was related to linked lists, and the other was linked to binary trees.

Round 2 - Technical 

(4 Questions)

  • Q1. Can you elaborate on the project discussion you mentioned in your resume?
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Integrated authentication and authorization features for secure access

    • Implemented data visualization using Chart.js

  • Answered by AI
  • Q2. Can you provide the code to reverse a linked list?
  • Ans. 

    Reversing a linked list involves changing the direction of pointers to go from the end to the beginning.

    • Start by initializing three pointers: current, previous, and next.

    • Iterate through the linked list, updating the pointers to reverse the direction of the links.

    • Update the head of the linked list to point to the new first node, which was the original last node.

  • Answered by AI
  • Q3. Some questions were asked regarding the four pillars of Object-Oriented Programming (OOP)?
  • Q4. Questions related to pointers, dangling pointers.
Round 3 - Technical 

(4 Questions)

  • Q1. Program for finding the perfect squares between two numbers.
  • Ans. 

    Program to find perfect squares between two numbers

    • Iterate through numbers between the given range

    • Check if the square root of the number is an integer

    • If yes, then it is a perfect square

  • Answered by AI
  • Q2. What are smart pointers in C++?
  • Ans. 

    Smart pointers in C++ are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically managing memory allocation and deallocation.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to prevent circular references.

  • Answered by AI
  • Q3. What is mutual exclusion in the context of concurrent programming?
  • Ans. 

    Mutual exclusion is a concept in concurrent programming where only one thread can access a shared resource at a time.

    • Ensures that only one thread can access a critical section of code at a time

    • Prevents race conditions and data corruption

    • Commonly implemented using locks, semaphores, or mutexes

    • Example: Using a mutex to protect a shared variable in a multi-threaded application

  • Answered by AI
  • Q4. What is the process for implementing multithreading?
  • Ans. 

    Implementing multithreading involves creating and managing multiple threads to execute tasks concurrently.

    • Identify the tasks that can be executed concurrently

    • Create and manage multiple threads to execute these tasks simultaneously

    • Use synchronization techniques like locks and semaphores to prevent race conditions

    • Handle communication and coordination between threads

    • Consider thread safety and resource sharing issues

  • Answered by AI

Skills evaluated in this interview

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

I applied via IIM Jobs and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

SQL Coding Test - asked 5 queries related to joins, ranks, group by

Round 2 - Case Study 

Asked guesstimates, technical CV Question, case

Round 3 - Case Study 

Asked guesstimate, market entry question, case

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

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

Round 1 - Coding Test 

3 online dsa questions easy to medium

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

I was given 10 logical questions to solve on a portal with 30min timer.

Most question were printing of patterns, fibonacci, prime no., palindrome etc.
out of 10 questions atleast 8 has to be right to qualify.

Round 3 - Technical 

(2 Questions)

  • Q1. This round is conducted by senior developer, where they ask some logical coding questions to solve on paper.
  • Q2. Some complex pattern questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. This is the round with CEO who again ask for some logical question & verbal answering. All they wanna se is how you approach towards problems.
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation only if you clear the one-on-one CEO round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go prepared with coding skills. Try to attempt questions with unique approaches.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

3 coding questions and 10 logical reasoning questions

Round 3 - Coding Test 

Play a game on tablet which consists of coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong coding and logical reasoning required to pass the test

Kwalee India Interview FAQs

How many rounds are there in Kwalee India Senior QA Tester interview?
Kwalee India interview process usually has 5 rounds. The most common rounds in the Kwalee India interview process are Behavioral, Resume Shortlist and Aptitude Test.
How to prepare for Kwalee India Senior QA Tester 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 Kwalee India. The most common topics and skills that interviewers at Kwalee India expect are Gaming, Information Security, MS Office, QA Testing and Team Building.
What are the top questions asked in Kwalee India Senior QA Tester interview?

Some of the top questions asked at the Kwalee India Senior QA Tester interview -

  1. Have pen paper and draw thi...read more
  2. Technical Questions related to posit...read more

Tell us how to improve this page.

Kwalee India Senior QA Tester Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

IDZ Digital Interview Questions
3.8
 • 22 Interviews
ChicMic Interview Questions
4.5
 • 11 Interviews
Games2Win Interview Questions
2.2
 • 6 Interviews
Tencent Interview Questions
4.6
 • 6 Interviews
Octro Interview Questions
3.3
 • 5 Interviews
View all
Kwalee India Senior QA Tester Salary
based on 6 salaries
₹9 L/yr - ₹12.2 L/yr
8% more than the average Senior QA Tester Salary in India
View more details
QA Tester
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Tester
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Game Designer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Kwalee India with

Moonfrog Labs

2.5
Compare

Nazara Technologies

3.0
Compare

Octro

3.3
Compare

99games Online

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