11. Create a component that fetches paginated data from a hardcoded API and displays it with 'Next' and 'Previous' buttons.
Required Input:
{ "page1": ["Item 1", "Item 2", "Item 3"], "page2": ["Item 4", "Item 5", "Item 6"] }
Expected Output:
Displays items from the current page and updates on 'Next' or 'Previous' button clicks.
Code In React
Need help ?
Click on Hint to solve the question.
12. Create a component that renders a list of items with expandable/collapsible details.
Required Input:
[{ "title": "Item 1", "details": "Details about Item 1" }, { "title": "Item 2", "details": "Details about Item 2" }]
Expected Output:
Clicking an item toggles the visibility of its details.
Code In React
Need help ?
Click on Hint to solve the question.
13. Create a component that tracks the user's mouse position on the screen.
Required Input:
No input.
Expected Output:
Displays real-time mouse coordinates.
Code In React
Need help ?
Click on Hint to solve the question.
14. Create a component that displays a chart using a library like Recharts.
Required Input:
[{ "name": "Jan", "value": 400 }, { "name": "Feb", "value": 300 }, { "name": "Mar", "value": 200 }]
Expected Output:
A bar chart showing the data.
Code In React
Need help ?
Click on Hint to solve the question.
15. Create a component that allows users to upload an image file and preview it before submission.
Required Input:
An image file selected by the user.
Expected Output:
The selected image is displayed as a preview below the upload button.
Code In React
Need help ?
Click on Hint to solve the question.
16. Create a to-do list component that allows users to add, edit, and delete tasks.
Required Input:
Initial tasks: ["Task 1", "Task 2"]
Expected Output:
Users can add new tasks, edit existing tasks, and delete tasks from the list.
Code In React
Need help ?
Click on Hint to solve the question.
17. Create a multi-select dropdown that lets users select multiple items from a predefined list.
Required Input:
List of items: ["Option 1", "Option 2", "Option 3"]
Expected Output:
Displays selected items below the dropdown.
Code In React
Need help ?
Click on Hint to solve the question.
18. Create a component that dynamically sorts a list of items in ascending or descending order based on a button click.
Required Input:
List of numbers: [4, 2, 9, 1]
Expected Output:
Sorted list updates based on ascending or descending order.
Code In React
Need help ?
Click on Hint to solve the question.
19. Create a component that fetches and displays a random joke from a mock API.
Required Input:
{ "joke": "Why did the chicken cross the road? To get to the other side!" }
Expected Output:
A random joke is displayed when the button is clicked.
Code In React
Need help ?
Click on Hint to solve the question.
20. Create a component that highlights the list items clicked by the user.
Required Input:
List of items: ["Item 1", "Item 2", "Item 3"]
Expected Output:
The clicked item changes its background color to yellow.
Code In React
Need help ?
Click on Hint to solve the question.