Upload Button Icon Add office photos

Filter interviews by

Baazi Games Backend Developer Interview Questions, Process, and Tips

Updated 21 Dec 2022

Baazi Games Backend Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2022. 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 - Technical 

(4 Questions)

  • Q1. What is Hoisting in javascript
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Hoisting applies to variable and function declarations, not initializations

    • Variables declared with let and const are not hoisted

    • Function declarations are hoisted before variable declarations

    • Function expressions are not hoisted

  • Answered by AI
  • Q2. Difference between var, let and const
  • Ans. 

    var is function scoped, let and const are block scoped.

    • var can be redeclared and updated within its scope

    • let can be updated but not redeclared within its scope

    • const cannot be updated or redeclared once declared

    • let and const are not hoisted like var

    • const must be initialized during declaration

  • Answered by AI
  • Q3. What are middlewares
  • Ans. 

    Middlewares are software components that act as a bridge between different applications or systems.

    • Middlewares are used to handle common functionalities like authentication, logging, and error handling.

    • They can be implemented as a standalone software or as a part of a larger application.

    • Examples of middlewares include Express.js middleware, Django middleware, and ASP.NET middleware.

  • Answered by AI
  • Q4. What is event loop in javascript
  • Ans. 

    Event loop is a mechanism in JavaScript that allows asynchronous code to be executed.

    • Event loop continuously checks the call stack and the task queue.

    • If the call stack is empty, it takes the first task from the queue and pushes it to the call stack.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • setTimeout, setInterval, and AJAX requests are examples of asynchronous operations that use even

  • Answered by AI
Round 3 - Aptitude Test 

Simple scenario with hypothetical question based on assumptions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't waste your time in giving the interview as you will not get hired.
They only conduct interviews and waste time of students.
Even after clearing both rounds i didn't get any offers.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a sql query
  • Ans. 

    SQL query to retrieve employee names and their salaries from a table

    • Use SELECT statement to retrieve data

    • Specify the columns you want to retrieve (employee names and salaries)

    • Specify the table name where the data is stored

  • Answered by AI
  • Q2. Formula of vlookup
  • Ans. 

    VLOOKUP is a function in Excel used to search for a value in a table and return a corresponding value.

    • VLOOKUP searches for a value in the first column of a table and returns a value in the same row from a specified column.

    • The formula syntax is =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]).

    • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) will search for the value in cell A2 in the range B2:D10 and return the...

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

The first round was scheduled in the evening time.
First of all interviewer introduced himself and after my introduction 
He directly shoot first DSA question. The question was easy but conceptual. I have solved some question with same concept and he ask me to share the screen and code in online compiler. Finally I was able to get correct output with all the use cases and I was like "Half work done!"
Then he asked me very core concepts of JavaScript along with that Some Output based questions.
Then finally he asked me theory questions on React along with my experience in React. 
The interviewer was very helpful as well as polite. I don't think if he will not help me during interview I could crack the interview

  • Q1. 

    Is the Sentence a Pangram?

    Ninja is relocating to a place called NinjaGram, and for school admission, he is required to identify if a given sentence is a pangram. Your task is to assist Ninja in determini...

  • Ans. 

    Yes, the sentence is a pangram if it includes every letter of the English alphabet at least once.

    • Check if the sentence contains all 26 letters of the English alphabet.

    • Convert the sentence to lowercase to simplify the checking process.

    • Use a set to keep track of the letters present in the sentence.

    • Iterate through the sentence and add each unique letter to the set.

    • After iterating, check if the set contains all 26 letters.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vishwakarma Institute of Technology. Eligibility criteria1+ Years of ExperienceMPL interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, JavaScript, Operating System, Computer NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Code at least a single problem on your favourite coding platform with proper understanding of concept.
Tip 2 : Work on your resume, specifically try to grab some technical achievements(Hackathons, GSoc, etc) along with your degree which can stand out you from other candidates.
Tip 3 : Ask your friend for some mock interviews which can help you to excel in interview.

Application resume tips for other job seekers

Tip 1 : Project description should contain maximum keywords mentioned in Job Description. Success Matrix of project will give you an edge in the interview.
Tip 2 : Resume should be one page along with some clickable GitHub and Achievments links if possible.

Final outcome of the interviewSelected
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL based questions
  • Q2. Guesstimate on estimating # users on the application
  • Ans. 

    Estimate the number of users on the application based on market research, user demographics, and industry trends.

    • Consider the total addressable market (TAM) for the application

    • Analyze user demographics and behavior to estimate adoption rate

    • Look at industry benchmarks and competitor data for reference

    • Use surveys, focus groups, and user feedback to gather insights

    • Consider factors like market saturation, growth potential,

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Coding Test 

SQL based leetcode medium and hackerrank

Round 2 - Assignment 

Python take home EDA case study assessment

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy coding questions

Round 2 - Aptitude Test 

Tough level questions , needed high level of thinking

Interview Preparation Tips

Interview preparation tips for other job seekers - practise apti in a solid manner
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Three coding online assessments - screening round.

Round 2 - Coding Test 

Two to three coding questions based on dynamic programming.

Round 3 - Technical 

(1 Question)

  • Q1. Resume based and computer network
Round 4 - HR 

(1 Question)

  • Q1. Simple hr question

Interview Preparation Tips

Interview preparation tips for other job seekers - If clear coding is improved, the chances of being selected will increase.

Baazi Games Interview FAQs

How many rounds are there in Baazi Games Backend Developer interview?
Baazi Games interview process usually has 3 rounds. The most common rounds in the Baazi Games interview process are Resume Shortlist, Technical and Aptitude Test.
How to prepare for Baazi Games Backend Developer 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 Baazi Games. The most common topics and skills that interviewers at Baazi Games expect are Backend, Customer Experience, Gaming, Growth Strategy and MySQL.
What are the top questions asked in Baazi Games Backend Developer interview?

Some of the top questions asked at the Baazi Games Backend Developer interview -

  1. What is event loop in javascr...read more
  2. What is Hoisting in javascr...read more
  3. Difference between var, let and co...read more

Tell us how to improve this page.

Baazi Games Backend Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

kipi.ai Interview Questions
4.3
 • 55 Interviews
Magic Edtech Interview Questions
3.0
 • 50 Interviews
Affine Interview Questions
3.3
 • 48 Interviews
Cyfuture Interview Questions
2.9
 • 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