-
Notifications
You must be signed in to change notification settings - Fork 0
/
Quiz code.cpp
446 lines (431 loc) · 13.5 KB
/
Quiz code.cpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
//Programming a test with alternatives in C ++ language.
//Initialization
#include <iostream>
using namespace std;
int main()
{
int x,points;//use int for numbers
points=0;//i initialize points with value 0
cout<<"\t\n\n\ WELCOME!!!"<<endl;
cout<<"\nIn the following questions choose one of the numbers (1,2,3,4)."<<endl;
do//we use do while cycle. This cycle is executed whenever the condition is true
{
cout<<"\nWhat is the correct syntax to give 'Hello World' in C ++?"<<endl;
cout<<"1. Console.WriteLine('Hello World')"<<endl;
cout<<"2. print ('Hello World')"<<endl;
cout<<"3. cout << 'Hello World'"<<endl;
cout<<"4. System.out.println('Hello World') \nYour answer:"<<endl;
cin>>x;// the user selects the alternative
if((x<1)||(x>4))// use the if else loop to see which of the answers is correct
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;//if you choose a number other than 1,2,3,4, the question returns
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==3)// if the number selected by the user is 3
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;// then the screen will appear correct
cout<<"You got 1 point."<<endl;// for each correct answer 1 point is earned
points+=1;// points will be added one by one for each correct alternative
cout<<"So far you have: "<<points<<" points."<<endl;// the number of points collected from the beginning of the test is displayed
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;//if the answer is different from 3 the error is displayed on the screen
cout<<"You got 0 points."<<endl;// wrong answers have o points
cout<<"The correct answer is 3."<<endl;
points+=0;//the value is added by 0
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));// the loop is repeated if the user does not enter one of the numbers
{
do
{
cout<<"\nHow do you create a variable with the numeric value 5?"<<endl;
cout<<"1. int x = 5"<<endl;
cout<<"2. num x = 5"<<endl;
cout<<"3. x = 5"<<endl;
cout<<"4. double x = 5 \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==1)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 1."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nWhat method can be used to find the length of a string?"<<endl;
cout<<"1. getLength()"<<endl;
cout<<"2. getSize()"<<endl;
cout<<"3. len()"<<endl;
cout<<"4. length() \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==4)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 4."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nWhich operator can be used to compare two values? "<<endl;
cout<<"1. ><"<<endl;
cout<<"2. =="<<endl;
cout<<"3. <>"<<endl;
cout<<"4. = \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==2)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 2."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nHow do you start writing the if loop in C ++?"<<endl;
cout<<"1. if (x > y)"<<endl;
cout<<"2. if x > y then "<<endl;
cout<<"3. if x > y:"<<endl;
cout<<"4. if[x>y] \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==1)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 1."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nFrom the given alternatives what is the correct way of writing a comment?"<<endl;
cout<<"1. * / comment *"<<endl;
cout<<"2. ** comment **"<<endl;
cout<<"3. / * comment * /"<<endl;
cout<<"4. {comment} \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==3)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 3."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nUsing the break statement you can: "<<endl;
cout<<"1. We interrupt the cycle"<<endl;
cout<<"2. Overcoming the cycle residue in the next step"<<endl;
cout<<"3. The beginning of the cycle"<<endl;
cout<<"4. There is no function \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==1)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 1."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nWhich of the following sequences represents a new row: backslash"<<endl;
cout<<"1. t"<<endl;
cout<<"2. n"<<endl;
cout<<"3. a"<<endl;
cout<<"4. b \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==2)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 2."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nWhat punctuation is used to signal the beginning and end of blocks of code?"<<endl;
cout<<"1. -> dhe <-"<<endl;
cout<<"2. START and END"<<endl;
cout<<"3. (and)"<<endl;
cout<<"4. {} \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==4)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 4."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));
do
{
cout<<"\nWhich of the following instructions is not a cyclic or iterative instruction?"<<endl;
cout<<"1. If"<<endl;
cout<<"2. While"<<endl;
cout<<"3. For"<<endl;
cout<<"4. Do....While \nYour answer:"<<endl;
cin>>x;
if((x<1)||(x>4))
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong number! Please provide the correct alternative."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
if(x==1)
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Correct!"<<endl;
cout<<"You got 1 point."<<endl;
points+=1;
cout<<"So far you have:"<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
else
{
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Wrong!"<<endl;
cout<<"You got 0 points."<<endl;
cout<<"The correct answer is 1."<<endl;
points+=0;
cout<<"So far you have: "<<points<<" points."<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
}
}
}
while((x<1)||(x>4));// the loop is repeated if the user does not enter one of the numbers
if(points<=4)//use the if else cycle again, in order to find the corresponding note for points received
// if points are less than 4
{
cout<<"Your points are:"<<points<<endl;// write received points
cout<<"You have received the grade:4"<<endl;// grade
}
else if(points<=5)//if the points are less than or equal to 5 the grade 5 is set
{
cout<<"Your points are:"<<points<<endl;
cout<<"You have received the grade:5"<<endl;
}
else if(points<=6)//the cycle is repeated for different points that the user can get
{
cout<<"Your points are:"<<points<<endl;
cout<<"You have received the grade:6"<<endl;
}
else if(points<=7)
{
cout<<"Your points are:"<<points<<endl;
cout<<"You have received the grade:7"<<endl;
}
else if(points<=8)
{
cout<<"Your points are:"<<points<<endl;
cout<<"You have received the grade:8"<<endl;
}
else if(points<=9)
{
cout<<"Your points are:"<<points<<endl;
cout<<"You have received the grade:9"<<endl;
}
else if(points<=10)//
{
cout<<"Your points are:"<<points<<"."<<endl;
cout<<"You have received the grade:10."<<endl;
}
cout<<"\n\nGoodbye!!!"<<endl;// goodbye is displayed after points and grades are displayed
}
return 0;
}//end