technicalinterviews.net
Programming Technical Interview Questions » Game Programming
http://www.technicalinterviews.net/category/games
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Tic Tac Toe AI. Given a farclip distance and viewing frustum width, how can you find the angle of the field-of-view? Come up with an algorithm to shuffle a dec...
technicalinterviews.net
Programming Technical Interview Questions » Tic Tac Toe AI
http://www.technicalinterviews.net/tic-tac-toe-ai
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Tic Tac Toe AI. 3 Comments so far. Minmax is the best! Http:/ en.wikipedia.org/wiki/Minimax. By Christian Ruggiero on 12.02.10 9:24 am Permalink. By gatech stu...
technicalinterviews.net
Programming Technical Interview Questions » Object Oriented Programming
http://www.technicalinterviews.net/category/oop
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Explain the “ISA” and “HASA” class relationships. How would you implement each in a class design? Copying vs. Assignment. Sketch out the main classes you would...
technicalinterviews.net
Programming Technical Interview Questions » C/C++ Interview Questions
http://www.technicalinterviews.net/category/cc
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Implement the standard I/O function itoa(). Function constructs a string representation of an integer. The parameters are:. I’ve Got the Power (of 2). Question...
technicalinterviews.net
Programming Technical Interview Questions » .NET Interview Questions
http://www.technicalinterviews.net/category/net-interview-questions
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. In C#, can you prevent a class from being inherited by another class? If so, how do you do it? And why would you want to do it? A Jack of All Trades.
technicalinterviews.net
Programming Technical Interview Questions » Implement itoa
http://www.technicalinterviews.net/implement-itoa
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Implement the standard I/O function itoa(). Function constructs a string representation of an integer. The parameters are:. 5 Comments so far. Int stridx = 0;.
technicalinterviews.net
Programming Technical Interview Questions » General Programming Questions
http://www.technicalinterviews.net/category/general
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Tic Tac Toe AI. Implement the standard I/O function itoa(). Function constructs a string representation of an integer. The parameters are:. This book teaches y...
technicalinterviews.net
Programming Technical Interview Questions » The Linguist
http://www.technicalinterviews.net/the-linguist
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. No Comments so far. If you are including code in your comment, place it within a div class='code' /div tag for better formatting. Just want to say hi?
technicalinterviews.net
Programming Technical Interview Questions » Non-Technical Questions
http://www.technicalinterviews.net/category/non-technical
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Ahead of the Curve. If I talked to your last manager and asked what they thought was your greatest strength, what would they say? Finish What You Start. Do you...
technicalinterviews.net
Programming Technical Interview Questions » Optimization Questions
http://www.technicalinterviews.net/category/optimization
Programming Technical Interview Questions. This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C and game programming technical interviews, but most of the questions are relevant to any technical interview. Loop in a List. Write an algorithm to detect if there is a loop in a singly linked list. The best solution can be done in O(n) time using constant memory.