React Basic

React Basic

University

9 Qs

quiz-placeholder

Similar activities

MERN STACK

MERN STACK

University

5 Qs

sample test

sample test

University

10 Qs

React Workshop DSC NTU part 1

React Workshop DSC NTU part 1

University

10 Qs

DOM manipulation review

DOM manipulation review

University

10 Qs

How Much You Know ?

How Much You Know ?

11th Grade - Professional Development

10 Qs

DAW Introducción a las aplicaciones Web - 4

DAW Introducción a las aplicaciones Web - 4

University

9 Qs

Web Apps 02 - MeteorJS

Web Apps 02 - MeteorJS

University

12 Qs

React JS

React JS

University

5 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