-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasy.json
More file actions
502 lines (502 loc) · 12.5 KB
/
Copy patheasy.json
File metadata and controls
502 lines (502 loc) · 12.5 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
[
{
"words": "STRING",
"clue": "A sequence of characters used to represent text.",
"difficulty": "EASY"
},
{
"words": "INTEGER",
"clue": "Stores whole numbers without decimal points.",
"difficulty": "EASY"
},
{
"words": "BOOLEAN",
"clue": "Stores only true or false values.",
"difficulty": "EASY"
},
{
"words": "VOID",
"clue": "A return type indicating a function returns nothing.",
"difficulty": "EASY"
},
{
"words": "TYPE",
"clue": "A classification specifying the kind of value a variable holds.",
"difficulty": "EASY"
},
{
"words": "VARIABLE",
"clue": "Used to store a value that can change during program execution.",
"difficulty": "EASY"
},
{
"words": "LOOP",
"clue": "Repeats a block of code as long as a condition is true.",
"difficulty": "EASY"
},
{
"words": "CONSTANT",
"clue": "Stores a value that cannot be changed once assigned.",
"difficulty": "EASY"
},
{
"words": "RETURN",
"clue": "Sends a value back from a function.",
"difficulty": "EASY"
},
{
"words": "FLOAT",
"clue": "Stores numbers that contain decimal values.",
"difficulty": "EASY"
},
{
"words": "ARRAY",
"clue": "Stores multiple values in a single variable using indexes.",
"difficulty": "EASY"
},
{
"words": "INPUT",
"clue": "Refers to data entered by the user into a program.",
"difficulty": "EASY"
},
{
"words": "OUTPUT",
"clue": "The result shown after the program processes data.",
"difficulty": "EASY"
},
{
"words": "CHAR",
"clue": "Represents a single character such as a letter.",
"difficulty": "EASY"
},
{
"words": "DOUBLE",
"clue": "Stores larger decimal numbers with higher precision.",
"difficulty": "EASY"
},
{
"words": "PRINT",
"clue": "Displays output on the screen.",
"difficulty": "EASY"
},
{
"words": "SCAN",
"clue": "Reads input from the user.",
"difficulty": "EASY"
},
{
"words": "NULL",
"clue": "Means a variable has no value assigned.",
"difficulty": "EASY"
},
{
"words": "TRUE",
"clue": "Represents a correct or valid condition in programming.",
"difficulty": "EASY"
},
{
"words": "FALSE",
"clue": "Represents an incorrect or invalid condition.",
"difficulty": "EASY"
},
{
"words": "VALUE",
"clue": "The actual data stored in a variable.",
"difficulty": "EASY"
},
{
"words": "DATA",
"clue": "Refers to raw information processed by a program.",
"difficulty": "EASY"
},
{
"words": "CODE",
"clue": "A set of instructions written for a computer.",
"difficulty": "EASY"
},
{
"words": "DEBUG",
"clue": "The process of finding and fixing errors in code.",
"difficulty": "EASY"
},
{
"words": "ERROR",
"clue": "Occurs when something goes wrong in the program.",
"difficulty": "EASY"
},
{
"words": "LOGIC",
"clue": "The reasoning used to create correct program flow.",
"difficulty": "EASY"
},
{
"words": "PROGRAM",
"clue": "A collection of instructions that perform a task.",
"difficulty": "EASY"
},
{
"words": "METHOD",
"clue": "A function inside a class.",
"difficulty": "EASY"
},
{
"words": "INDEX",
"clue": "The position of an element in an array.",
"difficulty": "EASY"
},
{
"words": "LENGTH",
"clue": "Measures the number of elements or characters.",
"difficulty": "EASY"
},
{
"words": "COUNT",
"clue": "Tracks how many items are in a collection.",
"difficulty": "EASY"
},
{
"words": "BREAK",
"clue": "Stops a loop immediately.",
"difficulty": "EASY"
},
{
"words": "CONTINUE",
"clue": "Skips the current loop iteration.",
"difficulty": "EASY"
},
{
"words": "MAIN",
"clue": "The starting point of a program.",
"difficulty": "EASY"
},
{
"words": "CALL",
"clue": "Executes a function or method.",
"difficulty": "EASY"
},
{
"words": "TEST",
"clue": "Checks if a program works correctly.",
"difficulty": "EASY"
},
{
"words": "READ",
"clue": "Retrieves data from a file.",
"difficulty": "EASY"
},
{
"words": "WRITE",
"clue": "Stores data into a file.",
"difficulty": "EASY"
},
{
"words": "RUNTIME",
"clue": "The period when the program is executing.",
"difficulty": "EASY"
},
{
"words": "MEMORY",
"clue": "Stores data temporarily while a program runs.",
"difficulty": "EASY"
},
{
"words": "SWITCH",
"clue": "Selects one option from multiple cases.",
"difficulty": "EASY"
},
{
"words": "CASE",
"clue": "Defines a specific condition in a switch statement.",
"difficulty": "EASY"
},
{
"words": "DEFAULT",
"clue": "Runs when no case matches in a switch statement.",
"difficulty": "EASY"
},
{
"words": "ELSE",
"clue": "Provides an alternative block of code when the condition is false.",
"difficulty": "EASY"
},
{
"words": "CONDITION",
"clue": "A rule that controls program decisions.",
"difficulty": "EASY"
},
{
"words": "COUNTER",
"clue": "Tracks how many times a loop runs.",
"difficulty": "EASY"
},
{
"words": "SUM",
"clue": "The total result of added values.",
"difficulty": "EASY"
},
{
"words": "AVERAGE",
"clue": "The sum divided by the number of values.",
"difficulty": "EASY"
},
{
"words": "EQUAL",
"clue": "Checks if two values are the same.",
"difficulty": "EASY"
},
{
"words": "GREATER",
"clue": "Checks if one value is larger than another.",
"difficulty": "EASY"
},
{
"words": "LESS",
"clue": "Checks if one value is smaller than another.",
"difficulty": "EASY"
},
{
"words": "MODULO",
"clue": "Returns the remainder of a division.",
"difficulty": "EASY"
},
{
"words": "OPERATOR",
"clue": "Performs mathematical or logical operations.",
"difficulty": "EASY"
},
{
"words": "OPERAND",
"clue": "A value used in an operation.",
"difficulty": "EASY"
},
{
"words": "ADD",
"clue": "Combines two values together.",
"difficulty": "EASY"
},
{
"words": "DIVIDE",
"clue": "Splits a number into equal parts.",
"difficulty": "EASY"
},
{
"words": "MULTIPLY",
"clue": "Performs repeated addition of a number.",
"difficulty": "EASY"
},
{
"words": "INCREMENT",
"clue": "Increases a value by one.",
"difficulty": "EASY"
},
{
"words": "DECREMENT",
"clue": "Decreases a value by one.",
"difficulty": "EASY"
},
{
"words": "COMPARE",
"clue": "Checks differences between two values.",
"difficulty": "EASY"
},
{
"words": "DECISION",
"clue": "Determines which code block will run.",
"difficulty": "EASY"
},
{
"words": "STATEMENT",
"clue": "A single instruction in a program.",
"difficulty": "EASY"
},
{
"words": "EXPRESSION",
"clue": "Combines values and operators to produce a result.",
"difficulty": "EASY"
},
{
"words": "FLOWCHART",
"clue": "A diagram that shows program logic steps.",
"difficulty": "EASY"
},
{
"words": "USER",
"clue": "Interacts with the program.",
"difficulty": "EASY"
},
{
"words": "PATH",
"clue": "Shows the location of a file.",
"difficulty": "EASY"
},
{
"words": "OPEN",
"clue": "Allows access to a file.",
"difficulty": "EASY"
},
{
"words": "CLOSE",
"clue": "Ends access to a file.",
"difficulty": "EASY"
},
{
"words": "FILE",
"clue": "Stores data permanently in a computer.",
"difficulty": "EASY"
},
{
"words": "RUN",
"clue": "Executes the program.",
"difficulty": "EASY"
},
{
"words": "START",
"clue": "Where program execution begins.",
"difficulty": "EASY"
},
{
"words": "STOP",
"clue": "Ends program execution.",
"difficulty": "EASY"
},
{
"words": "NAME",
"clue": "Identifies a variable or file.",
"difficulty": "EASY"
},
{
"words": "PASS",
"clue": "Used to verify user access.",
"difficulty": "EASY"
},
{
"words": "PSEUDOCODE",
"clue": "A simplified way of writing program logic.",
"difficulty": "EASY"
},
{
"words": "DECLARATION",
"clue": "Defining a variable before using it.",
"difficulty": "EASY"
},
{
"words": "ASSIGNMENT",
"clue": "Gives a value to a variable.",
"difficulty": "EASY"
},
{
"words": "INSTRUCTION",
"clue": "A command given to a computer to perform a specific operation.",
"difficulty": "EASY"
},
{
"words": "NAVIGATION",
"clue": "Moving through data or user interfaces.",
"difficulty": "EASY"
},
{
"words": "SORTING",
"clue": "A process of arranging data in a specific order.",
"difficulty": "EASY"
},
{
"words": "EXECUTION",
"clue": "The process of running a program.",
"difficulty": "EASY"
},
{
"words": "COMPARISON",
"clue": "A process of checking values for equality or difference.",
"difficulty": "EASY"
},
{
"words": "FUNCTION",
"clue": "A block of code that performs a task.",
"difficulty": "EASY"
},
{
"words": "DEBUGGING",
"clue": "Finding and fixing errors in code.",
"difficulty": "EASY"
},
{
"words": "ARGUMENT",
"clue": "A value passed to a function.",
"difficulty": "EASY"
},
{
"words": "DATATYPE",
"clue": "The type of data a variable holds.",
"difficulty": "EASY"
},
{
"words": "LOOPING",
"clue": "Repeating a block of code.",
"difficulty": "EASY"
},
{
"words": "ITERATION",
"clue": "One repeat of a loop.",
"difficulty": "EASY"
},
{
"words": "KEYWORDS",
"clue": "Reserved words in a programming language.",
"difficulty": "EASY"
},
{
"words": "COMMENTS",
"clue": "Notes in code that are ignored by the program.",
"difficulty": "EASY"
},
{
"words": "FORMATTER",
"clue": "Changes the appearance of data.",
"difficulty": "EASY"
},
{
"words": "CONVERTER",
"clue": "Changes data from one type to another.",
"difficulty": "EASY"
},
{
"words": "DATABASE",
"clue": "An organized collection of data.",
"difficulty": "EASY"
},
{
"words": "FILTERING",
"clue": "Selecting specific data based on criteria.",
"difficulty": "EASY"
},
{
"words": "LIBRARY",
"clue": "A collection of reusable code.",
"difficulty": "EASY"
},
{
"words": "PULLING",
"clue": "Getting the latest updates from a repository.",
"difficulty": "EASY"
},
{
"words": "PUSHING",
"clue": "Sending local changes to a repository.",
"difficulty": "EASY"
},
{
"words": "TESTING",
"clue": "Checking a program for correctness.",
"difficulty": "EASY"
},
{
"words": "RESPONSE",
"clue": "A reply sent from a server.",
"difficulty": "EASY"
},
{
"words": "CONTINUE",
"clue": "Skips the current iteration and moves to the next loop cycle.",
"difficulty": "EASY"
}
]