# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-5/9 Exercises: Try Out - Set 5: Real exam simulation to sharpen your skills and build confidence. - Problem 9 --- ## Exercise 9 ### Question import { QuestionGraph } from "../graph"; export const metadata = { title: "Problem 9", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; Given the following graph: Given statements: 1. Point . 2. Point . 3. Point . 4. Point . The correct statement is ... ### Choices - [x] $$1$$, $$2$$, and $$3$$ - [ ] $$1$$ and $$3$$ - [ ] $$2$$ and $$4$$ - [ ] $$4$$ only - [ ] $$1$$, $$2$$, $$3$$, and $$4$$ ### Answer & Explanation export const metadata = { title: "Solution to Problem 9", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; We verify each statement based on the functions provided in the graph: Exponential function: Linear function: #### Checking Point A Point is the y-intercept of the exponential curve (). So, . Statement is **TRUE**. #### Checking Point B Point is the x-intercept of the exponential curve (). So, . Statement is **TRUE**. #### Checking Point C Point is the x-intercept of the linear line (). So, . Statement is **TRUE**. #### Checking Point D Point is the intersection point or a point on the line. The statement claims . If we test coordinate into the line equation : The result is , not . Thus, point does not lie on the line . Statement is **FALSE**. Conclusion: Statements , , and are correct. ---