1) Do you have any iOS or Android device for game testing?
Unity Programmer Interview Questions
765 unity programmer interview questions shared by candidates
The only questions that I wouldn't be able to answer were related to Unity events and it's differences from C# events.
Only the outdated questions, that we usually won't ever face during actual development.
It was based on the college projects in my resume related to games ... and how i could have improved upon them .
Explain how collision system works and how you can detect collisions between GameObjects.
Where do you see yourself in five years?
What is the difference between a list of structs and a list of classes in C#? How are they stored in memory (RAM)?
They asked me to code a simple program on a tiny laptop.
Asked me if I can manage other team members.
What is wrong with the following code and what would you do to fix or improve the code if applicable? private void RemoveDuplicates( List<int> zMyList ) { int listCount = zMyList.Count; for( int i = 0 ; i < listCount; i++ ) { for( int j = i + 1; j < listCount ; j++ ) { if( zMyList[i] == zMyList[j] ) { zMyList.RemoveAt(j); } } } }
Viewing 71 - 80 interview questions