employer cover photo
employer logo
employer logo

RPM Technologies (Canada)

Is this your company?

RPM Technologies (Canada) Interview Question

Write a function that takes an integer parameter and returns boolean indicating if the integer is divisible by some number n.

Interview Answer

Anonymous

Sep 11, 2015

return a%b==0;

1