Skip to content

Commit 48f926d

Browse files
authored
Adding Quiz Project files
1 parent ccde7c1 commit 48f926d

17 files changed

+713
-0
lines changed

Quiz project/AnswerKey.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
c
2+
c
3+
d

Quiz project/ClientThread.java

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
import java.io.DataInputStream;
2+
import java.io.DataOutputStream;
3+
import java.io.IOException;
4+
import java.net.ServerSocket;
5+
import java.net.Socket;
6+
import java.util.concurrent.TimeUnit;
7+
8+
class Quiz {
9+
int quesNum = 0;
10+
int threadnum = 0;
11+
static String Question, Option, Answer;
12+
static boolean has_started = false;
13+
14+
void sendQues(DataOutputStream dataOutputStream, int count) throws IOException, InterruptedException {
15+
threadnum++;
16+
if (threadnum < 3) {
17+
synchronized (this) {
18+
wait();
19+
}
20+
}
21+
if (!has_started) {
22+
if (Initiator.initiator()) { // call initiator if everything is fine
23+
System.out.println("!! Quiz is LIVE now !!");
24+
System.out.println("-------------------------");
25+
}
26+
has_started = true;
27+
}
28+
dataOutputStream.writeUTF(Question);
29+
dataOutputStream.writeUTF(Option);
30+
if (threadnum == 3)
31+
synchronized (this) {
32+
Answer = reader.readAns();
33+
threadnum = 0;
34+
notifyAll();
35+
}
36+
TimeUnit.SECONDS.sleep(5);
37+
}
38+
39+
int receiveAns(DataInputStream dataInputStream) throws IOException {
40+
String ans = dataInputStream.readUTF();
41+
if (ans.equals(Answer))
42+
return 1;
43+
return 0;
44+
}
45+
}
46+
47+
public class ClientThread extends Thread {
48+
static int count = 0, name_count = 0, total_ques = 0, time_per_ques = 0;
49+
final static Quiz quiz = new Quiz();
50+
static boolean isAnswering = false;
51+
String name;
52+
int port, score = 0;
53+
54+
ClientThread(int port) {
55+
this.port = port;
56+
}
57+
58+
public static void initialise(int total_ques, int time_per_ques) {
59+
ClientThread.total_ques = total_ques;
60+
ClientThread.time_per_ques = time_per_ques;
61+
}
62+
63+
@Override
64+
public void run() {
65+
try {
66+
ServerSocket serverSocket = new ServerSocket(port);
67+
// connecting to Server..
68+
Socket socket = serverSocket.accept();
69+
DataOutputStream dataOutputStream = new DataOutputStream(socket.getOutputStream());
70+
DataInputStream dataInputStream = new DataInputStream(socket.getInputStream());
71+
name = dataInputStream.readUTF();
72+
dataOutputStream.writeInt(total_ques);
73+
dataOutputStream.writeInt(time_per_ques);
74+
System.out.println(name + " Connected.");
75+
count++;
76+
77+
while (quiz.quesNum < total_ques) {
78+
79+
if (port == 1000) {
80+
String[] list = reader.readQues();
81+
// call readQues which reads Question from generated file
82+
quiz.Question = list[0];
83+
quiz.Option = list[1];
84+
} else {
85+
Thread.sleep(1000);
86+
}
87+
quiz.sendQues(dataOutputStream, count);
88+
if (port == 1000)
89+
isAnswering = true;
90+
score += quiz.receiveAns(dataInputStream);
91+
if (port == 1000) {
92+
isAnswering = false;
93+
count = 0;
94+
quiz.quesNum++;
95+
} else {
96+
if (quiz.quesNum == total_ques - 1 && isAnswering)
97+
break;
98+
Thread.sleep(500);
99+
}
100+
}
101+
serverSocket.close();
102+
// Print participants score on Host side
103+
System.out.println(name + "'s score: " + score);
104+
} catch (IOException e) {
105+
e.printStackTrace();
106+
} catch (InterruptedException e) {
107+
e.printStackTrace();
108+
}
109+
}
110+
}

Quiz project/General_Knowledge.txt

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
Which country gifted the Statue of Liberty to USA in 1886?
2+
a.) France b.) Canada c.) Brazil d.) England
3+
The council of ministers is responsible to the-
4+
(a) Rasja Sabha (b) President (c) Lok Sabha (d) Prime Minister
5+
Dead Sea is located between which two countries?
6+
a.) Jordan and Sudan b.) Jordan and Israel c.) Turkey and UAE d.) UAE and Egypt
7+
In which ocean Bermuda Triangle region is located?
8+
a.) Atlantic b.) Indian c.) Pacific d.) Arctic
9+
Which country is known as the playground of Europe?
10+
a.) Austria b.) Holland c.) Switzerland d.) Italy
11+
Which country is also known as the Land of Rising Sun?
12+
a.) Japan b.) New Zealand c.) Fiji d.) China
13+
Which country is known as the Land of Thunderbolts?
14+
a.) China b.) Bhutan c.) Mongolia d.) Thailand
15+
Which continent has the highest number of countries?
16+
a.) Asia b.) Europe c.) North America d.) Africa
17+
In which country, white elephant is found?
18+
a.) India b.) Sri Lanka c.) Thailand d.) Malaysia
19+
Total number of oceans in the World is
20+
a.) 3 b.) 5 c.) 7 d.) 12
21+
Which country is also known as the Land of Thousand Lakes?
22+
a.) Iceland b.) Norway c.) Finland d.) Switzerland
23+
Which Plateau is known as the Roof of the World?
24+
a.) Andes b.) Himalaya c.) Karakoram d.) Pamir
25+
The world’s longest straight road without any corners is located in
26+
a.) USA b.) Australia c.) Saudi Arabia d.) China
27+
Which one is the biggest island in the World?
28+
a.) Borneo b.) Finland c.) Sumatra d.) Greenland
29+
In which year Hong Kong became a part of China after British Rule?
30+
a.) 1982 b.) 1989 c.) 1995 d.) 1997
31+
Which one is the World highest-altitude civilian airport?
32+
a.) Daocheng Yading Airport, China b.) Kushok Bakula Airport, Leh c.) Qamdo Airport, China d.) None of the above
33+
Which river is flowing through Grand Canyon in Arizona, USA?
34+
a.) Missouri River b.) Colorado River c.) Mississippi River d.) Yukon River
35+
Which one is the largest tropical rain forest in the world?
36+
a.) Amazon b.) Bosawas c.) Southeast Asian Rain Forest d.) Daintree Rain Forest
37+
How many countries were participated as founding member of United Nation?
38+
a.) 45 b.) 50 c.) 51 d.) 75
39+
Which one is the longest continental mountain range in the world?
40+
a.) Himalaya b.) Andes c.) Rocky Mountains d.) Ural Mountains
41+
The State of Climate Ambition is a report released by which organization?
42+
a.)UNGA b.)UNDP c.)IMD d.)WHO
43+
The executive power of the Union is vested in which one of the below?
44+
A. Prime minister B. Home minister C. Vice-president D. President
45+
The Pressure groups are:
46+
a.) Political organisations b.) Economic organisation c.) Moral organisations d.) Organisations of universal character
47+
When was the first Parliamentary Forum on Children constituted?
48+
a.) 2006 b.) 2007 c.) 2008 d.) 2009
49+
What is the minimum age to become a member of Lok Sabha?
50+
a.) 30 years b.) 18 years c.) 25 years d.) 35 years
51+
The concept of Federal System in Indian Constitution is taken from:
52+
a.) Ireland b.) Australia c.) Germany d.) Canada
53+
In which year was the Anti-Defection law passed?
54+
a.)1950 b.)1960 c.)1985 d.)2005
55+
Which country has become the first one to approve oral Covid pill?
56+
a) US b) UK c) Canada d) India
57+
Which company has shut down its facial recognition system?
58+
a) Apple b) Google c) Facebook d) Microsoft
59+
India will achieve net-zero carbon emissions by which year, as per PM Modi.
60+
a) 2040 b) 2050 c) 2070 d) 2090
61+
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
a
2+
c
3+
b
4+
a
5+
c
6+
a
7+
b
8+
d
9+
c
10+
b
11+
c
12+
d
13+
c
14+
d
15+
d
16+
a
17+
b
18+
a
19+
c
20+
b
21+
b
22+
d
23+
d
24+
a
25+
c
26+
d
27+
c
28+
b
29+
c
30+
c

Quiz project/Host.java

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
abstract class Host {
2+
3+
// call subject selector
4+
void subject() {
5+
subject_selector.select_subjet();
6+
}
7+
8+
// call Question_setter
9+
boolean questions() {
10+
return question_setter.set_questions();
11+
}
12+
13+
// call Set_time `
14+
15+
public void time(int wait) {
16+
Set_time.set(wait);
17+
}
18+
19+
}

Quiz project/Initiator.java

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
import java.util.Scanner;
2+
3+
public class Initiator extends Thread {
4+
5+
public static boolean initiator() {
6+
7+
boolean flag = false;
8+
int countdown = 5;
9+
Scanner scan = new Scanner(System.in);
10+
while (flag == false) {
11+
12+
System.out.println("!! Enter 'START' to begin the Quiz !!");
13+
14+
String input = scan.nextLine();
15+
16+
if (input.equals("START")) {
17+
System.out.print("Quiz starting in " + countdown);
18+
while (countdown-- > 0) {
19+
try {
20+
Thread.sleep(1500);
21+
} catch (InterruptedException e) {
22+
}
23+
System.out.print("\b" + countdown);
24+
}
25+
System.out.println("");
26+
flag = true;
27+
return flag;
28+
} else {
29+
System.out.println(
30+
"Please enter 'START' correctly. If you not want to start quiz then just enter 'QUIT'");
31+
String in = scan.next();
32+
if (in.equals("QUIT")) {
33+
System.out.print("EXITING the Quiz");
34+
int i = 2;
35+
while (i-- > 0) {
36+
for (int j = 0; j < 3; j++) {
37+
38+
System.out.print(".");
39+
try {
40+
Thread.sleep(700);
41+
} catch (InterruptedException e) {
42+
}
43+
if (j == 2) {
44+
System.out.print("\b\b\b");
45+
}
46+
}
47+
}
48+
return false;
49+
}
50+
if (in.equals("START")) {
51+
input = "START";
52+
System.out.print("Quiz starting in " + countdown);
53+
while (countdown-- > 0) {
54+
try {
55+
Thread.sleep(1500);
56+
} catch (InterruptedException e) {
57+
}
58+
System.out.print("\b" + countdown);
59+
}
60+
System.out.println("");
61+
return true;
62+
63+
}
64+
}
65+
}
66+
return true;
67+
}
68+
}

Quiz project/Main.java

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import java.util.Scanner;
2+
3+
public class Main extends Host{
4+
public static void main(String[] args) {
5+
6+
Host Host_obj = new Main();
7+
8+
synchronized (Host_obj) {
9+
10+
// select subject
11+
Host_obj.subject();
12+
13+
// select questions
14+
boolean Questions = Host_obj.questions();
15+
if (Questions) {
16+
System.out.println("Successfully selected " + question_setter.ques + " questions for the Quiz..");
17+
} else {
18+
System.out.println("!! Unable to select questions !!");
19+
}
20+
21+
// select time for each question
22+
System.out.print("Enter time(in seconds) for each question : ");
23+
int time;
24+
Scanner scan = new Scanner(System.in);
25+
26+
time = scan.nextInt();
27+
Host_obj.time(time);
28+
29+
System.out.println("Waiting for participants to connect..");
30+
31+
// Creating ClientThreads and connect to server.
32+
ClientThread.initialise(question_setter.ques, Set_time.t);
33+
ClientThread clientThread = new ClientThread(1000);
34+
ClientThread clientThread1 = new ClientThread(1001);
35+
ClientThread clientThread2 = new ClientThread(1002);
36+
37+
clientThread.start();
38+
clientThread1.start();
39+
clientThread2.start();
40+
}
41+
}
42+
}

Quiz project/Questions.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Which of these packages contains the exception Stack Overflow in Java?
2+
a) java.io b) java.system c) java.lang d) java.util
3+
Which of these class is a superclass of every class in Java?
4+
a) ArrayList class b) Abstract class c) Object class d) String class
5+
Which of this method of class String is used to obtain a length of String object?
6+
a) get() b) Sizeof() c) lengthof() d) length()

0 commit comments

Comments
 (0)