Upload Button Icon Add office photos
Engaged Employer

i

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

Junglee Games Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Junglee Games Software Developer Intern Interview Questions and Answers

Updated 15 Oct 2024

Junglee Games Software Developer Intern Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Medium level coding questions on hackerrank ,1:30hr, topic- Array , DP , Matrix , Binary Search

Round 2 - Technical 

(1 Question)

  • Q1. Was Asked to Implement Hashmap and Question on OOPS and Dbms , SQL and Indexing
Round 3 - Technical 

(2 Questions)

  • Q1. Brief Introduction
  • Q2. Rotten Oranges and basics of bfs and DFS

Interview questions from similar companies

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

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concept Js related output questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Few questions that would involve problem solving. Basic 10th std math would suffice

Round 2 - Coding Test 

Had few DSA questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview
Round 4 - HR 

(1 Question)

  • Q1. About job, expection etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and inspire trust. Be curious.
Interview experience
4
Good
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Write a program to check if string is a anagram
  • Ans. 

    Program to check if a string is an anagram

    • Create a function that takes in two strings as input

    • Remove all spaces and convert both strings to lowercase

    • Sort both strings and compare if they are equal to determine if they are anagrams

  • Answered by AI
  • Q2. What is react lifecycle method
  • Ans. 

    React lifecycle methods are special methods that are automatically called by React at specific points in a component's life cycle.

    • React components have several lifecycle methods such as componentDidMount, componentDidUpdate, componentWillUnmount, etc.

    • These methods allow developers to perform actions at specific points in a component's life cycle, such as fetching data, updating the UI, or cleaning up resources.

    • Understa...

  • Answered by AI
Round 3 - Coding Test 

Create a web app to perform cred operation

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jan 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Group Discussion 

Abstract topic group discussion

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview covering topics on oops , data structures , conditional statements.
Round 4 - HR 

(1 Question)

  • Q1. General questions- introduction , how previous rounds went ,hobbies , what do you know about our company , situation based questions.

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions based or percentage, profit loss, ratio

Round 2 - Technical 

(2 Questions)

  • Q1. Explain about stacks
  • Ans. 

    Stacks are a data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added and removed from the top of the stack

    • Common operations include push (add element) and pop (remove element)

    • Stacks can be implemented using arrays or linked lists

    • Examples of stack usage include function call stack and undo/redo functionality in text editors

  • Answered by AI
  • Q2. To find middle number in the linked list
  • Ans. 

    To find the middle number in a linked list.

    • Traverse the linked list using two pointers, one moving twice as fast as the other.

    • When the fast pointer reaches the end, the slow pointer will be at the middle node.

    • If the linked list has even number of nodes, there will be two middle nodes. Return either one.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduction , hobbies, goals
  • Q2. Strength, weakness, short term and long term goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at data structures and oops concepts

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Junglee Games Interview FAQs

How many rounds are there in Junglee Games Software Developer Intern interview?
Junglee Games interview process usually has 3 rounds. The most common rounds in the Junglee Games interview process are Technical and Coding Test.
What are the top questions asked in Junglee Games Software Developer Intern interview?

Some of the top questions asked at the Junglee Games Software Developer Intern interview -

  1. Was Asked to Implement Hashmap and Question on OOPS and Dbms , SQL and Index...read more
  2. Rotten Oranges and basics of bfs and ...read more

Recently Viewed

INTERVIEWS

SRM Institute of Science and Technology

No Interviews

INTERVIEWS

Bain & Company

No Interviews

INTERVIEWS

Aakash Educational Services

No Interviews

INTERVIEWS

UltraTech Cement

No Interviews

INTERVIEWS

LTIMindtree

No Interviews

INTERVIEWS

TTK Prestige

No Interviews

DESIGNATION

INTERVIEWS

KPIT Technologies

No Interviews

INTERVIEWS

Novartis

No Interviews

INTERVIEWS

Aakash Educational Services

No Interviews

Tell us how to improve this page.

Junglee Games Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Product Manager
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Analyst
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Junglee Games with

Dream11

3.8
Compare

Nazara Technologies

3.0
Compare

Octro

3.3
Compare

Moonfrog Labs

2.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent