You are on page 1of 5

Quiz Game Using

CProgram…

Phase 1 report :
• Objectives & feature of system.

• Algorithm.

• Flow chart.

Team: B22PPSCSE-D

ROLL NUMBER NAME

22H51A0Q6 HARSHINI

22H51A05M3 BHARGAV
REDDY

22H51A0P9 ROHITH SAI


OBJECTIVE OF THE QUIZ GAME PROJECT
This is a error free quiz game project for a question in which you can
g e n e r a t e a n d m a n a g e a s i m p l e d a t a b a s e f o r questions. The
question number is automatically generated by the software and is
stored in a binary file It is designed to display certain questions onto
the screen and the user guesses the correct answer. If the user
enters the correct choice, then it will add 10 points to thetotal score
and if a user is unable to guess the correct answerthen no negative
marking will be performed. The total score at the end of this game is
100.

FEATURES OF THE SYSTEM

 Creating a basic application that can ask multiple-


choice questions.
 Make the app more user-friendly by improving how it
looks and how it handles user errors.
 Refactor the code to use functions.
 Separate question data from source code by
storing questions in adedicated data file.
 Expand the app to handle multiple correct answers.
ALGORITHM
Step 1:Start

Step 2: Displaying the instructions


Step 3: Game starts
Step 4: Displaying the questions and options
Step 5: If the option is true then display points+10

Step 6: If the option is false then display points+0

Step 7: End the game after 10 questions


Step 8: Display the score
Step 9: Display greeting message

Step 10: End


Start

Displaying instructions

Game starts

Loop && shuffling

Displaying the question and options

Points=+0&& Displaying co
if(question==true)

points+10

if(question==10)
Display the Score

Greeting message

Stop

You might also like