`True`, because the numeric values are equal✓Correct answer
`False` because the operand types differ
A `TypeError` because Python does not auto-convert them
`3.0` because the integer is converted and returned
Explanation
Integers and floating-point numbers can compare by numeric value, and these two operands both represent three, so equality is true. Their differing exact types do not force inequality or make the comparison invalid.