0
0
Excelspreadsheet~20 mins

ABS and MOD in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
ABS and MOD Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate the absolute difference
You have two numbers in cells A1 and B1. Which formula correctly calculates the absolute difference between them?
A=ABS(A1-B1)
B=ABS(A1)+ABS(B1)
C=MOD(A1-B1)
D=MOD(A1,B1)
Attempts:
2 left
💡 Hint
Think about how to get the positive difference regardless of which number is bigger.
📊 Formula Result
intermediate
2:00remaining
Find the remainder of division
Which formula correctly returns the remainder when the number in A1 is divided by the number in B1?
A=MOD(A1-B1)
B=ABS(A1/B1)
C=MOD(A1,B1)
D=ABS(MOD(A1,B1))
Attempts:
2 left
💡 Hint
The MOD function returns the remainder of division.
Function Choice
advanced
2:00remaining
Choose the correct formula for positive remainder
You want to find the remainder of A1 divided by B1, but always want a positive result even if A1 is negative. Which formula achieves this?
A=MOD(ABS(A1),B1)
B=ABS(MOD(A1,B1))
C=ABS(A1)-B1*INT(ABS(A1)/B1)
D=MOD(A1,B1)
Attempts:
2 left
💡 Hint
MOD in Excel always returns a result with the same sign as the divisor (B1).
🎯 Scenario
advanced
2:00remaining
Using ABS and MOD to check even or odd
You want to create a formula that returns TRUE if the number in A1 is odd and FALSE if even. Which formula works correctly?
A=MOD(A1,2)<>0
B=MOD(A1,2)=1
C=MOD(ABS(A1),2)=1
D=ABS(MOD(A1,2))=1
Attempts:
2 left
💡 Hint
Remember that MOD returns 0 for even numbers and 1 or -1 for odd numbers depending on sign.
data_analysis
expert
2:00remaining
Analyze formula results with negative numbers
Given the values: A1 = -7, B1 = 3. What is the result of the formula =MOD(A1,B1)?
A4
B2
C0
D-1
Attempts:
2 left
💡 Hint
MOD returns a remainder with the same sign as the divisor (B1).