Write a statement to find the remainder remdr when num is divided by 5.
LANGUAGE: Visual Basic
CHALLENGE:
Write a statement to find the remainder remdr when num is divided by 5. (The variables have already been declared and num has already been initialized.)
SOLUTION:
remdr = num Mod 5