Q. What will happen if you call `setState` inside `render()`?
β
Correct Answer: (B)
It will cause an infinite loop
Explanation: Calling `setState` inside `render()` leads to infinite re-renders.