forked from Multiplayer-Game-Server/Multiplayer_Game_Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.json
More file actions
1002 lines (1002 loc) · 24 KB
/
questions.json
File metadata and controls
1002 lines (1002 loc) · 24 KB
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"question": "What is a variable in programming?",
"options": [
"A way of storing data",
"Command",
"Error",
"Operator"
],
"answer": 0
},
{
"question": "What is the process of finding and fixing errors in a program?",
"options": [
"Compilation",
"Decomposition",
"Debugging",
"Optimization"
],
"answer": 2
},
{
"question": "What does the if statement do in the code?",
"options": [
"Repeats a block of code",
"Performs a condition check",
"Outputs text",
"Stops the program"
],
"answer": 1
},
{
"question": "What data type is used to store integers?",
"options": [
"float",
"char",
"int",
"string"
],
"answer": 2
},
{
"question": "What is a function in programming?",
"options": [
"Variable",
"A sequence of commands with a name",
"Workable code",
"Cycle"
],
"answer": 1
},
{
"question": "What character is commonly used to indicate comments in Python?",
"options": [
"#",
"//",
"/* */",
"<!-- -->"
],
"answer": 0
},
{
"question": "What is a for loop?",
"options": [
"Cycle with precondition",
"Cycle with postcondition",
"Cycle with parameters",
"Infinite сycle"
],
"answer": 2
},
{
"question": "What is the name of the \"first in, first out\" data structure?",
"options": [
"Stack",
"Queue",
"Array",
"Dictionary"
],
"answer": 1
},
{
"question": "What is a class in OOP?",
"options": [
"Object",
"Function",
"Object Template",
"Variable"
],
"answer": 2
},
{
"question": "What is inheritance in OOP?",
"options": [
"The process of creating a copy of an object",
"Passing properties and methods from one class to another",
"Creating functions",
"Restarting a program"
],
"answer": 1
},
{
"question": "What does SQL stand for?",
"options": [
"Sequential Question Language",
"Structured Query Language",
"Simple Query Language",
"Standard Query List"
],
"answer": 1
},
{
"question": "What operator is used to combine conditions in SQL?",
"options": [
"AND",
"JOIN",
"MERGE",
"UNION"
],
"answer": 0
},
{
"question": "What is \"localhost\"?",
"options": [
"External server",
"Local server on the computer",
"Database",
"Network protocol"
],
"answer": 1
},
{
"question": "What is an IP address?",
"options": [
"Username",
"Computer ID on a network",
"Data file",
"Operating system"
],
"answer": 1
},
{
"question": "What protocol is responsible for transferring web pages?",
"options": [
"FTP",
"HTTP",
"SMTP",
"SSH"
],
"answer": 1
},
{
"question": "What is DNS?",
"options": [
"Encoding software",
"Domain name to IP address conversion service",
"User database",
"Authorization mechanism"
],
"answer": 1
},
{
"question": "What does the push() method do on the stack?",
"options": [
"Deletes an item",
"Adds an item",
"Updates an item",
"Searches for an item"
],
"answer": 1
},
{
"question": "What does the pop() method do on the stack?",
"options": [
"Adds an element",
"Returns the first element",
"Deletes the last element added",
"Updates all elements"
],
"answer": 2
},
{
"question": "What is an algorithm?",
"options": [
"A sequence of actions to achieve a result",
"Database",
"Operating system",
"Network program"
],
"answer": 0
},
{
"question": "Which programming language is considered the oldest popular programming language?",
"options": [
"Python",
"C",
"Java",
"Fortran"
],
"answer": 3
},
{
"question": "What is a compiler?",
"options": [
"A program to run applications",
"A program to translate code into an executable file",
"Antivirus",
"Server program"
],
"answer": 1
},
{
"question": "What is the name of the last-in-first-out data structure?",
"options": [
"Queue",
"Stack",
"Array",
"Tree"
],
"answer": 1
},
{
"question": "What does the return statement do in a function?",
"options": [
"Stops program execution",
"Passes a value from a function",
"Creates a variable",
"Deletes data"
],
"answer": 1
},
{
"question": "What is recursion?",
"options": [
"A function calls another function",
"A function calls itself",
"A function calls a loop",
"A function calls a condition"
],
"answer": 1
},
{
"question": "What symbol is used for logical OR in Python?",
"options": [
"||",
"&&",
"or",
"&"
],
"answer": 2
},
{
"question": "What is an array?",
"options": [
"A sequence of commands",
"A sequence of data of the same type",
"A loop in a program",
"A condition block"
],
"answer": 1
},
{
"question": "What programming language is used to create web pages?",
"options": [
"Python",
"C++",
"HTML",
"Java"
],
"answer": 2
},
{
"question": "What does the acronym API stand for?",
"options": [
"Advanced Programming Interface",
"Application Programming Interface",
"Applied Program Integration",
"Application Program Internet"
],
"answer": 1
},
{
"question": "What is an exception in programming?",
"options": [
"Error situation",
"Cycle",
"Function",
"Constant"
],
"answer": 0
},
{
"question": "What does the break operator do in a loop?",
"options": [
"Continues a loop",
"Stops a loop",
"Restarts a loop",
"Deletes a loop"
],
"answer": 1
},
{
"question": "What is the process of converting code into a format understandable by a computer?",
"options": [
"Translation",
"Analysis",
"Interpretation",
"Optimization"
],
"answer": 0
},
{
"question": "What does the continue operator do in a loop?",
"options": [
"Ends the execution of the loop",
"Skips the rest of the iteration and moves on to the next",
"Deletes an element",
"Creates a new iteration"
],
"answer": 1
},
{
"question": "What operator is used for a logical AND in Python?",
"options": [
"&&",
"and",
"||",
"&"
],
"answer": 1
},
{
"question": "What is an IDE?",
"options": [
"Program to write code",
"Library",
"Process",
"Loop"
],
"answer": 0
},
{
"question": "What is a class constructor?",
"options": [
"A function to create an instance",
"Variable",
"Constant",
"Cycle"
],
"answer": 0
},
{
"question": "What does CRUD mean in databases?",
"options": [
"Create, Read, Update, Delete",
"Copy, Remove, Upload, Download",
"Create, Refresh, Update, Destroy",
"Check, Read, Update, Delete"
],
"answer": 0
},
{
"question": "What does the INSERT command do in SQL?",
"options": [
"Delete a record",
"Update a record",
"Add a new record",
"Search a record"
],
"answer": 2
},
{
"question": "What is primary key in SQL?",
"options": [
"Key to join tables",
"Unique record identifier",
"Search index",
"Data type"
],
"answer": 1
},
{
"question": "What does HTML mean?",
"options": [
"HyperText Markup Language",
"Home Tool Markup Language",
"Hyperlinks and Text Markup Language",
"Hyperlinking Text Mark Language"
],
"answer": 0
},
{
"question": "What does the <a> tag do in HTML?",
"options": [
"Creates a header",
"Creates a link",
"Creates a list",
"Creates a Table"
],
"answer": 1
},
{
"question": "Which programming language compiles directly to machine code?",
"options": [
"Python",
"Java",
"C",
"PHP"
],
"answer": 2
},
{
"question": "What is the == operator?",
"options": [
"Assignment",
"Equality comparison",
"Termination condition",
"String concatenation"
],
"answer": 1
},
{
"question": "What does JSON abbreviation mean?",
"options": [
"JavaScript Open Notation",
"Java Standard Object Notation",
"JavaScript Object Notation",
"Just Simple Object Notation"
],
"answer": 2
},
{
"question": "What is a library in programming?",
"options": [
"Program",
"Code Collection",
"Error in Code",
"Operating System"
],
"answer": 1
},
{
"question": "What is an object in OOP?",
"options": [
"Function",
"Class Instance",
"Variable",
"Array"
],
"answer": 1
},
{
"question": "What statement terminates a program in Python when an error occurs?",
"options": [
"exit()",
"continue",
"return",
"pass"
],
"answer": 0
},
{
"question": "What does the UPDATE command do in SQL?",
"options": [
"Adds a record",
"Deletes a record",
"Modifies a record",
"Reads a record"
],
"answer": 2
},
{
"question": "What is an environment variable?",
"options": [
"Operating system parameters",
"Variable in code",
"Function",
"Data type"
],
"answer": 0
},
{
"question": "What does the “!=” operator do?",
"options": [
"Compares for equality",
"Checks for inequality",
"Adds values",
"Clears a value"
],
"answer": 1
},
{
"question": "What is a method in a class?",
"options": [
"Constant",
"Function within a class",
"Loop",
"Database"
],
"answer": 1
},
{
"question": "What does the bug mean?",
"options": [
"Code optimization",
"Error in a program",
"Program improvement",
"Running a program"
],
"answer": 1
},
{
"question": "What is a module in Python?",
"options": [
"Separate code file",
"Loop",
"Function",
"Variable"
],
"answer": 0
},
{
"question": "What does the += operator do?",
"options": [
"Multiplies a value",
"Increases a value",
"Divides a value",
"Nullifies a value"
],
"answer": 1
},
{
"question": "What is a string in programming?",
"options": [
"Numeric value",
"Boolean value",
"Character sequence",
"Loop type"
],
"answer": 2
},
{
"question": "What does commit mean in Git?",
"options": [
"Deleting a project",
"Creating a copy of the project",
"Fixing changes",
"Updating the system"
],
"answer": 2
},
{
"question": "Which language is considered the basic language for creating styles on web pages?",
"options": [
"HTML",
"CSS",
"JavaScript",
"PHP"
],
"answer": 1
},
{
"question": "What does the term Frontend mean?",
"options": [
"Server side",
"Client side",
"Database",
"API interface"
],
"answer": 1
},
{
"question": "What does the append() method do in a Python list?",
"options": [
"Deletes an item",
"Adds an item to the end of the list",
"Moves an item",
"Modifies an item"
],
"answer": 1
},
{
"question": "What does the SELECT DISTINCT command do in SQL?",
"options": [
"Selects unique values",
"Selects duplicates",
"Deletes records",
"Adds new records"
],
"answer": 0
},
{
"question": "What is async in programming?",
"options": [
"Parallel code execution",
"Queuing code execution",
"Running code after completion",
"Execution error"
],
"answer": 0
},
{
"question": "What is recursion?",
"options": [
"The process of calling a function on itself",
"Loop type",
"Data structure",
"Sorting an array"
],
"answer": 0
},
{
"question": "What does the “==” operator do in Python?",
"options": [
"Assigns a value",
"Compares two values",
"Adds two numbers",
"Creates a variable"
],
"answer": 1
},
{
"question": "What is array in programming?",
"options": [
"Function",
"Variable",
"Array of elements",
"Condition"
],
"answer": 2
},
{
"question": "What is the name of a key-value database?",
"options": [
"Relational database",
"SQL database",
"NoSQL database",
"Graph database"
],
"answer": 2
},
{
"question": "What language is used for marking up web pages?",
"options": [
"Python",
"HTML",
"C++",
"Java"
],
"answer": 1
},
{
"question": "What is a for loop?",
"options": [
"A loop with a known number of iterations",
"A loop with an unknown number of iterations",
"Conditional statement",
"Error"
],
"answer": 0
},
{
"question": "What is the name of the programming language for iOS?",
"options": [
"Python",
"Swift",
"Kotlin",
"Go"
],
"answer": 1
},
{
"question": "What data type stores a logical value?",
"options": [
"int",
"bool",
"char",
"float"
],
"answer": 1
},
{
"question": "What does the len() function return in Python?",
"options": [
"Array",
"List",
"Object length",
"Object copy"
],
"answer": 2
},
{
"question": "What is a conditional statement?",
"options": [
"Cycle",
"Function",
"Condition check",
"Variable"
],
"answer": 2
},
{
"question": "What does the print() command do?",
"options": [
"Runs a loop",
"Outputs data to the screen",
"Creates a file",
"Deletes data"
],
"answer": 1
},
{
"question": "Which language is compiled?",
"options": [
"Python",
"Java",
"C++",
"HTML"
],
"answer": 2
},
{
"question": "What operator is used for logical And in Python?",
"options": [
"||",
"&&",
"and",
"or"
],
"answer": 2
},
{
"question": "What is the name of the base database element?",
"options": [
"Table",
"Function",
"Loop",
"Variable"
],
"answer": 0
},
{
"question": "What does the operator “+” do with two strings in Python?",
"options": [
"Multiplies Them",
"Compares Them",
"Concatenates Them",
"Removes Them"
],
"answer": 2
},
{
"question": "How do I use it to enter user data in Python?",
"options": [
"scan()",
"read()",
"input()",
"get()"
],
"answer": 2
},
{
"question": "What is GitHub?",
"options": [
"Programming language",
"Platform for version control and collaboration",
"Code Editor",
"Database"
],
"answer": 1
},
{
"question": "What does the application programming interface mean?",
"options": [
"Advanced programming interface",
"Application Programming Interface",
"Automated interaction with programs",
"Application Program Internet"
],
"answer": 1
},
{
"question": "How is this method used to create a link in HTML?",
"options": [
"<link>",
"<a>",
"<h1>",
"<p>"
],
"answer": 1
},
{
"question": "What is an IDE?",
"options": [
"Integrated Development Environment",
"Database",
"Programming Language",
"Array"
],
"answer": 0
},
{
"question": "Which method adds an item to the end of a list in Python?",
"options": [
"append()",
"insert()",
"add()",
"push()"
],
"answer": 0
},
{
"question": "What does the ** operator do in Python?",
"options": [
"Division",
"Exponentiation",
"Multiplication",
"Modular division"
],
"answer": 1
},
{
"question": "What is a framework?",
"options": [
"Compiler",
"Code library",
"Software solution template",
"Function"
],
"answer": 2
},
{
"question": "What is the name of the main data transfer protocol on the Internet?",
"options": [
"FTP",
"SMTP",
"HTTP",
"TCP"
],
"answer": 2
},
{
"question": "Which method removes an item from a list in Python?",
"options": [
"delete()",
"remove()",
"erase()",
"cut()"
],
"answer": 1
},
{
"question": "What is a variable?",
"options": [
"Condition",
"Function name",
"Object to store data",
"Library"
],
"answer": 2
},
{
"question": "What operator is used for the remainder of division in Python?",
"options": [
"/",
"%",
"*",
"//"
],
"answer": 1
},
{
"question": "What is a compiler?",
"options": [
"Text editor",
"A program that converts code into an executable file",
"Database",
"Version control system"
],
"answer": 1
},
{
"question": "What does frontend mean in development?",
"options": [
"Developing server-side logic",
"Developing the client side of an application",
"Working with databases",
"Designing an architecture"
],
"answer": 1
},
{
"question": "What language is usually used to write the server side?",
"options": [
"HTML",
"CSS",
"JavaScript",
"Python"
],
"answer": 3
},
{
"question": "What does debugging mean?",
"options": [
"Adding new functions",
"Removing bugs from the program",
"Optimizing the code",
"Creating a new project"
],
"answer": 1
},
{
"question": "Which operator checks whether an item belongs to the list in Python?",
"options": [
"in",
"==",
"is",
"not"
],
"answer": 0
},
{
"question": "What is a \"repository\" in Git?",
"options": [
"Error",
"Code Library",
"Project storage with version history",
"Function"
],
"answer": 2
},
{
"question": "What is JSON?",
"options": [
"Programming language",
"Data storage and transmission format",
"Version control system",
"Program"
],
"answer": 1
},
{
"question": "What does OOP mean?",
"options": [
"Online Operating Program",
"Object-Oriented Programming",
"Open Object Project",
"Open Operating Platform"
],
"answer": 1
},
{
"question": "What type of data is an integer?",
"options": [
"str",
"float",
"int",
"bool"
],
"answer": 2
},
{
"question": "Which method in Python sorts the list?",
"options": [
"sort()",
"order()",
"arrange()",
"align()"
],
"answer": 0
},
{
"question": "What is a stack in programming?",
"options": [
"Array type",
"LIFO data structure",
"Function",
"Server"
],
"answer": 1
},
{
"question": "What language is used for animation on websites?",
"options": [
"HTML",
"CSS",
"JavaScript",
"SQL"
],
"answer": 2
},
{
"question": "What does the DRY principle mean in programming?",
"options": [
"Do not Repeat Yourself",
"Do Right Yourself",
"Dynamic Response Yield",
"Data Return Yard"
],
"answer": 0