# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-6/17
Exercises: Try Out - Set 6: Real exam simulation to sharpen your skills and build confidence. - Problem 17
---
## Exercise 17
### Question
export const metadata = {
title: "Problem 17",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
Given an integer , if is divided by the remainder is , and if is divided by the remainder is . Possible values for are
1.
2.
3.
4.
### Choices
- [ ] If $$(1)$$, $$(2)$$, and $$(3)$$ are correct.
- [ ] If $$(1)$$ and $$(3)$$ are correct.
- [x] If $$(2)$$ and $$(4)$$ are correct.
- [ ] If only $$(4)$$ is correct.
- [ ] If all are correct.
### Answer & Explanation
export const metadata = {
title: "Solution to Problem 17",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
Given the conditions for integer :
* (If divided by , remainder is )
* (If divided by , remainder is )
Let's check each statement:
#### Analysis of Statement 1
Value . Divided by : . Remainder (Satisfied). Divided by : . Remainder (**Not satisfied**, should be ). Thus, statement is **incorrect**.
#### Analysis of Statement 2
Value . Divided by : . Remainder (Satisfied). Divided by : . Remainder (Satisfied). Thus, statement is **correct**.
#### Analysis of Statement 3
Value . Divided by : . Remainder (**Not satisfied**, should be ). Divided by : . Remainder (**Not satisfied**, should be ). Thus, statement is **incorrect**.
#### Analysis of Statement 4
Value . Divided by : . Remainder (Satisfied). Divided by : . Remainder (Satisfied). Thus, statement is **correct**.
Since statements and are correct, the correct answer is **If and are correct**.
---