Open In App

Crossword Puzzle Of The Week #22 (for ReactJS)

Last Updated : 08 Sep, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

In this issue of  Crossword Puzzle of the Week, we will dive into the topic of ReactJSThe solution to the crossword puzzle is provided at the end.

22-_2_.webp

HINTS:

DOWN:

1. _____ are simple classes (made up of multiple functions that add functionality to the application). 
2. The _____ is an instance of React Component Class that can be defined as an object of a set of observable properties that control the behavior of the component.
3. The _____ Hook can be used to keep track of strings, numbers, booleans, arrays, objects, and any combination of these.
4. The _____Hook allows you to perform side effects in your components.
5. React uses the _____ to interact with the user and provides additional functionality such as preventing the default behavior of the form which refreshes the browser after the form is submitted.
6. _____ is the stage of rendering the JSX returned by the render method itself.

ACROSS:

7. React is a declarative, efficient, and flexible _____ library for building user interfaces.
8. _____ let developers use state and other React features without writing a class.
9. React allows us to pass information to a Component using something called _____.
10.  React _____ is a feature in React that allows you to return multiple elements from a React component by allowing you to group a list of children without adding extra nodes to the DOM.
11. _____ provides a way to pass data through the component tree without having to pass props down manually at every level.
12. ______ is a method in react lifecycle. Whenever a change is made to the state or props of a React component, the component is rerendered.

Solution for Crossword Puzzle #22:

22-_1_.webp

ANSWERS:

DOWN:

1. COMPONENTS

2. STATE

3. USESTATE

4. USEEFFECT

5. FORMS

6. MOUNTING

ACROSS:

7. JAVASCRIPT

8. HOOKS

9. PROPS

10. FRAGMENTS

11. CONTEXT

12. UPDATION


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads