Upload Button Icon Add office photos
Engaged Employer

i

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

Sony Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Clear (1)

Sony Unity Developer Interview Questions and Answers

Updated 23 Dec 2023

Sony Unity Developer Interview Experiences

1 interview found

Unity Developer Interview Questions & Answers

user image Akash Shukla

posted on 22 Dec 2023

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

I applied via LinkedIn and was interviewed before Dec 2022. There were 2 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. What is a coroutine
  • Ans. 

    A coroutine is a function that can pause execution and resume at a later time, allowing for asynchronous programming.

    • Coroutines are commonly used in game development to handle animations, AI behavior, and asynchronous tasks.

    • In Unity, coroutines are created using the 'yield' keyword and can be started, paused, and resumed.

    • Coroutines can be used to create smooth animations by gradually changing values over time.

    • They can ...

  • Answered by AI
  • Q2. What is script execution order in Unity?
  • Ans. 

    Script execution order determines the order in which scripts are executed in Unity.

    • Unity uses a default execution order based on script type.

    • You can modify the execution order using the Script Execution Order settings.

    • Scripts with lower execution order values are executed first.

    • Scripts with the same execution order are executed in the order they appear in the Inspector.

    • You can use the [ExecuteInEditMode] attribute to e

  • Answered by AI
  • Q3. What are the types of Update functions?
  • Ans. 

    There are three types of Update functions in Unity: Update, FixedUpdate, and LateUpdate.

    • Update function is called once per frame and is used for general updates.

    • FixedUpdate function is called at fixed intervals and is used for physics calculations.

    • LateUpdate function is called after all Update functions and is used for camera or object follow-up.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared. They hire really qualified and talented people only. They have lots of policies regarding data breach and work ethics, so they need good employees only

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in May 2017.

Interview Questionnaire 

4 Questions

  • Q1. Why is string immutable
  • Ans. 

    String is immutable because it ensures data integrity and allows for efficient memory management.

    • Immutable strings prevent accidental modification of data.

    • Immutable strings can be easily shared and reused, improving memory efficiency.

    • Immutable strings enable efficient string interning and caching.

    • Immutable strings support thread safety in concurrent environments.

  • Answered by AI
  • Q2. Do @requestparam has default value
  • Ans. 

    Yes, @RequestParam has a default value if not specified.

    • If a @RequestParam is not provided in the request, it will use its default value.

    • The default value can be set using the 'defaultValue' attribute of @RequestParam annotation.

    • If no default value is specified, the parameter will be considered as required and an exception will be thrown if not provided.

  • Answered by AI
  • Q3. Singleton and prototype
  • Q4. Why abstract class is required
  • Ans. 

    Abstract classes are required to provide a common interface and share code among related classes.

    • Abstract classes allow for code reusability and promote modular design.

    • They provide a common interface for a group of related classes.

    • Abstract classes can define abstract methods that must be implemented by subclasses.

    • They can also provide default implementations for common methods.

    • Abstract classes cannot be instantiated, b

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Code realted to shell script,c++ and then cicd pipeline

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Asked me about my research work That's it
  • Q2. Asked about the course project that i did in BE and MS

Interview Preparation Tips

Round: Test
Experience: There was one question which was little tricky , but not that difficult
Total Questions: 1

Round: Technical + HR Interview
Experience: There was one question which was little tricky , but not that difficult

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Project related questions
  • Q2. Breifly explain about project
  • Ans. 

    The project is a web-based application for managing inventory and sales of a retail store.

    • Developed using Java and Spring framework

    • Includes features such as product management, order management, and customer management

    • Utilizes MySQL database for data storage

    • Implemented security measures such as authentication and authorization

    • Designed with a responsive user interface for optimal user experience

  • Answered by AI
  • Q3. Tell me about yourself. Hobbies , strength and weakness
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My hobbies include reading and playing video games.

    • Proficient in programming languages such as Java and Python

    • Strong problem-solving skills

    • Good communication and teamwork abilities

    • Weakness: Sometimes I tend to overthink and spend too much time on a problem

    • Hobbies: Reading books on technology and playing video games

  • Answered by AI
  • Q4. Will u stay in samsung?
  • Ans. 

    I cannot make a commitment to staying at Samsung at this time.

    • I am open to exploring other opportunities

    • My decision will depend on various factors such as growth opportunities, work culture, and compensation

    • I value my time at Samsung and appreciate the experience gained

  • Answered by AI
  • Q5. Basic hr questions

Interview Preparation Tips

Round: Test
Experience: Problem similar to knapsack
Tips: dynamic programming
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: Asked to explain about project. Some basic concepts in linear algebra and in deep learning like CNNs. Asked to implement Hungarian algorithm.
Tips: Brush up baisc ML and linear algebra concepts

Round: HR Interview
Experience: Asked where i did my btech. Asked why i switched by branch from electronics to computer science.
Tips: tell the truth to whatever is asked

Skills: Machine Learning
College Name: IIT Madras

Software Developer Interview Questions & Answers

Samsung user image GURRAM HARINATHA REDDY cs13b010

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between DFS and BFS?
  • Ans. 

    DFS and BFS are two popular graph traversal algorithms used in computer science.

    • DFS stands for Depth First Search and explores as far as possible along each branch before backtracking.

    • BFS stands for Breadth First Search and explores all the vertices at the present depth before moving on to the next level.

    • DFS uses a stack data structure to keep track of visited nodes while BFS uses a queue.

    • DFS is useful for finding path...

  • Answered by AI
  • Q2. When are double pointers used?
  • Ans. 

    Double pointers are used to store the address of a pointer variable.

    • Double pointers are useful in dynamic memory allocation.

    • They are used to modify the value of a pointer passed to a function.

    • They can be used to create linked lists and trees.

    • Example: int **ptr; //declares a double pointer to an integer

  • Answered by AI
  • Q3. List all the permutations of the array?
  • Ans. 

    Permutations of an array

    • Permutations are all possible arrangements of elements in an array

    • Number of permutations for an array of length n is n!

    • Use recursion to generate all permutations

    • Swap elements to generate different permutations

  • Answered by AI
  • Q4. What is the first biggest failure in your life?
  • Ans. 

    My first biggest failure was not being able to clear an important exam in high school.

    • Failed to manage time effectively

    • Did not seek help from teachers or peers

    • Did not practice enough

    • Learned the importance of preparation and seeking help

    • Improved study habits and time management skills

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 3 hours
Total Questions: 1

College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Asked to breifly explain about the project
  • Q2. Asked to implement hungarian algorithm
  • Q3. Tell about yourself
  • Ans. 

    I am a software developer with experience in Java and Python.

    • Graduated with a degree in Computer Science

    • Worked on multiple projects using Java and Python

    • Familiar with Agile methodology

    • Passionate about learning new technologies

  • Answered by AI
  • Q4. Whats my strenghts and weaknesses?
  • Ans. 

    My strength is problem-solving and attention to detail. My weakness is public speaking.

    • Strength: Strong problem-solving skills

    • Strength: Attention to detail

    • Weakness: Public speaking

    • Weakness: Difficulty with time management

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: problem similar to knapssack
Tips: learn dynamic programming
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: Asked basic ML and linear algebra questions
Tips: brush up ML and Linear Algebra concepts

Round: HR Interview
Experience: It was kind of a friendly discussion. She asked my why switched my branch from EC to CS for M.Tech?
Tips: Most of the questions were basic HR questions.

Skills: Machine Learning
College Name: IIT Madras

I was interviewed in Nov 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Students above 7.00 cgpa were shortlisted for the test.

Round: Test
Experience: It was a coding test for 3 hours where we were given a scenario to be solved using our programming skills. The question could be solved in any programming language comfortable. The shortlisting depends on the number of test cases passed. There are about 50 test cases for the question.
Duration: 3 hours
Total Questions: 1

Skills: Programming Skills In Any Language Like C
College Name: Thapar University, Patiala

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: A. Quantitative aptitude:
Very Easy Questions. If you know ratios and proportions, few formulas, probability etc. You can easily answer all the answers.
20 questions - 20 minutes.
B. Verbal Reasoning:
Basic questions based on knowledge of grammar. RC and other questions. Easy questions.
20 questions - 20 minutes.
C. Logical Reasoning:
Questions based on family tree, symbols (like if '+' operator is greater than or equal to) based questions. Easy to solve.
20 questions - 20 minutes.
Based on the aptitude test, 20 students from IT were shortlisted for the coding round.

Duration: 1 hour
Total Questions: 60

Round: Coding round
Experience: This round took place on the same day after the aptitude
Three programs:
Your code is tested against 15-20 test cases. Time limit was one hour.


Run length encoding: Given a string compress it using run length encoding
Eg: I/P - aaaccdeeff O/P - a3c2de2f2
Solution: -----/
Given two trees find if they are identical or not
Solution: -----/
Find maximum sum rectangle in a 2D matrix


Round: Group Discussion
Experience:
This round was newly introduced by Samsung in our year.
There were 2 batches of 10 people each.
Each batch was given a topic and each member in a batch had to speak about the topic for 2 minutes.
My topic was

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Each section has 20 questions. The first two rounds are well finished in time but the numerical section left me time deficient.
Tips: No special practice is needed. Just be calm during the entire test and don't get stuck at any question. Immediately move to next question if got stuck at any question.
Total Questions: 60

Round: Test
Experience: Most questions are pretty much simple testing the basics.
Tips: Practice string problems from hackerrank.
Duration: 60 minutes
Total Questions: Coding

Round: Group Discussion
Experience: Not like the usual Gd's. It's more of group interview. Every one gets their turn to share #t opinion.
Tips: They want to test your interest in technology. So, know abt the current advancements in technology.

Skills: Basics Of Computer Science, Algorithms And Data Structures, Accuracy
Duration: 2
College Name: IIT Madras
Contribute & help others!
anonymous
You can choose to be anonymous

Sony Interview FAQs

How many rounds are there in Sony Unity Developer interview?
Sony interview process usually has 2 rounds. The most common rounds in the Sony interview process are Resume Shortlist and Technical.
What are the top questions asked in Sony Unity Developer interview?

Some of the top questions asked at the Sony Unity Developer interview -

  1. What is script execution order in Uni...read more
  2. What are the types of Update functio...read more
  3. What is a corout...read more

Recently Viewed

INTERVIEWS

Tripjack

No Interviews

INTERVIEWS

JCB

No Interviews

INTERVIEWS

Su-Kam Power Systems

No Interviews

INTERVIEWS

Exicom

No Interviews

INTERVIEWS

Amara Raja Energy & Mobility

No Interviews

INTERVIEWS

Sony

No Interviews

INTERVIEWS

Tripjack

No Interviews

INTERVIEWS

Exicom

20 top interview questions

DESIGNATION

INTERVIEWS

JCB

No Interviews

Tell us how to improve this page.

Sony Unity Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Samsung Interview Questions
3.9
 • 561 Interviews
HARMAN Interview Questions
3.8
 • 258 Interviews
OPPO Interview Questions
4.0
 • 210 Interviews
LG Electronics Interview Questions
4.0
 • 194 Interviews
Vivo Interview Questions
4.1
 • 192 Interviews
Philips Interview Questions
3.9
 • 158 Interviews
Blue Star Interview Questions
4.0
 • 158 Interviews
Daikin Interview Questions
4.2
 • 144 Interviews
HP India Interview Questions
4.1
 • 138 Interviews
Samsung Research Interview Questions
3.2
 • 130 Interviews
View all

Sony Unity Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

5.0

Salary

3.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Sales Executive
187 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Sales Manager
80 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
68 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sony with

Samsung

3.9
Compare

LG Electronics

4.0
Compare

Panasonic Avionics Corporation

3.4
Compare

Toshiba

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