You are on page 1of 9

JSPM's

RajarshiShahu College of Engineering,Polytechnic.

Academic Year 2022-23

CLASS- CO3I Subject- Object Oriented Programming (22316)

Micro-Project Report

TITLE OF MICROPROJECT : Quiz Game

GROUP NO. – 04

GROUP MEMBERS:

ROLL NO NAME

SYCO 13 Hariom Suryavanshi

SYCO 14 Kanishka Kandhare

SYCO 15 Akshada Sagar

SYCO 16 Prashant Bhambare


Maharashtra State
Board of Technical Education, Mumbai
(Autonomous) (ISO-9001-2008) (ISO/IEC 27001:2013)

CERTIFICATE

This is to certify that Mr/Mrs

1. Hariom Suryavanshi 2. Kanishka Kandhare 3. Akshada Sagar 4. Prashant Bhambare

of Diploma In Computer Engineering of JSPM’s Rajarshi Shahu College of Engineering


Polytechnic (Code: 1620) has completed Micro projects of the Object Oriented Programming
(22316)as prescribed in the curriculum for the academic year 2023 to 2024.

Place:Tathwade, Pune Enrollment No:1.2216200222

2. 2216200223

3. 2216200224

4. 2216200225

Date:_____________________

Mrs. Suman Puri Mrs. Vidya Thakre

(Course Incharge) (Head of Department)

Seal Of Institute
1.0 Brief Description :

Earlier QUIZ Game was conducted manually in which there used to be a Quiz Maste rasking
questions with a book which was neither flexible nor friendly.So an automated Quiz Game is
desinged to play quiz game in a more interactive and fun way which is felxible and more
reliable.

2.0 Aim Of The Micro-Project:


Write a c++ program on Quiz Game

3.0 Course Outcome Addressed :

a) Use computer system and its peripherals.


b) Prepare business document using word processing tool.
c) Interpret data and represent it graphically using word.
d) Prepare professional presentations.
e) Use different types of web browsers.

4.0 Actual Methodology Followed:


Procedure that will be adopted during the completion of micro-project are as follows:

1) Firstly, a discussion will be held with the group members on the topic and
everybody’s idea about the topic will be encouraged.
2) The topic will be divide into several modules and each and every group member
will be assigned one of them.
3) All the modules shall be perfectly arranged into the specified format and all the
errors/mistakes committed will be resolved.
4) Finally the copy will be submitted to the concerned course coordinator.

1) Action Plan: 1-8 weeks


Name of the
Sr. No. Details of activity Start date Finish date responsible team
member.

1. Discussion of topic
1. Hariom Suryavanshi
2. Finalization of topic
2. Kanishka Kandhare
3. Preparation of Abstract 3. Akshada Sagar
4.Prashant Bhambare
4. Submission of abstract

5. Literature survey

6. Collection of data

7. Collection of data

8. Discussion of content

2) Action Plan: 9-16 weeks

Name of the
Sr. No. Details of activity Start date Finish responsible team
date member.

9. Proof Reading of Content 1. Hariom Suryavanshi


2. Kanishka Kandhare
10. Editing of Content
3. Akshada Sagar
11. Editing of Content 4.Prashant Bhambare

12. Completion of Report

13. Completion of Presentation

14. Viva

15. Presentation
16. Final Submission

5.0 Resources used

Sr.n Name of Resources Specifications Quali Remar


o ty k

1. Computer Intel core-i3,4GB 1


Ram,2.00GHz,64bit
OS,1Tb HDD

2. Internet Google Chrome -

3. Reference Books NiraliPublications,Bal 2


Guru Swamy
Publications

6.0 Steps for Writing a C++ code on Quiz Game:

Introduction
1. The game designed is interactive and user friendly.
2. Simple and easy to play
3. Easy to modify
4. There is a score card and a percentage calculator
7.0 C++ code for Bank Management System:

#include <iostream>

#include<unistd.h>

using namespace std;

int tol=0;

int check(int a,int b)

if(a==b)

tol++;

int main()

int ans;

cout<<"Game will Start in 5 sec..."<<endl;

sleep(5);

cout<<"1) What does the ++ operator do in C++?"<<endl;

cout<<" 1. Increment a variable by 1\n 2. Decrement a variable by 1\n 3. Add 1 to


a variable\n 4. Multiply a variable by 2\n"<<endl;

cin>>ans;

check(1,ans);

cout<<"****************"<<endl;

cout<<"2) What is the C++ operator for logical AND?"<<endl;


cout<<"1. &&\n 2. ||\n 3. !\n 4. &\n"<<endl;

cin>>ans;

check(1,ans);

cout<<"****************"<<endl;

cout<<"3) What does cin represent in C++?"<<endl;

cout<<"1. Character input\n 2. Console input\n 3. Continuous input\n 4. Control


input\n"<<endl;

cin>>ans;

check(2,ans);

cout<<"****************"<<endl;

cout<<"4) Which C++ header file is used for input and output operations?"<<endl;

cout<<"1.math\n 2. vector\n 3. string\n 4. iostream\n"<<endl;

cin>>ans;

check(4,ans);

cout<<"****************"<<endl;

cout<<"Result will Display In 5 sec..."<<endl;

sleep(1);

cout<<"..4.."<<endl;

sleep(1);

cout<<"..3.."<<endl;

sleep(1);

cout<<"..2.."<<endl;

sleep(1);

cout<<"..1.."<<endl;

sleep(1);
cout<<"****************"<<endl;

if(tol>2)

cout<<"Congralulations!! You Passed"<<endl;

cout<<"You Scored = "<<tol<<endl;

else

cout<<"You Scored = "<<tol<<endl;

cout<<"Sorry!! you failed the exam Better luck next time"<<endl;

cout<<"****************"<<endl;

Output:

You might also like