Upload Button Icon Add office photos
Engaged Employer

i

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

Passion Gaming Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Passion Gaming Interview Questions and Answers

Updated 21 Nov 2024

Passion Gaming Interview Experiences

Popular Designations

3 interviews found

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic javascript let cat const
  • Q2. Output for javascript
  • Ans. 

    The question is asking for the output of a JavaScript code snippet.

    • Check for any syntax errors in the code

    • Analyze the logic of the code to determine the expected output

    • Consider any input values or conditions that may affect the output

  • Answered by AI

Skills evaluated in this interview

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 (42)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Merge overlapping intervals
  • Ans. 

    Merge overlapping intervals in an array

    • Sort the intervals based on their start times

    • Initialize an empty result array

    • Iterate through the sorted intervals

    • If the current interval overlaps with the previous interval, merge them

    • If not, add the previous interval to the result array and update the previous interval

    • Add the last interval to the result array

    • Return the result array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through Linked In, the interview process started with an initial round, where a tech person asked me several JS questions and few from design patterns. Subsequently, my application progressed to an in-person interview, during which i was tasked to explain the architecture of my current project. The interviewer asked questions related to the architecture, followed by additional JS concepts and a coding problem (merge overlapping intervals).

Unfortunately, the communication with the interviewer in the coding round was challenging, as my queries were not effectively addressed (I have solved the coding question). In an attempt to facilitate discussion, I intentionally introduced a syntax error in my code. However, the interviewer did not identify the error, hindering constructive dialogue.

After this round, I had an interview with an engineering manager. our conversation covered various JS concepts, including promises, as well as discussions about my previous projects and experience with AWS.

Following the interviewes, I attempted to follow up with the HR department regarding the status of my application. Unfortunately, I encountered difficulties as the HR contact's phone was switched off, and my email did not receive a response.

Skills evaluated in this interview

Node Js Backend Developer Interview Questions asked at other Companies

Q1. complete the following program: class MyEventEmitter { /// ..... } const emitterInst = new MyEventEmitter(); emitterInst.on("message", () => console.log("message event | callback 1")); emitterInst.on("message", () => console.log("mess... read more
View answer (1)

Software Engineer Interview Questions & Answers

user image Shashank Sharma

posted on 22 Jun 2021

I was interviewed in May 2021.

Interview Questionnaire 

1 Question

  • Q1. OOPS, Design Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Be to the point in giving answers.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Palindrome
  • Q2. Study basic coding

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Assignment 

Business case study with data

Round 2 - One-on-one 

(1 Question)

  • Q1. Discussing case study + technical with hiring manager
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Aptitude Test 

They had a logical and comprehensive test

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 Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 questions on a platform

Round 2 - Interview 

(1 Question)

  • Q1. Rotate an array by k places to the right.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare DSA and databases

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

Passion Gaming Interview FAQs

How many rounds are there in Passion Gaming interview?
Passion Gaming interview process usually has 1 rounds. The most common rounds in the Passion Gaming interview process are One-on-one Round.
How to prepare for Passion Gaming 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 Passion Gaming. The most common topics and skills that interviewers at Passion Gaming expect are HTML, Javascript, NoSQL, AWS and PHP.
What are the top questions asked in Passion Gaming interview?

Some of the top questions asked at the Passion Gaming interview -

  1. Merge overlapping interv...read more
  2. Output for javascr...read more
  3. Basic javascript let cat co...read more

Tell us how to improve this page.

Passion Gaming Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Dream11 Interview Questions
3.8
 • 36 Interviews
IDZ Digital Interview Questions
3.8
 • 22 Interviews
Games24x7 Interview Questions
3.7
 • 19 Interviews
Baazi Games Interview Questions
3.2
 • 16 Interviews
WinZO Interview Questions
4.8
 • 14 Interviews
Octro Interview Questions
3.3
 • 5 Interviews
Gamezop Interview Questions
3.7
 • 3 Interviews
View all

Passion Gaming Reviews and Ratings

based on 36 reviews

4.2/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

4.4

Salary

4.2

Job security

4.1

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 36 Reviews and Ratings
Software Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Scientist
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Digital Marketing Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Passion Gaming with

Dream11

3.8
Compare

Mobile Premier League

3.4
Compare

Nazara Technologies

3.0
Compare

Games24x7

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