The one idea
A confusion matrix shows where your model is right and where it is wrong. It is the fastest way to see the type of mistakes your model makes.
For a binary classifier, read it as actual class versus predicted class. The off-diagonal cells are the mistakes.
The four cells
Imagine a model that predicts whether a UPI transaction is fraud. Positive means fraud. Negative means not fraud.
True positive: fraud correctly predicted as fraud. True negative: normal transaction correctly predicted as normal. False positive: normal transaction wrongly flagged as fraud. False negative: fraud missed as normal.