Skip to content

Commit 5552498

Browse files
committed
Added quiz game made in React
1 parent a9150ca commit 5552498

39 files changed

+15563
-0
lines changed

GAMES/Quizzy/.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# These are some examples of commonly ignored file patterns.
2+
# You should customize this list as applicable to your project.
3+
# Learn more about .gitignore:
4+
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
5+
6+
# Node artifact files
7+
node_modules/
8+
dist/
9+
10+
# Compiled Java class files
11+
*.class
12+
13+
# Compiled Python bytecode
14+
*.py[cod]
15+
16+
# Log files
17+
*.log
18+
19+
# Package files
20+
*.jar
21+
22+
# Maven
23+
target/
24+
dist/
25+
26+
# JetBrains IDE
27+
.idea/
28+
29+
# Unit test reports
30+
TEST*.xml
31+
32+
# Generated by MacOS
33+
.DS_Store
34+
35+
# Generated by Windows
36+
Thumbs.db
37+
38+
# Applications
39+
*.app
40+
*.exe
41+
*.war
42+
43+
# Large media files
44+
*.mp4
45+
*.tiff
46+
*.avi
47+
*.flv
48+
*.mov
49+
*.wmv
50+

GAMES/Quizzy/README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Welcome to the Quiz World
2+
3+
# Node Version
4+
5+
- Node version Should be 14
6+
7+
You can use command to install
8+
9+
- nvm install 14
10+
- nvm use 14
11+
## Install Dependencies
12+
13+
- npm install
14+
### Run Project
15+
16+
- npm start
17+
# Technology
18+
19+
- React JS
20+
- Firebase
21+
- SCSS
22+
# Features
23+
- Landing Page (Welcome Page)
24+
- Play as Guest
25+
- Sign IN
26+
# Play as Guest
27+
- Play as Guest ---> - Classic (You can play Predefined Quiz Here)
28+
- Play as Guest ---> - Community (You can play Community Quiz Here which is added by other Users)
29+
30+
# Play as Guest --> Classic / Commnity
31+
- Select Quiz
32+
- Select Answer based on given question
33+
- You will have Sound experience based on your True / False selection.
34+
- On first you will get Skip button after selection you will get Next button - Basically you can skip the question which you don't want to answer
35+
- Points are counted based on questions points, you can see on top of the question on the same page
36+
# Result Page
37+
- You will get Result pages with Information like Correct answers, Wrong Answers, Skipped Answers, Total Score, Result List with Correct answer & Your Choice's Answer
38+
- Back to Home will redirect to Home page
39+
# Sign IN
40+
- Google Sign In with your Google Account
41+
- You can Play Classic / Community Quiz (Same as Play as Guest)
42+
43+
- Create Quiz
44+
- You Can create your own quiz using Quiz name, Select Category
45+
- You will need to enter your Question and Answers in to text field
46+
- You need to Submit to store your questions
47+
- You can add N number of questions
48+
- Once you will hit finish CTA than you will redirect to Welcome page
49+
- Your Quiz will be on "My Quiz" Section
50+
- YOu can Play now
51+
52+
# Results
53+
- You can see Quiz Results based on different Quiz
54+
55+
# NOTE: PLEASE USE HEADPHONE OR SPEAKER FOR BETTER USER EXPERIENCE

0 commit comments

Comments
 (0)