21. Write a React component that displays the name of a selected option from a hardcoded dropdown menu.
Required Input:
Options: ['React', 'Angular', 'Vue']
Expected Output:
Initially: Selected: React
After selection: Selected: [chosen option]
Code In React
Need help ?
Click on Hint to solve the question.
22. Create a component that fetches and displays hardcoded data from a mock API.
Required Input:
Hardcoded mock data:
{ 'id': 1, 'title': 'Learn React', 'completed': true }
Expected Output:
Task: Learn React, Completed: Yes
Code In React
Need help ?
Click on Hint to solve the question.
23. Build a component that displays a loading message for 3 seconds before showing the content.
Expected Output:
Initially: Loading...
After 3 seconds: Content loaded!
Code In React
Need help ?
Click on Hint to solve the question.
24. Write a React component that changes its content based on the value of a hardcoded text input field.
Required Input:
Initial input value: 'Hello'
Expected Output:
The <p> tag updates dynamically as the user types.
Code In React
Need help ?
Click on Hint to solve the question.
25. Create a React component that displays 'Welcome!' for 5 seconds and then changes to 'Goodbye!'.
Expected Output:
Initially: Welcome!
After 5 seconds: Goodbye!
Code In React
Need help ?
Click on Hint to solve the question.
26. Build a React component that increments or decrements a number using '+' and '-' buttons.
Expected Output:
Initially: Value: 0
Clicking '+' increments and '-' decrements the value.
Code In React
Need help ?
Click on Hint to solve the question.
27. Write a component that dynamically renders a list of user profiles passed as hardcoded props.
Required Input:
users = [{ id: 1, name: 'Alice' }, { id: 2, name: 'Bob' }]
Expected Output:
Alice
Bob
Code In React
Need help ?
Click on Hint to solve the question.
28. Create a component that displays an error message when a specific condition is met.
Required Input:
errorCondition = true
Expected Output:
Error: Something went wrong! (when the condition is true)
Code In React
Need help ?
Click on Hint to solve the question.
29. Build a component that highlights a <div> when a checkbox is selected.
Expected Output:
The <div> has a yellow background when the checkbox is checked.
Code In React
Need help ?
Click on Hint to solve the question.
30. Write a React component that renders a button with a random label every time the page is refreshed.
Required Input:
labels = ['Click me!', 'Press here!', 'Try me!']
Expected Output:
The button displays a random label from the array.
Code In React
Need help ?
Click on Hint to solve the question.