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

11 Sept 2015

return a%b==0;

1