Upload Button Icon Add office photos
Engaged Employer

i

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

Juego Studio Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Juego Studio Software Engineer Trainee Interview Questions and Answers

Updated 26 Aug 2021

Juego Studio Software Engineer Trainee Interview Experiences

1 interview found

I applied via Walk-in and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. C Language questions.
  • Q2. I don't remember. But be aware of any one programming language and able to solve basic programming questions at least.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared in any one programming language. They give you programming questions and ask you to solve in your desired language.

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

Interview Questionnaire 

1 Question

  • Q1. Leetcode medium questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare top leetcode questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour, 22 questions related to Java Spring Boot, SQL, and Hibernate, also one DSA Question, implementation of a card board game.

I applied via Company Website and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Design, Strings, Bit

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with all data structures, know your design and algorithms.

I applied via LinkedIn and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions on data structures and algorithms.
  • Q2. Questions on system design

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honest. Questions were easy to moderate
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Question on various topics

Round 2 - Coding Test 

More questions on oops, coding

Interview Preparation Tips

Interview preparation tips for other job seekers - None

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Apr 2022. There were 5 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 

Basic aptitude questions. Just keep a track of time

Round 3 - Coding Test 

2nd round is coding round. You can expect Leetcode medium questions. The topics asked are Linked list, Trees and arrays.

Round 4 - Coding Test 

3rd round is again the Coding Test. Level of questions is Leetcode Medium to Leetcode Hard. Topics covered are Trees, Doubly Linked List, Dp etc.

Round 5 - Technical 

(2 Questions)

  • Q1. 4th round is an hour-long technical interview. The interviewer will start by asking about your introduction and you can expect some questions about your introduction or projects. The rest of the time is gi...
  • Q2. The questions were House Robber 3 from leetcode and some questions based on the binary array.

Interview Preparation Tips

Topics to prepare for Josh Technology Group Software Engineer interview:
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - Just focus on Data structure and Algorithms. During the coding rounds keep track of time.

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

Juego Studio Interview FAQs

What are the top questions asked in Juego Studio Software Engineer Trainee interview?

Some of the top questions asked at the Juego Studio Software Engineer Trainee interview -

  1. I don't remember. But be aware of any one programming language and able to solv...read more
  2. C Language questio...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Magic Edtech Interview Questions
3.0
 • 50 Interviews
Affine Interview Questions
3.3
 • 48 Interviews
IT By Design Interview Questions
4.0
 • 39 Interviews
Argusoft Interview Questions
4.6
 • 38 Interviews
View all
Juego Studio Software Engineer Trainee Salary
based on 9 salaries
₹3 L/yr - ₹4.5 L/yr
7% less than the average Software Engineer Trainee Salary in India
View more details

Juego Studio Software Engineer Trainee Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

1.1

Salary

3.0

Job security

2.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Level 1
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Analyst
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Trainee
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Juego Studio with

99games Online

1.4
Compare

Dhruva Interactive

3.6
Compare

Moonfrog Labs

2.5
Compare

Nazara Technologies

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