Assesment
import React , { Component } from 'react' ; import './form.css' ; class Exam extends Component { constructor ( props ) { super ( props ); this . state = { questions : [ { id : 1 , question : 'What is the pH value of the human body?' , options : [ '9.2-9.8' , '7.0-7.8' , '6.1-6.3' , '5.4-5.6' ], correctAnswer : '7.0-7.8' , selectedAnswer : null , }, { id : 2 , question : 'Which of the following are called "Key Industrial animals"?' , options : [ 'Producers' , 'Tertiary consumers' , 'Primary consumers' , 'None of these' ], co...