Quiz: Setting up the Frontend and Creating the Server

Test your knowledge about setting up the frontend using React.

Quiz

1

(Fill in the blank.) With reference to React, below is an example of a(n) ______________ that displays a simple string Products.

import React from 'react';
function Products() { return (
<div> <h2>
            Products
        </h2>
</div> );
}
export default Products;
A)

framework

B)

code

C)

component

D)

HTML snippet

Question 1 of 50 attempted

Get hands-on with 1200+ tech skills courses.