Upload Button Icon Add office photos

Filter interviews by

Baazi Games Quality Assurance Engineer 3 Interview Questions and Answers

Updated 13 Nov 2024

Baazi Games Quality Assurance Engineer 3 Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Write a program that prints 1 if user inputs 0, and print 0 if user inputs 1.
  • Ans. 

    Program that prints 1 if user inputs 0, and 0 if user inputs 1.

    • Create a function that takes user input as parameter

    • Check if input is 0, then print 1. If input is 1, print 0

    • Handle invalid inputs if necessary

  • Answered by AI
  • Q2. Write a program to find the second lowest number without using collection and nested loop.
  • Ans. 

    Program to find second lowest number without using collection and nested loop.

    • Sort the array in ascending order

    • Check for duplicates and skip them

    • Return the second element in the sorted array

  • Answered by AI
  • Q3. What you have done in rest assured so far?
  • Q4. What are the implementation you have done in App automation?
  • Ans. 

    Implemented App automation using Selenium WebDriver and Appium for regression testing and continuous integration.

    • Used Selenium WebDriver for web application automation

    • Utilized Appium for mobile application automation

    • Implemented automation scripts for regression testing

    • Integrated automation tests into continuous integration pipelines

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

(1 Question)

  • Q1. He generally asked about past experience.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Search in 2d matrix
  • Ans. 

    Search for a target value in a 2D matrix efficiently.

    • Use binary search on rows to find the potential row where the target value may exist.

    • Then use binary search on that row to find the target value.

  • Answered by AI
  • Q2. Find quadraplets that sum to target
  • Ans. 

    Find quadraplets in an array that sum up to a target value.

    • Use a nested loop to iterate through all possible combinations of quadraplets.

    • Keep track of the sum of each quadraplet and compare it to the target value.

    • Return the quadraplets that match the target sum.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Nth Greatest Element III (Leetcode)
  • Ans. 

    Find the Nth greatest element in an array without sorting

    • Use a priority queue to keep track of the N greatest elements

    • Iterate through the array and add elements to the priority queue

    • Return the top element from the priority queue as the Nth greatest element

  • Answered by AI
  • Q2. Heater Problem (Leetcode)
  • Ans. 

    Heater Problem - Find minimum radius to cover all houses with heaters

    • Sort the houses and heaters arrays

    • For each house, find the closest heater using binary search

    • Calculate the minimum radius needed to cover all houses

  • Answered by AI

Skills evaluated in this interview

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

DSA, problem solving

Round 2 - Case Study 

System design interview and prior experience in projects

Round 3 - Culture fit 

(2 Questions)

  • Q1. What was the toughest problem you encountered in your previous assignments ?
  • Q2. Given a choice, what would you have done differently in your previous assignments ?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Senior Software Engineer with a passion for problem-solving and creating innovative solutions.

    • Over 8 years of experience in software development

    • Proficient in multiple programming languages such as Java, Python, and C++

    • Strong background in designing and implementing scalable systems

    • Led successful projects such as developing a real-time data analytics platform for a Fortune 500 company

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

(1 Question)

  • Q1. React lifecycle methods, React hooks
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. RDBMS related questions asked
  • Q2. SQL login building related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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. Mostly scenario based on what you have worked on and basic questions on theorical knowledge.Interview was 1 hour long.
  • Q2. ETL,Tool, Technology, Infrastructures,coding skill,SQL skills
Round 3 - HR 

(1 Question)

  • Q1. Normal basic questions asked in HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best ,keep confident on your work and be patient while giving interview as interview is bit tricky...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Form based JS questions. String questions in javascript
  • Q2. React interview questions with some state management follow up questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on js ,es6, node.js

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 mins
Round difficulty - Medium

  • Q1. 

    Railway Seat Berth Determination

    Given a railway seat number represented as an integer, determine if it is a valid seat number and identify its berth type. Possible berth types include lower berth, middle...

  • Ans. 

    Given a railway seat number, determine if it is valid and identify its berth type.

    • Parse input integer 't' for number of test cases

    • For each test case, check if seat number is valid (1 <= N <= 100)

    • Identify berth type based on seat number and output the result

    • Possible berth types are Lower, Middle, Upper, Side Lower, and Side Upper

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

First they asked me to introduce myself then they started questioning on oops concept from basic to advance level such as inheritance, polymorphism, abstraction, exception handling , STL etc. Next they started questioning on data structures. They asked me the logic of “how to find the middle of a linked list”.

  • Q1. 

    Matrix Symmetry Check

    You are provided with a square matrix. Your task is to return true if the matrix is symmetric; otherwise, return false.

    A symmetric matrix is characterized by its transpose being eq...

  • Ans. 

    Check if a square matrix is symmetric by comparing it with its transpose.

    • Iterate through the matrix and compare each element with its corresponding element in the transpose

    • If any pair of elements do not match, return false immediately

    • If all pairs match, return true at the end

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from K. K. Wagh Institute Of Engineering Education And Research. I applied for the job as Software Engineer in PuneEligibility criteria6.0 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, Python, SQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Clear the basic concepts of data structure and OOPs.
Tip 2 : Use coding ninja platform and Hackerearth for practice on coding skills.
Tip 3 : Use Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1: Make your resume short and try to make it of one page only.
Tip 2: Add relevant keywords

Final outcome of the interviewRejected

Skills evaluated in this interview

Baazi Games Interview FAQs

How many rounds are there in Baazi Games Quality Assurance Engineer 3 interview?
Baazi Games interview process usually has 2 rounds. The most common rounds in the Baazi Games interview process are Technical and One-on-one Round.
What are the top questions asked in Baazi Games Quality Assurance Engineer 3 interview?

Some of the top questions asked at the Baazi Games Quality Assurance Engineer 3 interview -

  1. What are the implementation you have done in App automati...read more
  2. Write a program that prints 1 if user inputs 0, and print 0 if user inputs...read more
  3. Write a program to find the second lowest number without using collection and n...read more

Tell us how to improve this page.

Baazi Games Quality Assurance Engineer 3 Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

kipi.ai Interview Questions
4.2
 • 56 Interviews
Magic Edtech Interview Questions
3.0
 • 50 Interviews
Affine Interview Questions
3.3
 • 48 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
View all
Software Development Engineer II
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Product Manager
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Baazi Games with

Dream11

3.8
Compare

Nazara Technologies

3.0
Compare

Mobile Premier League

3.4
Compare

Paytm First Games

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