11. Build a component that changes the background color of a <div> when hovered over.
Expected Output:
The <div> changes its background color to blue when hovered over.
Code In React
Need help ?
Click on Hint to solve the question.
12. Write a React component that conditionally displays 'Logged In' or 'Logged Out' based on a hardcoded boolean state.
Required Input:
isLoggedIn = true
Expected Output:
Logged In (if true) or Logged Out (if false).
Code In React
Need help ?
Click on Hint to solve the question.
13. Create a button that disables itself after being clicked once.
Expected Output:
The button text changes to 'Clicked!' and the button becomes disabled.
Code In React
Need help ?
Click on Hint to solve the question.
14. Build a component that takes two hardcoded props, firstName and lastName, and displays the full name.
Required Input:
firstName = 'John', lastName = 'Doe'
Expected Output:
Full Name: John Doe
Code In React
Need help ?
Click on Hint to solve the question.
15. Write a React component that displays a greeting based on the current hour (e.g., 'Good Morning,' 'Good Afternoon').
Expected Output:
Good Morning, Good Afternoon, or Good Evening based on the time of day.
Code In React
Need help ?
Click on Hint to solve the question.
16. Create a component that renders a paragraph with a random color every time a button is clicked.
Expected Output:
The paragraph text color changes to a random color when the button is clicked.
Code In React
Need help ?
Click on Hint to solve the question.
17. Build a simple React component that takes a hardcoded title prop and displays it in an <h1> tag.
Required Input:
title = 'Welcome to React'
Expected Output:
Welcome to React
Code In React
Need help ?
Click on Hint to solve the question.
18. Write a component that renders a checkbox and displays 'Checked' or 'Unchecked' based on its state.
Expected Output:
Unchecked (initially), changes to Checked when the checkbox is checked.
Code In React
Need help ?
Click on Hint to solve the question.
19. Create a React component that counts how many times a specific key (e.g., 'a') is pressed on the keyboard.
Expected Output:
Key 'a' pressed: 0 (increases each time 'a' is pressed).
Code In React
Need help ?
Click on Hint to solve the question.
20. Build a React component that shows or hides text when a button is clicked.
Expected Output:
A button toggles the visibility of 'This is hidden text.'
Code In React
Need help ?
Click on Hint to solve the question.