11. Write a component that implements a custom debounce function and displays the debounced input value.
Required Input:
Hardcoded delay: 500ms
Expected Output:
The input value updates only after the user stops typing for 500ms.
Code In React
Need help ?
Click on Hint to solve the question.
12. Create a component that calculates all pairs in a hardcoded array whose sum equals a hardcoded target value.
Required Input:
Array: [1, 2, 3, 4, 5]
Target: 6
Expected Output:
Pairs: [[1, 5], [2, 4]]
Code In React
Need help ?
Click on Hint to solve the question.
13. Write a component that sorts a hardcoded array of objects by a nested property (e.g., person.address.zipcode) and displays the sorted array.
Required Input:
Array:
[
{ "name": "Alice", "address": { "zipcode": 12345 } },
{ "name": "Bob", "address": { "zipcode": 54321 } },
{ "name": "Charlie", "address": { "zipcode": 11111 } }
]
Expected Output:
Sorted Array: [{ name: 'Charlie' }, { name: 'Alice' }, { name: 'Bob' }]
Code In React
Need help ?
Click on Hint to solve the question.
14. Create a component that generates all permutations of a hardcoded string and displays them.
Required Input:
String: 'abc'
Expected Output:
Permutations: ['abc', 'acb', 'bac', 'bca', 'cab', 'cba']
Code In React
Need help ?
Click on Hint to solve the question.
15. Build a component that finds the common elements between two hardcoded arrays and displays them.
Required Input:
Arrays: [1, 2, 3, 4], [3, 4, 5, 6]
Expected Output:
Common Elements: [3, 4]
Code In React
Need help ?
Click on Hint to solve the question.
16. Write a component that determines whether a hardcoded matrix is symmetric and displays the result.
Required Input:
[[1, 2, 3], [2, 4, 5], [3, 5, 6]]
Expected Output:
Is Symmetric: true
Code In React
Need help ?
Click on Hint to solve the question.
17. Create a component that checks if a hardcoded number is a prime number and displays the result.
Required Input:
29
Expected Output:
Is Prime: true
Code In React
Need help ?
Click on Hint to solve the question.
18. Write a component that computes the transpose of a hardcoded 2D array and displays it.
Required Input:
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
Expected Output:
Transposed Array: [[1, 4, 7], [2, 5, 8], [3, 6, 9]]
Code In React
Need help ?
Click on Hint to solve the question.
19. Create a component that takes a hardcoded array of intervals and merges any overlapping intervals.
Required Input:
[[1, 3], [2, 6], [8, 10], [15, 18]]
Expected Output:
Merged Intervals: [[1, 6], [8, 10], [15, 18]]
Code In React
Need help ?
Click on Hint to solve the question.
20. Write a component that identifies the first non-repeating character in a hardcoded string and displays it.
Required Input:
"swiss"
Expected Output:
First Non-Repeating Character: w
Code In React
Need help ?
Click on Hint to solve the question.