Research in Motion Interview Question
166 Interview Reviews |
Back to all Research in Motion Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Embedded Systems Software Developer at Research in Motion:
Write a function that will return x*7 without using multiplication?
See more for this Research in Motion Embedded Systems Software Developer Interview
Helpful Question?
Yes |
No
Inappropriate?
Answers & Comments (2)
inline int mulby7(int x)
{
return (x << 3) - x;
}
Helpful Answer?
Yes |
No
Inappropriate?
To comment on this
question,
Sign In with Facebook or
Sign Up



0 of 1 people found this helpful
by Interview Candidate:
{
return (x<3)-x;
}