Upload Button Icon Add office photos
Engaged Employer

i

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

Yudiz Solutions Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 49 Reviews

Filter interviews by

Yudiz Solutions Game Developer Interview Questions and Answers

Updated 12 Jul 2024

Yudiz Solutions Game Developer Interview Experiences

1 interview found

Game Developer Interview Questions & Answers

user image Pareshgiri Aparanathi

posted on 12 Jul 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is unity ?
  • Ans. 

    Unity is a popular game development platform that allows developers to create 2D, 3D, VR, and AR games for various platforms.

    • Unity is a cross-platform game engine developed by Unity Technologies.

    • It supports the creation of games for multiple platforms such as PC, consoles, mobile devices, and web browsers.

    • Unity offers a wide range of tools and features for game development, including a visual editor, asset store, and s...

  • Answered by AI
  • Q2. Why you choose game developing ?

Skills evaluated in this interview

Game Developer Jobs at Yudiz Solutions

View all

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Normal java coding question

Round 2 - Technical 

(2 Questions)

  • Q1. What are spring ioc
  • Ans. 

    Spring IoC (Inversion of Control) is a design pattern where the control of object creation and lifecycle is shifted to a container or framework.

    • In Spring IoC, objects are created and managed by the Spring container.

    • It helps in achieving loose coupling between classes.

    • Dependency Injection is a key feature of Spring IoC, where dependencies of a class are injected by the container.

    • Example: @Autowired annotation in Spring

  • Answered by AI
  • Q2. Different implementation of map interface
  • Ans. 

    The Map interface in Java provides a way to store key-value pairs and retrieve values based on keys.

    • Different implementations of the Map interface include HashMap, TreeMap, LinkedHashMap, and ConcurrentHashMap.

    • HashMap provides constant-time performance for basic operations but does not guarantee the order of elements.

    • TreeMap maintains elements in sorted order based on keys.

    • LinkedHashMap maintains the insertion order of...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy - Medium Leetcode

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

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Share your experience
  • Q2. How do you handle pressure
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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Just basic question about react
Round 3 - Technical 

(1 Question)

  • Q1. Other person will ask indepth and coding questions
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Javascript basic question, output based question, question related to setTimeout, questions related to Currying, promises
  • Q2. React basics to advanced,custom hooks,high order components,react life cycle, why react , virtual Dom , situation based question on react . How to pass data between components,redux flow
Round 3 - One-on-one 

(1 Question)

  • Q1. Todolist implementation
  • Ans. 

    Todolist implementation

    • Create a UI for adding tasks

    • Implement functionality to add, delete and mark tasks as complete

    • Store tasks in a database or local storage

    • Allow filtering of tasks by status (completed, active)

    • Add option to edit task details

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Befor 2-3 days from interview start consuming namastey js before breakfast and after dinner for 1 hour.
Apart from that uncommon geeks for react questions.

Skills evaluated in this interview

I was interviewed in Sep 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The round was technical round and it was held on google meet around 1 pm

  • Q1. 

    Maximum Sum Rectangle Problem

    Given an M x N matrix of integers ARR, your task is to identify the rectangle within the matrix that has the greatest sum of its elements.

    Input:

    The first line of input co...
  • Ans. Brute force

    In this approach, we'll try to consider each rectangle that can be formed using elements of the array. To do this we fix (X1,Y1) coordinates of starting vertex and iterate through the matrix for every pair (X2,Y2) as the coordinates of ending vertex. Now we have a rectangle with coordinates (X1,Y1), (X1,Y2), (X2,Y1) and (X2,Y2).

    We'll find the sum of elements within this rectangle and compare it with MAXSUM. ...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was managerial round and took place around 3 pm

  • Q1. 

    Infix to Postfix Conversion

    You are provided with a string EXP which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.

    Explanation:

    An i...

  • Ans. Stack

    We will scan the expression from left to write and if we encounter an operand we will append it to our answer. If we encounter an operator we will pop all the operators with equal or higher precedence and append them to our answer. And push the current operator. In the end, we will empty the stack.

    Order of precedence = [ ‘^’, ‘*’ and ‘/’, ‘+’ and ‘-’, ‘(’, ‘)’]

    Order of precedence [ link ]

    The algorithm will be-

    1. ANS ...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Patna. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPA , Computer Science branchEnvestnet | Yodlee India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, C++, Java, Object Oriented Programming, PointersTime required to prepare for the interview - 0.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Java concepts should be strong
Tip 2 : OOPS
Tip 3 : Projects should have scalability

Application resume tips for other job seekers

Tip 1 : Projects detail should be short and precise
Tip 2 : Don't fake technical skills

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

The platform was HackerEarth time duration was 1 hour.
2 Coding questions were asked, 30 minutes for each were allotted.

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. Brute Force

    In the brute force approach, we will use two nested loops. The outer loop is used to select the starting index of the substring and the inner loop is used to fix the ending index of the substring. After selecting the substring, we will use another loop (or a method) to check whether the substring contains all unique characters or not using a HashSet.

    Space Complexity: O(n)Explanation:

    O(L), where L is the len...

  • Answered Anonymously
  • Q2. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 120 Minutes
Round difficulty - Hard

This was a 2 hours round, with the following problem statement. At the end of the allotted time you had give a demo and explain your implementation.

Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Medium

The platform was Zoom, time duration was 45 mins. Started with Tell me something about yourself. I told them, that I like solving algorithms and real life problems.

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interviewer was very friendly. Asked few questions about myself and then asked questions about what I know about the company.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Guru Gobind Singh Indraprastha University. I applied for the job as SDE - Intern in MumbaiEligibility criteriaAbove 7 CGPABrowserStack interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, Trees, NodeJS, OOPS, OS, MySQLTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice questions from leetcode as mostly questions were asked from that only.
Tip 3 : Revise Computer Science subjects like DBMS, OS & OOPS thoroughly, it'll help you ace last round
Tip 4 : Revise everything about your mentioned internship projects and self projects. Projects hold a great weight in selection.

Application resume tips for other job seekers

Tip 1 : Competitive programming profiles is a must. That'll help you get shortlisted.
Tip 2 : Resume should reflect development and experience in DSA.
Tip 3 : Be genuine in your skills and technologies section, question will be asked from them.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. State props,push notification.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It's about implementing rest apis

Round 2 - Technical 

(2 Questions)

  • Q1. Java 8 interview
  • Q2. Rest api development

Yudiz Solutions Interview FAQs

How many rounds are there in Yudiz Solutions Game Developer interview?
Yudiz Solutions interview process usually has 1 rounds. The most common rounds in the Yudiz Solutions interview process are Technical.
How to prepare for Yudiz Solutions Game 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 Yudiz Solutions. The most common topics and skills that interviewers at Yudiz Solutions expect are Ajax, Game Development, Javascript, PDF and Android.

Tell us how to improve this page.

Yudiz Solutions Game Developer Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.7
 • 48 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
Backbase Interview Questions
4.1
 • 21 Interviews
Khoros Interview Questions
3.8
 • 19 Interviews
Mentor Graphics Interview Questions
4.0
 • 19 Interviews
3Pillar Global Interview Questions
3.4
 • 18 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
Saviynt Interview Questions
2.6
 • 17 Interviews
View all

Yudiz Solutions Game Developer Reviews and Ratings

based on 2 reviews

2.7/5

Rating in categories

2.0

Skill development

2.3

Work-life balance

3.0

Salary

2.7

Job security

1.7

Company culture

1.7

Promotions

2.7

Work satisfaction

Explore 2 Reviews and Ratings
Unity3D Game Developer

Ahmedabad

2-5 Yrs

Not Disclosed

Explore more jobs
Business Analyst
14 salaries
unlock blur

₹2.6 L/yr - ₹7 L/yr

Web Developer
11 salaries
unlock blur

₹3 L/yr - ₹6.6 L/yr

Junior Web Developer
9 salaries
unlock blur

₹2.5 L/yr - ₹3.2 L/yr

UI/UX Designer
8 salaries
unlock blur

₹3.2 L/yr - ₹9 L/yr

Junior Quality Analyst
7 salaries
unlock blur

₹1.9 L/yr - ₹4 L/yr

Explore more salaries
Compare Yudiz Solutions with

Hidden Brains InfoTech

3.9
Compare

SPARX IT Solutions

3.6
Compare

Sphinx Solution

2.7
Compare

Peerbits Solution

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