
React Quiz
Correct: 0
Wrong: 0
Question No. 1 : <p>React is mainly used for _______ (if needed, google it)</p>
Correct Answer : building User Interface
Question No. 2 : <p>How do you declare a class called “myClass” in react?</p>
Correct Answer : className = “myClass”
Question No. 3 : <p>Which method will you use in react to display components for each object in an array?</p>
Correct Answer : map
Question No. 4 : <p>How will create a state with a default value “JingaLala”?</p>
Correct Answer : const [name, setName] = useState(“JingaLala”);
Question No. 5 : <p>Why can’t we declare a class with the “class” keyword in React?</p>
Correct Answer : class is a reserved keyword in javascript
Question No. 6 : <p>What is JSX?</p>
Correct Answer : Javascript XML
Question No. 7 : <p>When creating a component in React, the first letter of that function name should be in ____</p>
Correct Answer : Uppercase
Question No. 8 : <p>What is the correct way of creating a component in react?</p>
Correct Answer : function Nayika() { return <h3> Mousumi </h3> }