11.
What is the role of components in building React applications?
Components help in organizing and reusing code
Components provide the structure and appearance of the user interface
Components handle the logic and data manipulation
Components enhance the performance of the application
Correct: A, B, C
Components play a crucial role in building React applications. They help in organizing and reusing code by splitting the user interface into smaller, manageable pieces. Components also provide the structure and appearance of the user interface, as well as handle the logic and data manipulation. By breaking down the application into components, it becomes easier to understand, maintain and enhance the application.