Reported October 2024
Amazon

About Mortgage

Reported by candidates from Amazon's online assessment. Pattern, common pitfall, and the honest play if you blank under the timer.

Get StealthCoderRuns invisibly during the live Amazon OA. Under 2s to a working solution.
Founder's read

Amazon's "About Mortgage" question hit the OA circuit in October 2024, and it's a pattern-recognition problem disguised as a finance question. You're not building a mortgage calculator. You're parsing strings or arrays to extract and manipulate numeric data, then applying a mathematical rule or formula. The trick is figuring out what the problem is actually asking before you code. StealthCoder reads the full prompt on screen and flags the pattern in seconds, so you don't waste time on false starts.

Pattern and pitfall

Without the full problem text, the most likely structure is string parsing, array indexing, or basic arithmetic applied to mortgage terms like principal, rate, or payment. The common pitfall: candidates misread what the input represents or mix up the order of operations. Some OAs phrase this as "calculate monthly payment" or "determine total interest," which requires the correct formula. Others ask you to parse a string representation of a mortgage and extract or transform values. The real work is reading comprehension. Once you know the exact input and output, the code is usually straightforward arithmetic or simple iteration. StealthCoder acts as your safety net if you blank on the formula or misread the spec during the live OA.

Drill it cold or hedge it with StealthCoder. Either way, don't walk into the OA hoping you remember the trick.

If this hits your live OA

You can drill About Mortgage cold, or you can hedge it. StealthCoder runs invisibly during screen share and surfaces a working solution in under 2 seconds. The proctor sees the IDE. They don't see what's behind it. Made for the candidate who got the OA invite this morning and has 72 hours, not six months.

Get StealthCoder

Related leaked OAs

⏵ The honest play

You've seen the question. Make sure you actually pass Amazon's OA.

Amazon reuses patterns across OAs. Made for the candidate who got the OA invite this morning and has 72 hours, not six months. Works on HackerRank, CodeSignal, CoderPad, and Karat.

About Mortgage FAQ

Is this a math problem or a coding problem?+

Both. You'll write code that applies a mathematical formula, likely the standard amortization equation. The coding part is usually straightforward. The hard part is parsing the problem statement correctly and knowing (or deriving) the formula. Don't overcomplicate it.

What should I watch out for?+

Rounding errors. Mortgage problems often involve decimal precision. Check whether you should round monthly payments or interest to 2 decimal places. Also verify the input format: is it a single string, separate parameters, or a structured object. Misreading that costs you 5 minutes.

How do I prepare in 48 hours?+

Refresh the basic mortgage formula: monthly payment = principal * [rate(1+rate)^n] / [(1+rate)^n - 1]. Understand what principal, annual rate, and loan term mean. Practice parsing strings in your language of choice. Then stop. You'll either know the pattern or you won't.

Will there be edge cases?+

Probably. Zero interest rate, very short loan terms, or very large principal amounts. Make sure your code doesn't divide by zero or overflow. Test with simple numbers first, like a 100k loan at 5 percent for 30 years.

Is this still asked by Amazon?+

Yes. Finance and calculation problems appear regularly in Amazon OAs. The specific wording changes, but the pattern is consistent. If you see "mortgage," "loan," or "payment," you're probably doing arithmetic plus string or array manipulation.

Problem reported by candidates from a real Online Assessment. Sourced from a publicly-available candidate-aggregated repository. Not affiliated with Amazon.

OA at Amazon?
Invisible during screen share
Get it