Upload Button Icon Add office photos
Engaged Employer

i

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

Biswa Games Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Biswa Games Interview Questions and Answers

Updated 22 Dec 2024

Biswa Games Interview Experiences

Popular Designations

2 interviews found

Interview experience
5
Excellent
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 - Coding Test 

Two moderate level questions asked

Round 3 - Technical 

(1 Question)

  • Q1. About unity and programming

Game Programmer Interview Questions asked at other Companies

Q1. How to make an update function from a coroutine
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Fundamental programming questions.
  • Q2. Fundamental Unity questions if any previous experience
Round 2 - Coding Test 

In-office round. They gave me a desktop and an IDE, with a set of entry-level LeetCode problems.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know basic physics, maths, DSA, keep your OOPs concepts clear. Learn Unity/Unreal game development on your own a bit.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 5 interview rounds.

Round 1 - Coding Test 

The test was conducted on HackerRank. One Javascript question and has to be solved.

Round 2 - Technical 

(1 Question)

  • Q1. Discussion on building a scalable system.
Round 3 - One-on-one 

(1 Question)

  • Q1. Peer panel round - Discussion on how a feature has been built. What tradeoffs you thought of etc
Round 4 - HR 

(1 Question)

  • Q1. Behavioural and culture fit
Round 5 - Behavioral 

(1 Question)

  • Q1. General discussion on what is expected from the role and what are my expectations etc
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introduction about my self
  • Q2. About the job role
  • Q3. One on one with manager
  • Q4. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't walk in for any interview in FRND as they hire for good salary and ask you to leave the company within a month without giving any feedback.. Be careful they are a FRAUD not a FRND company.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
No response

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

Round 1 - Coding Test 

Coding related to java collections

Round 2 - One-on-one 

(2 Questions)

  • Q1. Familiar with Design patterns ?explain few
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns help in creating maintainable and scalable code.

    • Examples of design patterns include Singleton, Factory, Observer, and Strategy.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Obse...

  • Answered by AI
  • Q2. What is Mutilthreading,explain with examples
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness.

    • Multithreading allows multiple tasks to be executed simultaneously on a single CPU.

    • Each thread has its own stack and program counter, but shares the same memory space.

    • Examples include running multiple processes in a web server, handling user input while performing background tasks, and p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Provided

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 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. Explain about react guard
  • Ans. 

    React guard is a higher-order component used to restrict access to certain routes in a React application.

    • React guard is used for implementing authentication and authorization in React applications.

    • It can be used to prevent unauthorized users from accessing certain routes.

    • React guard can redirect users to a login page if they are not authenticated.

    • It can also be used to restrict access based on user roles or permissions

  • Answered by AI
  • Q2. Use of the axios interceptor
  • Ans. 

    Axios interceptors are used to globally handle HTTP requests and responses in an application.

    • Interceptors can be used to add headers, handle errors, or modify requests before they are sent.

    • Example: Adding a token to all outgoing requests for authentication.

    • Example: Logging all incoming responses for debugging purposes.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for RCG Global Services React Developer interview:
  • Javascript
  • React
  • axios
  • Redux
  • react router
Interview preparation tips for other job seekers - Fundamentals of Javascript, hooks, redux, advanced routing

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Probability question
  • Q2. Baseball game, ticket pricing

Interview Preparation Tips

Interview preparation tips for other job seekers - Be nice
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked about the react and UI elements like charts, and layouts. etc
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Atharva College of Engineering, Mumbai and was interviewed in Nov 2023. There were 4 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 - Aptitude Test 

Test duration was about 1 hr

Round 3 - Technical 

(1 Question)

  • Q1. Given a string, find the number of unique characters in the string. (all characters are in lower case) For eg: Input : "i love india" Output: 7 Explaination: unique characters are, [l,o,v,e,n,d,a]
  • Ans. 

    The task is to find the number of unique characters in a given string.

    • Create an empty array to store unique characters.

    • Iterate through each character in the string.

    • If the character is not already present in the array, add it.

    • Finally, return the length of the array as the number of unique characters.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. HR has asked me about personal details my projects why I am interested to join the company. Have you failed any interviews before?, share that experience. What is your favourite sport?

Interview Preparation Tips

Interview preparation tips for other job seekers - Your resume is your question paper for interview room

Skills evaluated in this interview

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

I applied via campus placement at Malout Institute of Management & Information Technology, Malout and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

60 minutes, math, reasoning, DSA

Round 2 - One-on-one 

(1 Question)

  • Q1. DSA and OOPS concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - I give special thanks to technical lead Vinod Goswami. He puts a lot of pressure on employees and he treats employees like flunky. I will explain one incident that is why am I quiet, Vinod Godswami gave me a task and said I will tell you when the tracker is free; I am asking to continue in three days Sir is the tracker free or not he is not replying my messages. He complained to the CEO that I was not doing work and the CEO (Manish Gulati) talked to me very rudely and sometimes abused me. I am quite immediate and pay two months' salary to the company because I am not serving the notice period. Why I am thanks to Vinod Godswami because I got approximately 100% + hike.

Biswa Games Interview FAQs

How many rounds are there in Biswa Games interview?
Biswa Games interview process usually has 2-3 rounds. The most common rounds in the Biswa Games interview process are Coding Test, Resume Shortlist and Technical.
How to prepare for Biswa Games 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 Biswa Games . The most common topics and skills that interviewers at Biswa Games expect are iphone game programming, Bidding, C++, Interpersonal Skills and Lead Generation.
What are the top questions asked in Biswa Games interview?

Some of the top questions asked at the Biswa Games interview -

  1. Fundamental programming questio...read more
  2. About unity and programm...read more

Tell us how to improve this page.

Biswa Games Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Electronic Arts Interview Questions
4.1
 • 22 Interviews
IDZ Digital Interview Questions
3.8
 • 22 Interviews
ChicMic Interview Questions
4.5
 • 11 Interviews
Games2Win Interview Questions
2.2
 • 6 Interviews
Octro Interview Questions
3.3
 • 5 Interviews
Zynga Interview Questions
3.5
 • 5 Interviews
JetSynthesys Interview Questions
2.6
 • 5 Interviews
Reliance Games Interview Questions
2.4
 • 2 Interviews
View all

Biswa Games Reviews and Ratings

based on 24 reviews

3.2/5

Rating in categories

3.2

Skill development

3.1

Work-life balance

2.8

Salary

3.0

Job security

3.2

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 24 Reviews and Ratings
Game Programmer
8 salaries
unlock blur

₹2.2 L/yr - ₹4 L/yr

BID Manager
4 salaries
unlock blur

₹2 L/yr - ₹2.4 L/yr

Game Developer
4 salaries
unlock blur

₹1.9 L/yr - ₹3.5 L/yr

Node JS Developer
4 salaries
unlock blur

₹2.7 L/yr - ₹2.7 L/yr

Explore more salaries
Compare Biswa Games with

Octro

3.3
Compare

Moonfrog Labs

2.5
Compare

Nazara Technologies

3.0
Compare

Games2Win

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