By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
A FICO score is a three-digit number (300–850) that lenders use to assess your creditworthiness. It’s built from five key components: Payment History, Credit Utilization, Length of Credit History, Credit Mix, and New Credit Inquiries.
You use this knowledge to improve your score, qualify for loans, negotiate better rates, or build financial automation tools (e.g., credit monitoring bots, loan approval models).
FICO’s algorithm weighs the five components to generate a score. Here’s the flow:
Example Impact: - Missed payment → Payment History drops → Score falls 50–100 points.- Pay down credit card → Utilization drops → Score rises 20–40 points.
plaintext Utilization = (Total Balances / Total Limits) * 100
Expected Outcome: - Short-term (1–3 months): Utilization drops → score rises.- Long-term (6–12 months): On-time payments and older accounts → score stabilizes at a higher range.
python def check_utilization(balance, limit): utilization = (balance / limit) * 100 if utilization > 30: print(f"Warning: {utilization:.1f}% utilization!")
Example: A bank approves applicants with scores >700 instantly; others go to manual review.
Fraud Detection
Example: A credit card company flags a user’s score dropping 100 points in a month.
Renting an Apartment
You have two credit cards: - Card A: $500 balance, $1,000 limit.- Card B: $0 balance, $5,000 limit.What’s your total credit utilization?
A) 5% B) 10% C) 25% D) 50%
Correct Answer: B) 10%Explanation: Total balance = $500. Total limit = $1,000 + $5,000 = $6,000.Utilization = ($500 / $6,000) * 100 = 8.3% (rounded to 10%).
Why the Distractors Are Tempting: - A) 5%: Only considers Card B’s limit.- C) 25%: Uses Card A’s individual utilization ($500/$1,000).- D) 50%: Ignores Card B’s limit entirely.
Which action will most likely hurt your credit score the most in the short term?
A) Closing a 10-year-old credit card.B) Applying for a new credit card.C) Missing a $20 minimum payment.D) Using 40% of your credit limit.
Correct Answer: C) Missing a $20 minimum payment.Explanation: Payment history is the heaviest factor (35%). Even a small missed payment can drop your score 50–100 points. The others have smaller/more gradual impacts.
Why the Distractors Are Tempting: - A): Hurts long-term (shortens credit history) but not immediately.- B): Causes a hard inquiry (10% of score) but effect is minor.- D): Utilization >30% hurts (30% of score) but less than a missed payment.
You’re shopping for a mortgage and apply to 5 lenders in 2 weeks. How will this affect your FICO score?
A) Each application counts as a separate hard inquiry → score drops 25+ points.B) All applications count as one inquiry → minimal score impact.C) Only the first application counts → no impact after that.D) Mortgage applications don’t affect scores.
Correct Answer: B) All applications count as one inquiry → minimal score impact.Explanation: FICO groups rate-shopping inquiries (mortgages, auto loans, student loans) into a single inquiry if done within 14–45 days.
Why the Distractors Are Tempting: - A): True for credit cards, but not for rate shopping.- C): Incorrect—all applications within the window are grouped.- D): False—mortgage applications do affect scores (but minimally if grouped).
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.