frk008 / ui-code-assessment-quiz

UI Team's code assessment project boilerplate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lucid UI Code Assessment

Welcome to the code assessment for Lucid's UI Team.

This README details what we expect from you on this assessment. If you have any questions, feel free to reach out anytime.

Please, use this repository to fork the project into your account and submit the link to us (by email) with the final solution when done.

Application

The purpose of this exercise is to build a React application based on the provided mockups and requirements below:

Quiz App

The application is a Quiz interface - a UI that shows a set of questions and lets the user select an answer for each one.

The Quiz features three different types of questions. Use the included mockups as references for styling.

Multiple
A multiple-choice question (predefined answer options)

Boolean
A "true or false" only answer question

Text
An open-ended text question

Requirements

  1. The UI should fetch the questions data from an API (provided in this repository). More details in API instructions

  2. The application should display one question per time, randomly selected from the set of questions.

  3. When the user finishes the Quiz, the UI should display a summary page with the results, including:

  • Number of correct answers
  • Number of incorrect answers
  • Total number of questions answered
  • The final score (%)
  • A button to restart the Quiz with a different questions

A reference mockup for the summary page is depicted below:

Setup

This repo provides a React application bootstrap. To get setup, run these commands:

  • Install dependencies:
npm install
  • Run it locally
npm start

The command above will:

  • Start an HTTP server for the API (localhost:4000);
  • Start an HTTP server (powered by react-scripts) for the front-end (localhost:3000);

API instructions

This repository provides a basic API (running under port 4000) that returns the required data for the application. The API will be available after running the npm start command.

GET Questions List

http://localhost:4000/api/questions

About

UI Team's code assessment project boilerplate


Languages

Language:JavaScript 50.5%Language:HTML 26.9%Language:TypeScript 22.6%