Question: Which choice will not cause a React component to rerender?
- if the component calls `this.setState(...)`
- the value of one of the component's props changes
- if the component calls `this.forceUpdate()`
- one of the component's siblings rerenders
Answer: The correct answer of the above question is Option D:one of the component's siblings rerenders