React Basic

React Basic

University

9 Qs

quiz-placeholder

Similar activities

Frameworks de desarrollo de aplicaciones

Frameworks de desarrollo de aplicaciones

University

11 Qs

JS IF ELSE FOR LOOPS

JS IF ELSE FOR LOOPS

University

13 Qs

Quiz JS DW v1

Quiz JS DW v1

University

10 Qs

Как хорошо ты знаешь HTML ?

Как хорошо ты знаешь HTML ?

University

10 Qs

Week 4 - Floats, Layout and Responsive Design

Week 4 - Floats, Layout and Responsive Design

University

8 Qs

Preprocessor CSS

Preprocessor CSS

University

10 Qs

Desenvolvimento Web II - Aula de Abertura

Desenvolvimento Web II - Aula de Abertura

University

13 Qs

Arduino e API NodeJS

Arduino e API NodeJS

University

10 Qs

React Basic

React Basic

Assessment

Quiz

Computers

University

Hard

Created by

Savan Patel

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used in React.js to increase performance?

Virtual DOM

Original DOM

Both

None

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is ReactJS?

Framework

Library

Language

None

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the one which is used to pass data to components from outside

setState

PropTypes

Render with Arguments

Props

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the command used to create a react app.

npm install -g create-react-app

npx create-react-app appName

Both

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

JSX stands for _______?

JavaScript XML

JSON XML

JavaScript

JavaScript and AngularJS

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In which method we call our initial API?

useState

useLayoutEffect

Render()

useEffect

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

React component can return only ___ element/s?

1

2

3

4

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which tag doesn't have any effects?

div

span

React.Fragment

h1

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you select all p elements inside div tag?

div + p

div p

div ~ p

div > p