-
Notifications
You must be signed in to change notification settings - Fork 1
/
eventInfo.js
124 lines (124 loc) · 5.54 KB
/
eventInfo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
export const eventInfo = [
{
eventName: "Best Manager",
details: [
"This is an individual event.",
"There is no limit on the number of participants from the same institution.",
"Participants must carry a laptop, internet connectivity, and a USB drive.",
"Use of mobile phones or internet connectivity is not allowed unless specified by the coordinators.",
"Participants found resorting to any sort of malpractice will be disqualified.",
"Details and regulations for the particular round will be disclosed at the event location.",
"Participants are required to wear formal attire during the entire event.",
"Participants must adhere to the time limit proposed by the coordinators.",
"All decisions made by judges will be final."
],
firstprize: 20000,
secondprize: ""
},
{
eventName: "Marketing Game",
details: [
"A team should consist of 4 members and multiple event participation is not allowed.",
"Mobile phones are not allowed in the first and second round.",
"Participants must bring their college ID cards and laptops.",
"If any fraudulent practices are made, the team will be disqualified.",
"Decision made by the judge would be final.",
"All participants should report at the registration desk before 10.00am."
],
firstprize: 15000,
secondprize: 7000
},
{
eventName: "HR Game - ODYSSEY",
details: [
"A team should consist of 4 members and multiple event participation is not allowed.",
"Mobile phones are not allowed during the game.",
"Participants must bring their college ID card and laptops.",
"If any fraudulent practices are made, the team will be disqualified.",
"Decisions made by the judge would be final."
],
firstprize: 15000,
secondprize: 7000
},
{
eventName: "Treasure Hunt",
details: [
"Use of mobile phones is strictly prohibited in this round.",
"The participants will be provided with Marker pens and Chart paper.",
"The participants are restricted from using their own vehicles to complete the round.",
"The participants are required to complete both tasks within the stipulated time, and those teams who complete the round within the given time are selected for the final.",
"Any form of malpractices found will lead to the direct elimination of the team."
],
firstprize: 15000,
secondprize: ""
},
{
eventName: "Finance Game - Ludus Lucrorum",
details: [
"A team should consist of four members from the same college.",
"Participants should carry their ID cards during the event.",
"Each team is required to carry at least two laptops.",
"Use of calculator, mobile phones, and other electronic devices are prohibited during the event.",
"Any misconduct or failure to adhere to the rules and regulations will lead to disqualification of the team.",
"Participants should report at the right time for each round, and there will not be any extra time.",
"Decisions of the judges, event heads, and higher authorities of SCMS will be final."
],
firstprize: 15000,
secondprize: 7000
},
{
eventName: "IPL Auction",
details: [
"Event consists of 2 rounds.",
"Event is open for both PG and UG students of any stream.",
"Teams are allowed to use only non-scientific calculators.",
"Usage of mobile phones are not allowed.",
"Participants should maintain the decorum.",
"If any fraudulent practices are made, the team will be disqualified.",
"Decision made by the judge would be the final decision.",
"No Re-Auction would be conducted."
],
firstprize: 10000,
secondprize: 5000
},
{
eventName: "Business Quiz",
details: [
"No use of internet is permitted unless specifically mentioned.",
"Any form of cheating will lead to disqualification.",
"Event coordinators’ decision(s) will be final for the 1st 3 rounds.",
"Judge’s decision(s) will be final for the final round.",
"Technical requirements: Every team should have 1 laptop each.",
"If anyone has any queries, they need to ask before the rounds begin."
],
firstprize: 8000,
secondprize: 4000
},
{
eventName: "Ideathon",
details: [
"A team should consist of min 2 and max 3 members, and multiple event participation is not allowed.",
"Any number of teams can participate from the same college.",
"All team members should be of the same college.",
"The game will be conducted only if there are minimum of four teams.",
"Decisions of the judges will be final.",
"All the participants must report at the registration desk before 10.00 AM.",
"All the teams should bring their own laptops.",
"Participants must not resort to any malpractices which can lead to disqualification."
],
firstprize: 8000,
secondprize: 4000
},
{
eventName: "3x3 Football",
details: [
"Knockout matches.",
"Substitutions can be made at any time during the match.",
"All FIFA rules apply with the exception of offside.",
"Time - 12 minutes (6+6). If the match ends in a draw - penalty shootout.",
"The decisions made by the referee during the matches are absolute and final."
],
firstprize: 7000,
secondprize: 5000
}
];