ACTUAL TEST PAPER 2026 QUESTIONS
WITH SOLUTIONS GRADED A+
⩥ DIVIDE(Dividend, Divisor). Answer: Divides two numbers safely
(avoids errors if divisor is zero). Example: DIVIDE(100, 5) → 20.
⩥ EXP(Number). Answer: Raises Euler's number e to a power. Example:
EXP(1) ≈ 2.718.
⩥ LN(Number). Answer: Natural logarithm. Example: LN(EXP(2)) →
2.
⩥ LOG(Number, Base). Answer: Logarithm with custom base. Example:
LOG(100, 10) → 2.
⩥ MAX(Value1, Value2, ...). Answer: Returns the largest value.
Example: MAX(3, 7, 2) → 7.
⩥ DATE(Year, Month, Day). Answer: Creates a date. Example:
DATE(2025, 12, 31) → 31 Dec 2025.
, ⩥ DAY(Date). Answer: Extracts day of month. Example:
DAY(DATE(2025, 12, 31)) → 31.
⩥ DAYSINMONTH(Year, Month). Answer: Days in a month. Example:
DAYSINMONTH(2024, 2) → 29.
⩥ CUMULATE(Values). Answer: Running total across time. Example:
Sales over months → cumulative revenue.
⩥ LAG(Value, Offset, Substitute). Answer: Returns value from earlier
period. Example: LAG(Sales, 1, 0) → last month's sales.
⩥ LEAD(Value, Offset, Substitute). Answer: Returns value from future
period. Example: LEAD(Sales, 1, 0) → next month's sales.
⩥ IF THEN ELSE. Answer: Conditional branching. Example: IF Sales >
1000 THEN 'High' ELSE 'Low'.
⩥ ISBLANK(Value). Answer: Checks if empty. Example:
ISBLANK(CustomerCode) → TRUE if blank.
⩥ ISNOTBLANK(Value). Answer: Opposite of above. Example:
ISNOTBLANK(CustomerCode) → TRUE.