LinkedIn skill assessment answers and questions — React.js
“React.js has revolutionized the way web applications are built, offering developers a powerful and efficient library for creating dynamic user interfaces. В этом подробном руководстве, мы рады представить тщательно подобранную коллекцию вопросы для оценки навыков а также ответы за React.js.
Whether you’re a front-end developer looking to enhance your skills or a newcomer eager to explore the world of modern web development, this resource is designed to help you master React.js and its innovative features. Присоединяйтесь к нам, мы углубляемся в основы React.js, including component-based architecture, state management, virtual DOM, и более, empowering you to leverage the full potential of this popular JavaScript library.”
Q1. If you want to import just the Component from the React library, what syntax do you use?
-
import React.Component from 'react'
-
import [ Component ] from 'react'
-
import Component from 'react'
-
import { Component } from 'react'
If a function component should always render the same way given the same props, what is a simple performance optimization available for it?
2 квартал.- Wrap it in the
React.memo
higher-order component. - Implement the
useReducer
Hook. - Implement the
useMemo
Hook. - Implement the
shouldComponentUpdate
lifecycle method.
How do you fix the syntax error that results from running this code?
3 квартал.const person =(firstName, lastName) =>
{
first: firstName,
last: lastName
}
console.log(person("Jill", "Wilson"))
- Wrap the object in parentheses.
- Call the function from another file.
- Add a return statement before the first curly brace.
- Replace the object with an array.
If you see the following import in a file, what is being used for state management in the component?
4 квартал.import React, {useState} from 'react';
- React Hooks
- stateful components
- математика
- class components
Using object literal enhancement, you can put values back into an object. When you log person to the console, what is the output?
Q5.const name = 'Rachel';
const age = 31;
const person = { name, age };
console.log(person);
-
{{name: "Rachel", age: 31}}
-
{name: "Rachel", age: 31}
-
{person: "Rachel", person: 31}}
-
{person: {name: "Rachel", age: 31}}
What is the testing library most often associated with React?
Q6.- Mocha
- Chai
- Sinon
- Jest
To get the first item from the array (“приготовление еды”) using array destructuring, how do you adjust this line?
Q7.const topics = ['cooking', 'art', 'history'];
-
const first = ["cooking", "art", "history"]
-
const [] = ["cooking", "art", "history"]
-
const [, first]["cooking", "art", "history"]
-
const [first] = ["cooking", "art", "history"]
How do you handle passing through the component tree without having to pass props down manually at every level?
Q8.- React Send
- React Pinpoint
- React Router
- React Context
What should the console read when the following code is run?
Q9.const [, , animal] = ['Horse', 'Mouse', 'Cat'];
console.log(animal);
- Horse
- Cat
- Mouse
- undefined
What is the name of the tool used to take JSX and turn it into createElement calls?
Q10.- JSX Editor
- ReactDOM
- Browser Buddy
- Babel
Why might you use useReducer over useState in a React component?
Вам нужно будет достичь как минимум.- when you want to replace Redux
- when you need to manage more complex state in an app
- when you want to improve performance
- when you want to break your production app
Which props from the props object is available to the component with the following syntax?
Q12.<Message {...props} />
- any that have not changed
- all of them
- child props
- any that have changed
Consider the following code from React Router. What do you call :id in the path prop?
Q13.<Route path="/:id" />
- This is a route modal
- This is a route parameter
- This is a route splitter
- This is a route link
If you created a component called Dish and rendered it to the DOM, what type of element would be rendered?
Q14.function Dish() {
return <h1>Mac and Cheese</h1>;
}
ReactDOM.render(<Dish />, document.getElementById('root'));
-
div
- раздел
- component
-
h1
What does this React element look like given the following code? (Alternative: Given the following code, what does this React element look like?)
Q15.React.createElement('h1', null, "What's happening?");
-
<h1 props={null}>What's happening?</h1>
-
<h1>What's happening?</h1>
-
<h1 id="component">What's happening?</h1>
-
<h1 id="element">What's happening?</h1>
What property do you need to add to the Suspense component in order to display a spinner or loading state?
Q16.function MyComponent() {
return (
<Suspense>
<div>
<Message />
</div>
</Suspense>
);
}
- lazy
- loading
- fallback
- spinner
How would you describe the message variable wrapped in curly braces below?
Q17.const message = 'Hi there';
const element = <p>{message}</p>;
- a JS function
- a JS element
- a JS expression
- a JSX wrapper
What can you use to handle code splitting?
Q18.-
React.memo
-
React.split
-
React.lazy
-
React.fallback
When do you use useLayoutEffect
?
Q19. - to optimize for all devices
- to complete the update
- to change the layout of the screen
- when you need the browser to paint before the effect runs
[Источник] (https://react.dev/reference/react/useLayoutEffect) “useLayoutEffect is a version of useEffect that fires before the browser repaints the screen.”
[Каждый слой и все они выровнены одновременно]The correct answer to the question “When do you use useLayoutEffect?” является:
When you need to change the layout of the screen.
useLayoutEffect is used when you need to perform DOM mutations that rely on the updated layout of the elements. It allows you to make changes to the DOM synchronously before the browser performs its painting step. This can be useful when you need to measure or manipulate the layout, such as accessing element dimensions or positions, calculating scroll offsets, or performing other operations that require up-to-date layout information.
The other option provided as answer is not accurate:
“When you need the browser to paint before the effect runs” is not correct. The purpose of useLayoutEffect is to run the effect synchronously after the DOM updates but before the browser paints, allowing you to make layout-related changes before the visual rendering occurs.
Каждый слой и все они выровнены одновременно: useLayoutEffect
gets executed до the useEffect
hook without much concern for DOM mutation. Even though the React hook useLayoutEffect
is set after the useEffect
Hook, it gets triggered first!
What is the difference between the click behaviors of these two buttons (assuming that this.handleClick is bound correctly)?
Q20.A. <button onClick={this.handleClick}>Click Me</button>
B. <button onClick={event => this.handleClick(event)}>Click Me</button>
- Button A will not have access to the event object on click of the button.
- Button B will not fire the handler this.handleClick successfully.
- Button A will not fire the handler this.handleClick successfully.
- There is no difference.
How do you destructure the properties that are sent to the Dish component?
Q21.function Dish(props) {
return (
<h1>
{props.name} {props.cookingTime}
</h1>
);
}
-
function Dish([name, cookingTime]) { return <h1>{name} {cookingTime}</h1>; }
-
function Dish({name, cookingTime}) { return <h1>{name} {cookingTime}</h1>; }
-
function Dish(props) { return <h1>{name} {cookingTime}</h1>; }
-
function Dish(...props) { return <h1>{name} {cookingTime}</h1>; }
When might you use React.PureComponent
?
Q22. - when you do not want your component to have props
- when you have sibling components that need to be compared
- when you want a default implementation of
shouldComponentUpdate()
- when you do not want your component to have state
Why is it important to avoid copying the values of props into a component’s state where possible?
Q23.- because you should never mutate state
- так как
getDerivedStateFromProps()
is an unsafe method to use - because you want to allow a component to update in response to changes in the props
- because you want to allow data to flow back up to the parent
What is the children prop?
Q24.- a property that adds child components to state
- a special property that JSX creates on components that contain both an opening tag and a closing tag, referencing it’s contents.
- a property that lets you set an array as a property
- a property that lets you pass data to child elements
Which attribute is React’s replacement for using innerHTML in the browser DOM?
Q25.- injectHTML
- dangerouslySetInnerHTML
- weirdSetInnerHTML
- strangeHTML
Which of these terms commonly describe React applications?
Q26.- declarative
- integrated
- закрыто
- imperative
When using webpack, why would you need to use a loader?
Q27.- to put together physical file folders
- to preprocess files
- to load external data
- to load the website into everyone’s phone
A representation of a user interface that is kept in memory and is synced with the “настоящий” DOM is called what?
Q28.- virtual DOM
- ДОМ
- virtual elements
- shadow DOM
You have written the following code but nothing is rendering. How do you fix this problem?
Q29.const Heading = () => {
<h1>Hello!</h1>;
};
- Add a render function.
- Change the curly braces to parentheses or add a return statement before the
h1
тег. - Move the
h1
to another component. - Surround the
h1
вdiv
.
To create a constant in JavaScript, which keyword do you use?
Q30.- const
- X-перехватывает
- constant
- var
What do you call a React component that catches JavaScript errors anywhere in the child component tree?
Q31.- error bosses
- error catchers
- error helpers
- error boundaries
In which lifecycle method do you make requests for data in a class component?
Q32.- constructor
- componentDidMount
- componentWillReceiveProps
- componentWillMount
React components are composed to create a user interface. How are components composed?
довольно часто____.- by putting them in the same file
- by nesting components
- with webpack
- with code splitting
All React components must act like _ with respect to their props.
Q34.- monads
- pure functions
- recursive functions
- higher-order functions
[e.target.id]
called in this code snippet?
Каждый слой и все они выровнены одновременно. Что const handleChange = (e) => {
setState((prevState) => ({ ...prevState, [e.target.id]: e.target.value }));
};
- a computed property name
- a set value
- a dynamic key
- a JSX code string
What is the name of this component?
Q36.class Clock extends React.Component {
render() {
return <h1>Look at the time: {time}</h1>;
}
}
- Clock
- It does not have a name prop.
- React.Component
- Component
What is sent to an Array.map()
функция?
Q37. - a callback function that is called once for each element in the array
- the name of another array to iterate over
- the number of times you want to call the function
- a string describing what the function should do
Why is it a good idea to pass a function to setState
instead of an object?
Q38. - It provides better encapsulation.
- It makes sure that the object is not mutated.
- It automatically updates a component.
-
setState
is asynchronous and might result in out of sync values.
Каждый слой и все они выровнены одновременно: Потому что this.props
а также this.state
may be updated asynchronously, you should not rely on their values for calculating the next state.
What package contains the render() function that renders a React element tree to the DOM?
Q39.-
React
-
ReactDOM
-
Render
-
DOM
How do you set a default value for an uncontrolled form field?
Q40.- Использовать
value
property. - Использовать
defaultValue
property. - Использовать
default
property. - It assigns one automatically.
What do you need to change about this code to get this code to run?
Q41.const clock = (props) => {
return <h1>Look at the time: {props.time}</h1>;
};
- Add quotes around the return value
- Удалять
this
- Remove the render method
- Capitalize
clock
Каждый слой и все они выровнены одновременно: In JSX, lower-case tag names are considered to be HTML tags.
Which Hook could be used to update the document’s title?
Q42.-
useEffect(function updateTitle() { document.title = name + ' ' + lastname; });
-
useEffect(() => { title = name + ' ' + lastname; });
-
useEffect(function updateTitle() { name + ' ' + lastname; });
-
useEffect(function updateTitle() { title = name + ' ' + lastname; });
Which function from React can you use to wrap Component imports to load them lazily?
Q43.-
fallback
-
split
-
lazy
-
memo
How do you invoke setDone only when component mounts, using hooks?
Q44.function MyComponent(props) {
const [done, setDone] = useState(false);
return <h1>Done: {done}</h1>;
}
-
useEffect(() => { setDone(true); });
-
useEffect(() => { setDone(true); }, []);
-
useEffect(() => { setDone(true); }, [setDone]);
-
useEffect(() => { setDone(true); }, [done, setDone]);
handleClick
is being called instead of passed as a reference. How do you fix this?
Q45. В настоящее время, <button onClick={this.handleClick()}>Click this</button>
-
<button onClick={this.handleClick.bind(handleClick)}>Click this</button>
-
<button onClick={handleClick()}>Click this</button>
-
<button onClick={this.handleClick}>Click this</button>
-
<button onclick={this.handleClick}>Click this</button>
Which answer best describes a function component?
Q46.- A function component is the same as a class component.
- A function component accepts a single props object and returns a React element.
- A function component is the only way to create a component.
- A function component is required to create a React component.
Which library does the fetch()
function come from?
Q47. - FetchJS
- ReactDOM
- No library.
fetch()
is supported by most browsers. - Реагировать
What will happen when this useEffect Hook is executed, assuming name is not already equal to John?
Q48.useEffect(() => {
setName('John');
}, [name]);
- It will cause an error immediately.
- It will execute the code inside the function, but only after waiting to ensure that no other component is accessing the name variable.
- It will update the value of name once and not run again until name is changed from the outside.
- It will cause an infinite loop.
Which choice will not cause a React component to rerender?
Q49.- if the component calls
this.setState(...)
- the value of one of the component’s props changes
- if the component calls
this.forceUpdate()
- one of the component’s siblings rerenders
You have created a new method in a class component called handleClick, but it is not working. Which code is missing?
Q50.class Button extends React.Component{
constructor(props) {
super(props);
// Missing line
}
handleClick() {...}
}
-
this.handleClick.bind(this);
-
props.bind(handleClick);
-
this.handleClick.bind();
-
this.handleClick = this.handleClick.bind(this);
React does not render two sibling elements unless they are wrapped in a fragment. Below is one way to render a fragment. What is the shorthand for this?
Q51.<React.Fragment>
<h1>Our Staff</h1>
<p>Our staff is available 9-5 to answer your questions</p>
</React.Fragment>
- А
<...>
<h1>Our Staff</h1>
<p>Our staff is available 9-5 to answer your questions</p>
</...>
- В
<//>
<h1>Our Staff</h1>
<p>Our staff is available 9-5 to answer your questions</p>
<///>
- С
<>
<h1>Our Staff</h1>
<p>Our staff is available 9-5 to answer your questions</p>
</>
- D
<Frag>
<h1>Our Staff</h1>
<p>Our staff is available 9-5 to answer your questions</p>
</Frag>
If you wanted to display the count state value in the component, what do you need to add to the curly braces in the h1
?
Q52. class Ticker extends React.component {
constructor(props) {
super(props);
this.state = { count: 0 };
}
render() {
return <h1>{}</h1>;
}
}
- this.state.count
- count
- государство
- state.count
Per the following code, when is the Hello component assigned to greeting?
Q53.const greeting = isLoggedIn ? <Hello /> : null;
- никогда
- когда
isLoggedIn
is true - when a user logs in
- when the Hello function is called
In the following code block, what type is orderNumber?
Q54.ReactDOM.render(<Message orderNumber="16" />, document.getElementById('root'));
- string
- boolean
- объект
- количество
You have added a style property to the h1
but there is an unexpected token error when it runs. How do you fix this?
Q55. const element = <h1 style={ backgroundColor: "blue" }>Hi</h1>;
-
const element = <h1 style="backgroundColor: "blue""}>Hi</h1>;
-
const element = <h1 style={{backgroundColor: "blue"}}>Hi</h1>;
-
const element = <h1 style={blue}>Hi</h1>;
-
const element = <h1 style="blue">Hi</h1>;
Which function is used to update state variables in a React class component?
Q56.-
replaceState
-
refreshState
-
updateState
-
setState
Consider the following component. What is the default color for the star?
Q57.const Star = ({ selected = false }) => <Icon color={selected ? 'red' : 'grey'} />;
- При монтаже проводки такого не было.
- красный
- grey
- белый
What is the difference between the click behaviors of these two buttons(assuming that this.handleClick is not bound correctly)
Q58. A. <button onClick=this.handleClick>Click Me</button>
B. <button onClick={event => this.handleClick(event)}>Click Me</button>
-
Button A will not have access to the event object on click of the button
-
Button A will not fire the handler this.handleClick successfully
-
There is no difference
-
Button B will not fire the handler this.handleClick successfully
How would you add to this code, from React Router, to display a component called About?
Q59.- А
<Route path="/:id">
{' '}
<About />
</Route>
- В
<Route path="/tid" about={Component} />
- С
<Route path="/:id" route={About} />
- D
<Route>
<About path="/:id" />
</Route>
Which class-based component is equivalent to this function component?
Q60.const Greeting = ({ name }) => <h1>Hello {name}!</h1>;
- А
class Greeting extends React.Component {
constructor() {
return <h1>Hello {this.props.name}!</h1>;
}
}
- В
class Greeting extends React.Component {
<h1>Hello {this.props.name}!</h1>;
}
- С
class Greeting extends React.Component {
render() {
return <h1>Hello {this.props.name}!</h1>;
}
}
- D
class Greeting extends React.Component {
render({ name }) {
return <h1>Hello {name}!</h1>;
}
}
Give the code below, what does the second argument that is sent to the render function describe?
Q61.ReactDOM.render(
<h1>Hi<h1>,
document.getElementById('root')
)
- where the React element should be added to the DOM
- where to call the function
- where the root component is
- where to create a new JavaScript file
Why should you use React Router’s Link component instead of a basic <a>
tag in React?
Q62. - The link component allows the user to use the browser’s
Back
кнопка. - There is no difference–the
Link
component is just another name for the<a>
тег. - В
<a>
tag will cause an error when used in React. - В
<a>
tag triggers a full page reload, в то время какLink
component does not.
What is the first argument, x
, that is sent to the createElement
функция?
Q63. React.createElement(x, y, z);
- the element that should be created
- the order in which this element should be placed on the page
- the properties of the element
- data that should be displayed in the element
Which class-based lifecycle method would be called at the same time as this effect Hook?
Q64.useEffect(() => {
// do things
}, []);
- componentWillUnmount
- componentDidMount
- render
- componentDidUpdate
What is the name of the base component of this component?
Q65.class Comp extends React.Component {
render() {
return <h1>Look at the time: {time}</h1>;
}
}
- Comp
- h1
- React.Component
- Component
When using a portal, what is the first argument?
Q66.ReactDOM.createPortal(x, y);
- the current state
- the element to render
- the App component
- the page
setCount
?
Q67. Что const [count, setCount] = useState(0);
- the initial state value
- a variable
- a state object
- a function to update the state
What is the use of map function below?
Q68.const database = [{ data: 1 }, { data: 2 }, { data: 3 }];
database.map((user) => <h1>{user.data}</h1>);
- gives a map of all the entries in database
- returns a heading tag for every entry in the database containing it’s data
- returns one heading tag for all the entries in database
- checks which entry in the database is suitable for heading tag
Describe what is happening in this code?
Q69.const { name: firstName } = props;
- It is creating a new object that contains the same name property as the props object.
- It is assigning the value of the props object’s firstName property to a constant called name.
- It is retrieving the value of props.name.firstName.
- It is assigning the value of the props object’s name property to a constant called firstName.
What is wrong with this code?
Q70.const MyComponent = ({ names }) => (
<h1>Hello</h1>
<p>Hello again</p>
);
- React components cannot be defined using functions.
- React does not allow components to return more than one element.
- The component needs to use the return keyword.
- String literals must be surrounded by quotes.
When using a portal, what is the second argument?
Q71.ReactDOM.createPortal(x, y);
- the App component
- the page
- the current state
- the DOM element that exists outside of the parent component
Given this code, what will be printed in the <div>
тег?
Контроль опасностей технологической безопасности. const MyComponent = ({ children }) => (
<div>{children.length}</div>
);
...
<MyComponent>
<p>
Hello <span>World!</span>
</p>
<p>Goodbye</p>
</MyComponent>
- It will produce an error saying “cannot read property “длина” of undefined.”
- 1
- undefined
- 2
What is this pattern called?
Q73.const [count, setCount] = useState(0);
- object destructuring
- array destructuring
- spread operating
- code pushing
What is the first file loaded by the browser in a basic React project?
Контроль опасностей технологической безопасности.- src/App.js
- src/index.js
- public/manifest.json
- public/index.html
The code below is rendering nothing and generates this error: “ReactDOM is not defined.” How do you fix this issue?
Q75.import React from 'react';
import { createRoot } from 'reactjs-dom';
const element = <h1>Hi</h1>;
// Note: error on the line below
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(element);
-
createRoot(document.getElementById("root"));
-
ReactDOM(element, document.getElementById("root"));
-
renderDOM(element, document.getElementById("root"));
-
DOM(element, document.getElementById("root"));
In this component, how do you display whether the user was logged in or not?
Q76.render() {
const isLoggedIn = this.state.isLoggedIn;
return (
<div>
The user is:
</div>
);
}
-
The user is loggedIn ? logged in : not logged in.
- Write a function to check the login status.
-
The user is {isLoggedIn = "no"}.
-
The user is {isLoggedIn ? "logged in." : "not logged in"}.
You are rendering a list with React when this warning appears in the console: “Предупреждение: Each child in a list should have a unique ‘key’ prop.” How do you fix this issue?
Q77.- Add a key prop with the same value to each item in the list
- Clear the console warnings
- Use the UseId hook to generate a unique key for each element in the list
- When iterating over the list items, add a unique property to each list item.
How would you generate the boilerplate code for a new app that you are building to collect underpants?
Q78.- npm create-react-app collect-underpants
- npx start-app collect-underpants
- react new collect-underpants
- npx create-react-app collect-underpants
Add the code that will fire the photon torpedoes when the button is clicked.
Q79.class StarTrekkin extends React.Component {
firePhotonTorpedoes(e) {
console.log('pew pew');
}
render() {
return; // Missing code
}
}
-
<button onClick={firePhotonTorpedoes()}>Pew Pew</button>
-
<button onClick={firePhotonTorpedoes}>Pew Pew</button>
-
<button onClick={this.firePhotonTorpedoes()}>Pew Pew</button>
-
<button onClick={this.firePhotonTorpedoes}>Pew Pew</button>
What is the process of deciding whether an update is necessary?
Q80.- shadow DOM
- волокно
- reconciliation
- setting state
React is an open-source project but is maintained by which company?
Q81.- Intuit
- щебет
- Snapchat
What command can you use to generate a React project?
Q82.- react-starter
- create-react-app
- react-gen
- react-start
What is the browser extension called that React developers use to debug applications?
Q83.- React Developer Tools
- React Tooling Add-on
- React Codewatch
- React Debug
Which tool is not part of Create React App?
Q84.- Реагировать
- jQuery
- webpack
- ReactDOM
What is the JavaScript syntax extension that is commonly used to create React elements?
Q85.- HTML
- JavaScriptX
- JSX
- React JavaScript
How might you check property types without using Flow or TypeScript?
Q86.- Check Manually.
- использование
prop-helper
. - использование
prop-types
. - пользователь
checker-types
.
How do you add an id of heading to the following h1 element?
Q87.let dish = <h1>Mac and Cheese</h1>;
-
let dish = <h1 id={heading}>Mac and Cheese</h1>;
-
let dish = <h1 id="heading">Mac and Cheese</h1>;
-
let dish = <h1 id:"heading">Mac and Cheese</h1>;
-
let dish = <h1 class="heading">Mac and Cheese</h1>;
What value of button will allow you to pass the name of the person to be hugged?
Q88.class Huggable extends React.Component {
hug(id) {
console.log("hugging " + id);
}
render() {
let name = "kitten";
let button = // Missing code
return button;
}
}
-
<button onClick={(name) => this.hug(name)}>Hug Button</button>;
-
<button onClick={this.hug(e, name)}>Hug Button</button>;
-
<button onClick={(e) => hug(name, e)}>Hug Button</button>;
-
<button onClick={(e) => this.hug(name, e)}>Hug Button</button>;
Каждый слой и все они выровнены одновременно: This question test knowledge of react class components. You need to use this
in order to call methods declared inside class components.
What syntax do you use to create a component in React?
Q89.- a generator
- a function or a class
- a service worker
- a tag
Каждый слой и все они выровнены одновременно: React Components are like functions that return HTML elements. Components are independent and reusable bits of code. They serve the same purpose as JavaScript functions, but work in isolation and return HTML. Components come in two types, Class components and Function components.
You want to disable a button so that it does not emit any events onClick. Which prop do you use to acomplish this?
Q90.- onBlur
- onPress
- defaultValue
- отключен
In this function, which is the best way to describe the Dish component?
Q91.function Dish() {
return (
<>
<Ingredient />
<Ingredient />
</>
);
}
- child component
- parent component
- nested component
- sibling component
When does the componentDidMount function fire?
Q92.- right after the component is added to the DOM
- before the component is added to the DOM
- right after the component is updated
- right after an API call
What might you use webpack for in React development?
Q93.- to fetch remote dependencies used by your app
- to split your app into smaller chunks that can be more easily loaded by the browser
- to format your code so that it is more readable
- to ensure your app is not vulnerable to code injection
When using the React Developer Tools Chrome extension, what does it mean if the React icon is red?
Q94.- You are using the development build of React.
- You are using the production build of React.
- You are using webpack.
- You are using Create React App.
How would you modify the constructor to fix this error: “ReferenceError: Must call super constructor in derived class before accessing ‘this’…”?
Q95.class TransIsBeautiful extends React.Component {
constructor(props){
// Missing line
console.log(this) ;
}
...
}
- render(props);
- супер(props);
- супер(это);
- this.super();
Which language can you not use with React?
Q96.- Быстрый.
- JSX.
- Javascipt.
- TypeScript.
This code is part of an app that collects Pokemon. How would you print the list of the ones collected so far?
Q97.constructor(props) {
super(props);
this.state = {
pokeDex: []
};
}
- console.log(props.pokeDex);
- console.log(this.props.pokeDex);
- console.log(pokeDex);
- console.log(this.state.pokeDex);
What would be the result of running this code?
Q98.function add(x = 1, y = 2) {
return x + y;
}
add();
- null
- 3
- 0
- undefined
Каждый слой и все они выровнены одновременно: function that called without parameter will use its param default value, thus x will always be default to 1 and y will always be default to 2.
Why might you use a React.ref?
Q99.- to refer to another JS file
- to bind the function
- to call a function
- to directly access the DOM node
What pattern is being used in this code block?
Q100.const { tree, lake } = nature;
- function defaults
- array destructuring
- PRPL pattern
- destructuring assignment
How would you correct this code block to make sure that the sent property is set to the Boolean value false?
Q101.ReactDom.render(
<Message sent=false />,
document.getElementById("root")
);
- А
<Message sent={false} />,
- В
ReactDom.render(<Message sent="false" />, document.getElementById('root'));
- С
<Message sent="false" />,
- D
ReactDom.render(<Message sent="false" />, document.getElementById('root'));
This code is part of an app that collects Pokemon. The useState hook below is a piece of state holding onto the names of the Pokemon collected so far. How would you access the collected Pokemon in state?
Q102.const PokeDex = (props) => {
const [pokeDex, setPokeDex] = useState([]);
/// ...
};
- props.pokeDex
- this.props.pokeDex
- setPokeDex()
- pokeDex
Каждый слой и все они выровнены одновременно: useState always return an array with two values, the state itself (on first value) and the set function that lets you update the state (on second value) useState Reference
What would you pass to the onClick prop that will allow you to pass the initName prop into the greet handler?
Q103.const Greeting = ({ initName }) => {
const greet = (name) => console.log("Hello, " + name + "!");
return <button onClick={ ... }>Greeting Button </button>
}
- hug
- this.hug(initName)
- (имя) знак равно> this.hug(имя)
- () знак равно> hug(initName)
Каждый слой и все они выровнены одновременно: Apparently the question misstyped greet
так как hug
. Putting this aside, we can still learn from this question.
- In a function, the global object is the default binding for
this
. In a browser window the global object is [object Window]. This is a functional Component, такthis
отthis.hug
actually refers to browser window. Since it is a functional component, we can directly refer to hug without usingthis
. - To pass a handler to onClick, we should always pass a function rather than execute a function. So we need to use callback here.
initName
is available in Greeting’s function scope, so we can directly supply as an argument to hug().
What is the name of the compiler used to transform JSX into JavaScript?
Q104.- Babel
- JSX Editor
- Browser Buddy
- ReactDOM
Which hook is used to prevent a function from being recreated on every component render?
Q105.- useCallback
- useMemo
- useRef
- useTransition
React Hooks useCallback docuementation
Why might you use the useRef
hook?
Q106. - To bind the function
- To call a function
- To directly access a DOM
- To refer to another JS file
Which of the following is required to use React?
Q107.- JavaScript
- React Router
- Редукс
- Prop-Types
What is the correct way to get a value from context?
Q108.- const value = useContext(MyContext.Consumer)
- const value = useContext(MyContext.Provider)
- const value = useContext(MyContext)
- const value = useContext({ценить: “intiial value”})
Why is ref used?
Q109.- to bind function
- to call function
- to directly access DOM node
- to refer to another JS file
Choose the method which should be overridden to stop the component from updating?
Q110.- componentDidMount
- componentDidUpdate
- willComponentUpdate
- shouldComponentUpdate
What is the functionality of a “webpack” command?
Q111.- Runs react local development server
- Transfers all JS files to down into one file
- A module builder
- Все вышеперечисленное
Choose the method which is not a part of ReactDOM?
Q112.- ReactDOM.createPortal()
- ReactDOM.hydrate()
- ReactDOM.destroy()
- ReactDOM.findDOMnode()
In react, the key should be?
пределы процесса устанавливаются путем установки верхнего и нижнего уровней для диапазона параметров.- Unique among his siblings
- Unique in DOM
- Does not requires to be unique
- all of the above
Which company developed ReactJS?
Q114.- Meta (ex Facebook)
- яблоко
- щебет
Choose the library which is most often associated with react?
Q115.- Chai
- Sinon
- Jest
- Mocha
What of the following is used in React.js to increase performance?
Q116.- Original DOM
- Virtual DOM
- Оба вышеперечисленных
- Ни один из вышеперечисленных
Among The following options, choose the one which helps react for keeping their data uni-directional?
Q117.- ДОМ
- flux
- JSX
- Props
Which choice is a correct refactor of the Greeting class component into a function component?
Q118.class Greeting extends React.Component {
render() {
return <h1>Hello {this.props.name}!<h1>;
}
}
-
const Greeting = (name) => <h1>{name}</h1>
-
function Greeting(name){return <h1>{name}</h1>;}
-
const Greeting = props => { <h1>{props.name}</h1> }
-
const Greeting = ({ name }) => <h1>Hello {name}</h1>;
Why is the waitlist
not updating correctly?
Q119. const Waitlist = () => {
const [name, setName] = useState('');
const [waitlist, setWaitlist] = useState([]);
const onSubmit = (e) => {
e.preventDefault();
waitlist.push(name);
};
return (
<div>
<form onSubmit={onSubmit}>
<label>
Name: <input type="text" value={name} onChange={(e) => setName(e.target.value)} />
</label>
<button type="submit">Add to waitlist</button>
</form>
<ol>
{waitlist.map((name) => (
<li key={name}>{name}</li>
))}
</ol>
</div>
);
};
-
waitlist
is being mutated directly. ИспользоватьsetWaitlist
function instead to update the waitlist state. - The form is reloading the page each time
Add to waitlist
is clicked. - В
Add to waitlist
button is missing a click handler. - There are likely repeated names inside of the
waitlist
множество.
What is the pattern that is used in the Context.Consumer below?
пределы процесса устанавливаются путем установки верхнего и нижнего уровней для диапазона параметров.<Context.Consumer> {(isLoggedIn)знак равно>{isLoggedIn ? “В сети” : “Не в сети”}} </Context.Consumer>
- higher-order component
- wish component
- Render Props
- setup Componet
In React.js which one of the following is used to create a class for Inheritance ?
Q121.- Создавать
- Extends
- Inherits
- удалять
What is the purpose of render() in React.js?
Q122.- To replace the existing markup
- To update the existing markup
- Оба вышеперечисленных
- Ни один из вышеперечисленных
What is the use of super(props) in React.js?
Q123.- To call the constructor of the parent class
- To initialize this.props in the constructor
- Оба вышеперечисленных
- Ни один из вышеперечисленных
What is Redux in React.js?
Q124.- A state container for JavaScript apps
- A tool for building UI components
- Оба вышеперечисленных
- Ни один из вышеперечисленных
What is the purpose of the virtual DOM in React.js, and how does it improve performance in web applications??
Q125.- The virtual DOM is used to store user authentication data securely.
- The virtual DOM is a backup copy of the actual DOM, created for debugging purposes.
- The virtual DOM is a lightweight representation of the actual DOM, and it helps improve performance by minimizing direct manipulation of the real DOM.
- The virtual DOM is a database used to store component states.
You run the following code and get this error message: “invalid hook call.” what is wrong with the code?
Q126.import React from 'react';
const [poked, setPoked] = React.useState(false);
function PokeButton() {
return <button onClick={() => setPoked(true)}>{poked ? 'You have left a poke.' : 'Poke'}</button>;
}
- The useState call needs to be called inside of the PokeButton component.
- The react package is likely not installed correctly.
- useState is not imported correctly. Import useState directly instead of importing react.
- PokeButton is a pure function and therefore cannot have any local state.
A colleague comes to you for help on a react component. They say that the poke button renders correctly, however when the button is clicked, this error is shown: “setPoked is not defined”. What is wrong with their code?
Q127.function PokeButton() {
const { poked, setPoked } = useState(false);
return <button onclick={() => setPoked(true)}>{poked ? 'You have left a poke.' : 'Poke'}</button>;
}
- onClick prop should be onclick.
- The click handler passed to the onClick prop is inlined. Move this handler into a variable outside of JSX.
- They use object destructructing instead of array destructructing. Wrap the poked and setPoked values in an array.
- poked and setPoked are not destructured in the correct order.
This component is loaded dynamically. What should you replace XXXX with to complete the code?
Q128.const OtherComponent = React.lazy(() => import('./OtherComponent.js'));
function MyComponent() {
return (
<XXXX fallback={<spinner />}>
<OtherComponent />
</XXXX>
);
}
- Component
- Фрагмент
- Suspense
- Lazy
Elements in lists in React should have __ that are ___ .
Q129.- keys ; уникальный
- keys ; индексы
- стиль ; inline
- ценности ; not-null Источник: React Docs
You want to memorize a callback function so you ensure that React does not recreate the function at each render. Which hook would you use to accomplish this?
Q130.- useRef
- useMemo
- memo
- useCallback
You want to perform a network operation as the result of a change to a component’s state named userInput. what would you replace XXXX with?
Q131.useEffect(callNetworkFunc, XXXX);
- [userInput]
- userInput
- undefined
- []
When is the Hello component displayed?
Q132.<div>{isLoggedIn ? <Hello /> : null}</div>
- when isLoggedIn is false
- when isLoggedIn is true
- when isLoggedIn is false and the Hello function is invoked
- никогда
When do you use useLayoutEffect
?
Q133. - to optimize for all devices
- to complete the update
- to change the layout of the screen
- when you need the browser to paint before the effect runs
What is the difference between state and props in React?
Q134.- Props are set by the parent component, state is set by the child component
- Props are passed to a component, state is managed within the component
- Props can be updated, state cannot be updated
- There is no difference – props and state are the same
Which language can you not use with React?
Q135.- Быстрый.
- JSX.
- Javascipt.
- TypeScript.
Which answer best describes a function component?
Q136.- A function component is the same as a class component.
- A function component accepts a single props object and returns a React element.
- A function component is the only way to create a component.
- A function component is required to create a React component.
Which library does the fetch()
function come from?
Q137. - FetchJS
- ReactDOM
- No library.
fetch()
is supported by most browsers. - Реагировать
In React, what is the purpose of the key
prop when rendering a list of components
Q138. - В
key
prop is used to provide a unique identifier for the component. - В
key
prop is used to define the color of the component. - В
key
prop is required to render a list of components. - В
key
prop is used by React to optimize updates and identify which items have changed or been added/removed in the list.
What is the primary function of React Router?
Q139.- React Router is used for fetching data from APIs.
- React Router is used to create animations in React applications.
- React Router is used for managing state in React components.
- React Router is used for adding navigation and routing to React applications, allowing users to navigate between different views or pages.
When should you use Redux in a React application?
Q140.- Redux is always required in React applications.
- Redux should be used when you need to fetch data from APIs.
- Redux is used for creating user interfaces but not for state management.
- Redux is typically used when you have complex state management needs, such as sharing state between multiple components or handling deeply nested state.
What is the use of React hooks?
Q141.- To optimize React apps for mobile devices
- To add visual effects to React components.
- To allow using state and lifecycle methods in function components
- To integrate with external UI libraries like Bootstrap
How can you pass data through a React component tree without having to pass props down manually at every level?
Q142.- By using React context
- By using redux
- By using react router
- By using react lifecycle methods
Оставьте ответ
Вы должны авторизоваться или же регистр добавить новый комментарий .