Study with proper time management

Subject: Physics 1st paper

Author: Dr. Shahjahan Tapan

Instructions : Read any 2 lessons with full mcq and cq practises.

Time : 2 hrs

Subject: Physics 2nd paper

Author: Dr. Amir Hossain khan

Instructions : Read any 1 lesson with full mcq and cq practises.

Time : 1 hrs

Subject: Chemistry 1st paper

Author: Dr. Saroj Kanti Sign Hazari

Instructions : Complete 3 lessons with practising all reaction terms.

Time : 2 hrs

Subject: Chemistry 2nd paper

Author: Dr. Sanjit Kumar Guha

Instructions : Complete 1 lessons with al chemical reactions.

Time : 1 hrs

Subject: Math 1st paper

Author: MA Jobbar

Instructions : Practice any 2 lessons with exercise and example problem.

Time : 3 hrs

Subject: Math 2nd paper

Author: MA Jobbar

Instructions : Practice important exercise and example problem.

Time : 2 hrs

Subject: English 1st paper

Author: Board Book

Instructions : Read any 6 lessons with model question solving.

Time : 2 hrs

TI
Tabassum Islam

Tokyo,Japan

Take Break Time (in mnts):

Total Time : 0hrs

Breake Time : 0 mnt

Question: How does react work?

Answer: A React application is made of multiple components, each responsible for rendering a small, reusable piece of HTML. Components can be nested within other components to allow complex applications to be built out of simple building blocks. A component may also maintain an internal state

Question: What is the difference between props and state?

Answer: Props are read-only components. It is an object which stores the value of attributes of a tag and work similar to the HTML attributes. It allows passing data from one component to other components. It is similar to function arguments and can be passed to the component the same way as arguments passed in a function. Props are immutable so we cannot modify the props from inside the component, on the other side The state is an updatable structure that is used to contain data or information about the component and can change over time. The change in state can happen as a response to user action or system event. It is the heart of the react component which determines the behavior of the component and how it will render. A state must be kept as simple as possible. It represents the components local state or information. It can only be accessed or modified inside the component or by the component directly

Question: Write the uses of Useeffect

Answer: Besides fetching data UseEffect can be used in Reading from local storage Registering and deregistering event listeners