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.
Lucky Number Seven

Write a fast routine for multiplying an unsigned integer by 7. Then write a fast routine for dividing an unsigned integer by 7.


2 Comments so far
Leave a comment

To Multiply

int MultBySeven(int iA)
{
int result = 0;
for(int i = 0; i

int MultBySeven(int iA)
{
int result = 0;
for(int i = 0; i



Leave a comment
If you are including code in your comment, place it within a <div class='code'></div> tag for better formatting.


Do you have a technical interview question you would like to submit? Some tips you would like to pass on? Just want to say hi? Feel free to contact us