Matthias Nott
3 days ago eb62fc6c4c21fa4436dcf1283daa2be4e34d6f6f
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
{
  "10": [
    {
      "num": 21,
      "text": "What is the purpose of the signal square at an aerodrome?",
      "options": {
        "A": "It is an illuminated area on which search and rescue and fire fighting vehicles are placed",
        "B": "It contains special symbols to indicate the conditions at the aerodrome visually to over-flying aircraft",
        "C": "Aircraft taxi to this square to get light signals for taxi and take-off clearance",
        "D": "It is a specially marked area to pick up or drop towing objects"
      },
      "correct": "B"
    },
    {
      "num": 22,
      "text": "How are two parallel runways designated?",
      "options": {
        "A": "The left runway gets the suffix \"L\", the right runway remains unchanged",
        "B": "The left runway gets the suffix \"L\", the right runway \"R\"",
        "C": "The left runway remains unchanged, the right runway designator is increased by 1",
        "D": "The left runway gets the suffix \"-1\", the right runway \"-2\""
      },
      "correct": "B"
    },
    {
      "num": 23,
      "text": "Which runway designators are correct for 2 parallel runways?",
      "options": {
        "A": "\"26\" and \"26R\"",
        "B": "\"06L\" and \"06R\"",
        "C": "\"18\" and \"18-2\"",
        "D": "\"24\" and \"25\""
      },
      "correct": "B"
    },
    {
      "num": 24,
      "text": "What is the meaning of this sign at an aerodrome? See figure (ALW-011) Siehe Anlage 1",
      "options": {
        "A": "After take-off and before landing all turns have to be made to the right",
        "B": "Caution, manoeuvring area is poor",
        "C": "Glider flying is in progress",
        "D": "Landing prohibited for a longer period"
      },
      "correct": "C"
    },
    {
      "num": 25,
      "text": "What is the meaning of \"DETRESFA\"?",
      "options": {
        "A": "Distress phase",
        "B": "Alerting phase",
        "C": "Uncertainty phase",
        "D": "Rescue phase"
      },
      "correct": "A"
    },
    {
      "num": 26,
      "text": "Who provides search and rescue service?",
      "options": {
        "A": "Only civil organisations",
        "B": "Both military and civil organisations",
        "C": "Only military organisations",
        "D": "International approved organisations"
      },
      "correct": "B"
    },
    {
      "num": 27,
      "text": "With respect to aircraft accident and incident investigation, what are the three categories regarding aircraft occurrences?",
      "options": {
        "A": "Event Crash Disaster",
        "B": "Event Serious event Accident",
        "C": "Happening Event Serious event",
        "D": "Incident Serious incident Accident"
      },
      "correct": "D"
    },
    {
      "num": 28,
      "text": "During slope soaring you have the hill to your left side, another glider is approaching from the opposite side at the same altitude. How do you react?",
      "options": {
        "A": "You divert to the right",
        "B": "You expect the opposite glider to divert",
        "C": "You divert to the right and expect the opposite glider to do the same",
        "D": "You pull on the elevator and divert upward"
      },
      "correct": "A"
    },
    {
      "num": 29,
      "text": "Along with other gliders, you are circling in a thermal updraft. Who determines the direction of circling?",
      "options": {
        "A": "Circling is general to the left",
        "B": "The glider who entered the updraft at first",
        "C": "The glider with greatest bank angle",
        "D": "The glider at highest altitude"
      },
      "correct": "B"
    },
    {
      "num": 30,
      "text": "Is it possible to enter airspace C with a glider plane?",
      "options": {
        "A": "Yes, but only with transponder activated",
        "B": "No",
        "C": "With restrictions, in case of less air traffic",
        "D": "Yes, but only with approval of the respective ATC unit"
      },
      "correct": "D"
    },
    {
      "num": 44,
      "text": "What is indicated by a pattern of longitudinal stripes of uniform dimensions disposed symmetrically about the centerline of a runway?",
      "options": {
        "A": "At this point the glide path of an ILS hits the runway",
        "B": "Do not touch down before them",
        "C": "Do not touch down behind them",
        "D": "A ground roll could be started from this position"
      },
      "correct": "B"
    },
    {
      "num": 55,
      "text": "How can a pilot confirm a search and rescue signal on ground in flight?",
      "options": {
        "A": "Push the rudder in both directions multiple times",
        "B": "Fly in a parabolic flight path multiple times",
        "C": "Rock the wings",
        "D": "Deploy and retract the landing flaps multiple times"
      },
      "correct": "C"
    },
    {
      "num": 59,
      "text": "An aerodrome beacon (ABN) is a...",
      "options": {
        "A": "Fixed beacon installed at an airport or aerodrome to indicate its location to aircraft pilots from the air",
        "B": "Rotating beacon installed at the beginning of the final approach to indicate its location to aircraft pilots from the air.",
        "C": "Rotating beacon installed at an airport or aerodrome to indicate its location to aircraft pilots from the air.",
        "D": "Rotating beacon installed at an airport or aerodrome to indicate its location to aircraft pilots from the ground."
      },
      "correct": "C"
    },
    {
      "num": 60,
      "text": "What is the primary purpose of an aircraft accident investigation?",
      "options": {
        "A": "To identify the reasons and work out safety recommendations",
        "B": "To clarify questions of liability within the meaning of compensation for passengers",
        "C": "To work for the public prosecutor and help to follow-up flight accidents",
        "D": "To Determine the guilty party and draw legal consequences"
      },
      "correct": "A"
    },
    {
      "num": 65,
      "text": "Which validity does the Certificate of Airworthiness have?",
      "options": {
        "A": "Unlimited",
        "B": "12 years",
        "C": "6 months",
        "D": "12 months"
      },
      "correct": "A"
    },
    {
      "num": 66,
      "text": "What is the meaning of the abbreviation ARC?",
      "options": {
        "A": "Airworthiness Recurring Control",
        "B": "Airspace Rulemaking Committee",
        "C": "Airworthiness Review Certificate",
        "D": "Airspace Restriction Criteria"
      },
      "correct": "C"
    },
    {
      "num": 67,
      "text": "The Certificate of Airworthiness is issued by the state...",
      "options": {
        "A": "Of the residence of the owner",
        "B": "In which the aircraft is registered.",
        "C": "In which the airworthiness review is done.",
        "D": "In which the aircraft is constructed."
      },
      "correct": "B"
    },
    {
      "num": 68,
      "text": "What is the meaning of the abbreviation SERA?",
      "options": {
        "A": "Selective Radar Altimeter",
        "B": "Standardized European Rules of the Air",
        "C": "Standard European Routes of the Air",
        "D": "Specialized Radar Approach"
      },
      "correct": "B"
    },
    {
      "num": 69,
      "text": "What is the meaning of the abbreviation TRA?",
      "options": {
        "A": "Transponder Area",
        "B": "Temporary Reserved Airspace",
        "C": "Terminal Area",
        "D": "Temporary Radar Routing Area"
      },
      "correct": "B"
    },
    {
      "num": 70,
      "text": "What is the meaning of an area marked as TMZ?",
      "options": {
        "A": "Transponder Mandatory Zone",
        "B": "Transportation Management Zone",
        "C": "Touring Motorglider Zone",
        "D": "Traffic Management Zone"
      },
      "correct": "A"
    },
    {
      "num": 71,
      "text": "A flight is called a visual flight, if the...",
      "options": {
        "A": "Visibility in flight is more than 5 km.",
        "B": "Flight is conducted under visual flight rules.",
        "C": "Visibility in flight is more than 8 km.",
        "D": "Flight is conducted in visual meteorological conditions."
      },
      "correct": "B"
    },
    {
      "num": 72,
      "text": "What is the meaning of the abbreviation VMC?",
      "options": {
        "A": "Variable meteorological conditions",
        "B": "Visual meteorological conditions",
        "C": "Instrument flight conditions",
        "D": "Visual flight rules"
      },
      "correct": "B"
    },
    {
      "num": 73,
      "text": "What is the minimum flight visibility in airspace E for an aircraft operating under VFR at FL75?",
      "options": {
        "A": "8000 m",
        "B": "1500 m",
        "C": "3000 m",
        "D": "5000 m"
      },
      "correct": "D"
    },
    {
      "num": 74,
      "text": "What is the minimum flight visibility in airspace C for an aircraft operating under VFR at FL110?",
      "options": {
        "A": "1500 m",
        "B": "3000 m",
        "C": "8000 m",
        "D": "5000 m"
      },
      "correct": "C"
    },
    {
      "num": 75,
      "text": "What is the minimum flight visibility in airspace C for an aircraft operating under VFR at FL125?",
      "options": {
        "A": "8000 m",
        "B": "1500 m",
        "C": "5000 m",
        "D": "3000 m"
      },
      "correct": "A"
    },
    {
      "num": 76,
      "text": "What are the minimum distances to clouds for a VFR flight in airspace B?",
      "options": {
        "A": "Horizontally 1.500 m, vertically 300 m",
        "B": "Horizontally 1.500 m, vertically 1.000 m",
        "C": "Horizontally 1.000 m, vertically 300 m",
        "D": "Horizontally 1.000 m, vertically 1.500 ft"
      },
      "correct": "A"
    },
    {
      "num": 77,
      "text": "What is the minimum flight visibility in airspace C below FL 100 for an aircraft operating under VFR?",
      "options": {
        "A": "1.5 km",
        "B": "8 km",
        "C": "5 km",
        "D": "10 km"
      },
      "correct": "C"
    },
    {
      "num": 78,
      "text": "What is the minimum flight visibility in airspace C at and above FL 100 for an aircraft operating under VFR?",
      "options": {
        "A": "1.5 km",
        "B": "10 km",
        "C": "5 km",
        "D": "8 km"
      },
      "correct": "D"
    },
    {
      "num": 79,
      "text": "The term ceiling is defined as the...",
      "options": {
        "A": "Height of the base of the highest layer of clouds covering more than half of the sky below 20000 ft.",
        "B": "Height of the base of the lowest layer of clouds covering more than half of the sky below 10000 ft.",
        "C": "Height of the base of the lowest layer of clouds covering more than half of the sky below 20000 ft.",
        "D": "Altitude of the base of the lowest layer of clouds covering more than half of the sky below 20000 ft."
      },
      "correct": "C"
    },
    {
      "num": 80,
      "text": "Which answer is correct with regard to separation in airspace E?",
      "options": {
        "A": "VFR traffic is not separated from any other traffic",
        "B": "VFR traffic is separated only from IFR traffic",
        "C": "VFR traffic is separated from VFR and IFR traffic",
        "D": "IFR traffic is separated only from VFR traffic"
      },
      "correct": "A"
    },
    {
      "num": 81,
      "text": "What information is provided in the part AD of the AIP?",
      "options": {
        "A": "Warnings for aviation, ATS airspaces and routes, restricted and dangerous airspaces.",
        "B": "Access restrictions for airfields, passenger controls, requirements for pilots, license samples and validity periods",
        "C": "Table of content, classification of airfields with corresponding maps, approach charts, taxi charts",
        "D": "Map icons, list of radio nav aids, time for sunrise and sunset, airport fees, air traffic control fees"
      },
      "correct": "C"
    },
    {
      "num": 82,
      "text": "The term aerodrome elevation is defined as...",
      "options": {
        "A": "The highest point of the apron.",
        "B": "The lowest point of the landing area.",
        "C": "The highest point of the landing area.",
        "D": "The average value of the height of the manoeuvring area."
      },
      "correct": "C"
    },
    {
      "num": 83,
      "text": "The term runway is defined as a...",
      "options": {
        "A": "Round area on an aerodrome prepared for the landing and take-off of aircraft",
        "B": "Rectangular area on a land aerodrome prepared for the landing and take-off of helicopters.",
        "C": "Rectangular area on a land aerodrome prepared for the landing and take-off of aircraft.",
        "D": "Rectangular area on a land or water aerodrome prepared for the landing and take-off of aircraft."
      },
      "correct": "C"
    },
    {
      "num": 84,
      "text": "What is the meaning of DETRESFA?",
      "options": {
        "A": "Distress phase",
        "B": "Alerting phase",
        "C": "Uncertainty phase",
        "D": "Rescue phase"
      },
      "correct": "A"
    }
  ],
  "20": [
    {
      "num": 23,
      "text": "What is a cause for the dip error on the direct-reading compass?",
      "options": {
        "A": "Acceleration of the airplane",
        "B": "Temperature variations",
        "C": "Deviation in the cockpit",
        "D": "Inclination of earth's magnetic field lines"
      },
      "correct": "D"
    },
    {
      "num": 24,
      "text": "The Caution Area is marked on an airspeed indicator by what color?",
      "options": {
        "A": "Red",
        "B": "Green",
        "C": "White",
        "D": "Yellow"
      },
      "correct": "D"
    },
    {
      "num": 25,
      "text": "What difference in altitude is shown by an altimeter, if the reference pressure scale setting is changed from 1000 hPa to 1010 hPa?",
      "options": {
        "A": "Zero",
        "B": "80 m less than before",
        "C": "80 m more than before",
        "D": "Values depending on QNH"
      },
      "correct": "C"
    },
    {
      "num": 26,
      "text": "The altimeter's reference scale is set to airfield pressure (QFE). What indication is shown during the flight?",
      "options": {
        "A": "Altitude above MSL",
        "B": "Height above airfield",
        "C": "Airfield elevation",
        "D": "Pressure altitude"
      },
      "correct": "B"
    },
    {
      "num": 27,
      "text": "A vertical speed indicator connected to a too big equalizing tank results in...",
      "options": {
        "A": "Mechanical overload",
        "B": "No indication",
        "C": "Indication too low",
        "D": "Indication too high"
      },
      "correct": "D"
    },
    {
      "num": 28,
      "text": "A vertical speed indicator measures the difference between...",
      "options": {
        "A": "Total pressure and static pressure.",
        "B": "Dynamic pressure and total pressure.",
        "C": "Instantaneous static pressure and previous static pressure.",
        "D": "Instantaneous total pressure and previous total pressure."
      },
      "correct": "C"
    },
    {
      "num": 29,
      "text": "What engines are commonly used with Touring Motor Gliders (TMG)?",
      "options": {
        "A": "2 plate Wankel",
        "B": "2 Cylinder Diesel",
        "C": "4 Cylinder 2 stroke",
        "D": "4 Cylinder; 4 stroke"
      },
      "correct": "D"
    },
    {
      "num": 30,
      "text": "What is the meaning of the yellow arc on the airspeed indicator?",
      "options": {
        "A": "Cautious use of flaps or brakes to avoid overload.",
        "B": "Speed for best glide can be found in this area.",
        "C": "Flight only in calm weather with no gusts to avoid overload.",
        "D": "Optimum speed while being towed behind aircraft."
      },
      "correct": "C"
    },
    {
      "num": 44,
      "text": "An energy-compensated vertical speed inicator (VSI) shows during stationary glide the vertical speed...",
      "options": {
        "A": "Of the glider through surrounding air",
        "B": "Of the airmass flown through.",
        "C": "Of the glider plus movement of the air",
        "D": "Of the glider minus movement of the air."
      },
      "correct": "B"
    },
    {
      "num": 45,
      "text": "During a right turn, the yaw string is drawn to the left from center position. By what rudder input can the string be centered again?",
      "options": {
        "A": "Less bank, less rudder in turn direction",
        "B": "Less bank, more rudder in turn direction",
        "C": "More bank, less rudder in turn direction",
        "D": "More bank, more rudder in turn direction"
      },
      "correct": "B"
    },
    {
      "num": 46,
      "text": "What kind of defect results in loss of airworthiness of an airplane?",
      "options": {
        "A": "Dirty wing leading edge",
        "B": "Crack in the cabin hood plastic",
        "C": "Scratch on the outer painting",
        "D": "Damage to load-bearing parts"
      },
      "correct": "D"
    },
    {
      "num": 47,
      "text": "The mass loaded on the plane is lower than the minimum load required by the load sheet. What action has to be taken?",
      "options": {
        "A": "Trim aircraft to \"pitch down\"",
        "B": "Change pilot seat position",
        "C": "Change incident angle of elevator",
        "D": "Load ballast weight up to minimum load"
      },
      "correct": "D"
    },
    {
      "num": 48,
      "text": "Water ballast increases wing load by 40%. By what percentage does the minimum speed of the glider plane increase?",
      "options": {
        "A": "100%",
        "B": "40%",
        "C": "200%",
        "D": "18%"
      },
      "correct": "D"
    },
    {
      "num": 49,
      "text": "The maximium load according load sheet has been exceeded. What action has to be taken?",
      "options": {
        "A": "Increase speed by 15%",
        "B": "Reduce load",
        "C": "Trim \"pitch-down\"",
        "D": "Trim \"pitch-up\""
      },
      "correct": "B"
    },
    {
      "num": 50,
      "text": "What is referred to as torsion-stiffed leading edge?",
      "options": {
        "A": "The part of the main cross-beam to support torsion forces.",
        "B": "Special shape of the leading edge.",
        "C": "The point where the torsion moment on a wing begins to decrease.",
        "D": "Both-side planked leading edge (from edge to cross-beam) to support torsion forces."
      },
      "correct": "D"
    },
    {
      "num": 51,
      "text": "Information about maxmimum allowed airspeeds can be found where?",
      "options": {
        "A": "Airspeed indicator, cockpit panel and AIP part ENR",
        "B": "POH, approach chart, vertical speed indicator",
        "C": "POH and posting in briefing room",
        "D": "POH, Cockpit panel, airspeed indicator"
      },
      "correct": "D"
    },
    {
      "num": 57,
      "text": "The airspeed indicator is unservicable. The airplane may only be operated...",
      "options": {
        "A": "If no maintenance organisation is around.",
        "B": "If only airfield patterns are flown",
        "C": "When the airspeed indicator is fully functional again.",
        "D": "When a GPS with speed indication is used during flight."
      },
      "correct": "C"
    },
    {
      "num": 58,
      "text": "During a left turn, the yaw string is drawn to the left from center position. By what rudder input can the string be centered again?",
      "options": {
        "A": "More bank, less rudder in turn direction",
        "B": "Less bank, more rudder in turn direction",
        "C": "Less bank, less rudder in turn direction",
        "D": "More bank, more rudder in turn direction"
      },
      "correct": "A"
    },
    {
      "num": 59,
      "text": "What is the purpose of winglets?",
      "options": {
        "A": "To increase efficiency of aspect ratio.",
        "B": "Reduction of induced drag.",
        "C": "Increase gliging performance at high speed.",
        "D": "Increase of lift and turning manoeuvering capabilities."
      },
      "correct": "B"
    },
    {
      "num": 67,
      "text": "What does the dynamic pressure depend directly on?",
      "options": {
        "A": "Lift- and drag coefficient",
        "B": "Air density and airflow speed squared",
        "C": "Air density and lift coefficient",
        "D": "Air pressure and air temperature"
      },
      "correct": "B"
    },
    {
      "num": 68,
      "text": "Airspeed indicator, altimeter and vertical speed indicator all show incorrect indications at the same time. What error can be the cause?",
      "options": {
        "A": "Blocking of static pressure lines.",
        "B": "Leakage in compensation vessel.",
        "C": "Blocking of pitot tube",
        "D": "Failure of the electrical system."
      },
      "correct": "A"
    },
    {
      "num": 72,
      "text": "When is it necessary to adjust the pressure in the reference scale of an alitimeter?",
      "options": {
        "A": "After maintance has been finished",
        "B": "Every day before the first flight",
        "C": "Once a month before flight operation",
        "D": "Before every flight and during cross country flights"
      },
      "correct": "D"
    },
    {
      "num": 73,
      "text": "The term \"inclination\" is defined as...",
      "options": {
        "A": "Deviation induced by electrical fields.",
        "B": "Angle between magnetic and true north",
        "C": "Angle between earth's magnetic field lines and horizontal plane.",
        "D": "Angle between airplane's longitudinal axis and true north."
      },
      "correct": "C"
    },
    {
      "num": 74,
      "text": "With decreasing air density the airflow speed increases at stall speed (TAS) and vice verca. How has a final approach to be conducted on a hot summer day?",
      "options": {
        "A": "With increased speed indication (IAS)",
        "B": "With unchanged speed indication (IAS)",
        "C": "With decreased speed indication (IAS)",
        "D": "With additional speed according POH"
      },
      "correct": "B"
    },
    {
      "num": 75,
      "text": "The load factor n describes the relationship between...",
      "options": {
        "A": "Weight and thrust.",
        "B": "Drag and lift",
        "C": "Lift and weight",
        "D": "Thrust and drag."
      },
      "correct": "C"
    },
    {
      "num": 76,
      "text": "The term static pressure is defined as pressure...",
      "options": {
        "A": "Inside the airplane cabin.",
        "B": "Of undisturbed airflow",
        "C": "Resulting from orderly flow of air particles.",
        "D": "Sensed by the pitot tube."
      },
      "correct": "B"
    },
    {
      "num": 77,
      "text": "The term inclination is defined as...",
      "options": {
        "A": "Deviation induced by electrical fields.",
        "B": "Angle between magnetic and true north",
        "C": "Angle between earth's magnetic field lines and horizontal plane.",
        "D": "Angle between airplane's longitudinal axis and true north."
      },
      "correct": "C"
    }
  ],
  "30": [
    {
      "num": 19,
      "text": "The upper limit of LO R 16 equals... See annex (PFP-056) Siehe Anlage 1",
      "options": {
        "A": "1.500 ft GND.",
        "B": "1 500 ft MSL.",
        "C": "1 500 m MSL.",
        "D": "FL150."
      },
      "correct": "B"
    },
    {
      "num": 20,
      "text": "The upper limit of LO R 4 equals... See annex (PFP-030) Siehe Anlage 2",
      "options": {
        "A": "1.500 ft AGL",
        "B": "4.500 ft AGL.",
        "C": "4.500 ft MSL",
        "D": "1.500 ft MSL."
      },
      "correct": "C"
    },
    {
      "num": 21,
      "text": "Up to which altitude is an overflight prohibited according to the NOTAM? See figure (PFP-024) Siehe Anlage 3",
      "options": {
        "A": "Altitude 9500 ft MSL",
        "B": "Flight Level 95",
        "C": "Altitude 9500 m MSL",
        "D": "Height 9500 ft"
      },
      "correct": "A"
    },
    {
      "num": 27,
      "text": "(For this question, please use annex PFP-061) According ICAO, what symbol indicates a group of unlighted obstacles? (2,00 P.) Siehe Anlage 4",
      "options": {
        "A": "B",
        "B": "D",
        "C": "A",
        "D": "C"
      },
      "correct": "D"
    },
    {
      "num": 28,
      "text": "(For this question, please use annex PFP-062) According ICAO, what symbol indicates a civil airport (not international airport) with paved runway? (2,00 P.) Siehe Anlage 5",
      "options": {
        "A": "B",
        "B": "C",
        "C": "A",
        "D": "D"
      },
      "correct": "C"
    },
    {
      "num": 29,
      "text": "(For this question, please use annex PFP-063) According ICAO, what symbol indicates a general spot elevation? (2,00 P.) Siehe Anlage 6",
      "options": {
        "A": "D",
        "B": "C",
        "C": "B",
        "D": "A"
      },
      "correct": "B"
    },
    {
      "num": 31,
      "text": "The term center of gravity is defined as...",
      "options": {
        "A": "Another designation for the neutral point.",
        "B": "The heaviest point on an aeroplane.",
        "C": "Half the distance between the neutral point and the datum line.",
        "D": "Half the distance between the neutral point and the datum line."
      },
      "correct": "D"
    },
    {
      "num": 32,
      "text": "The term moment with regard to a mass and balance calculation is referred to as...",
      "options": {
        "A": "Sum of a mass and a balance arm.",
        "B": "Difference of a mass and a balance arm.",
        "C": "Quotient of a mass and a balance arm.",
        "D": "Product of a mass and a balance arm."
      },
      "correct": "D"
    },
    {
      "num": 33,
      "text": "The term balance arm in the context of a mass and balance calculation defines the...",
      "options": {
        "A": "Distance of a mass from the center of gravity",
        "B": "Point on the longitudinal axis of an aeroplane or its extension from which the centers of gravity of all masses are referenced.",
        "C": "Distance from the datum to the center of gravity of a mass.",
        "D": "Point through which the force of gravity is said to act on a mass."
      },
      "correct": "C"
    },
    {
      "num": 34,
      "text": "What is the purpose of interception lines in visual navigation?",
      "options": {
        "A": "They are used as easily recognizable guidance upon a possible loss of orientation",
        "B": "They help to continue the flight when flight visibility drops below VFR minima",
        "C": "To mark the next available en-route airport during the flight",
        "D": "To visualize the range limitation from the departure aerodrome"
      },
      "correct": "A"
    }
  ],
  "40": [
    {
      "num": 27,
      "text": "The ideal level of arousal is at which point in the diagram? See figure (HPL- 002) P = Performance A = Arousal / Stress Siehe Anlage 1",
      "options": {
        "A": "Point B",
        "B": "Point C",
        "C": "Point D",
        "D": "Point A"
      },
      "correct": "A"
    },
    {
      "num": 29,
      "text": "Which answer is correct concerning stress?",
      "options": {
        "A": "Everybody reacts to stress in the same manner",
        "B": "Stress and its different symptoms are irrelevant for flight safety",
        "C": "Stress can occur if there seems to be no solution for a given problem",
        "D": "Training and experience have no influence on the occurence of stress"
      },
      "correct": "C"
    },
    {
      "num": 30,
      "text": "During flight you have to solve a problem, how to you proceed?",
      "options": {
        "A": "There is no time for solving problems during flight",
        "B": "Solve problem immediately, otherwise refer to the operationg handbook",
        "C": "Contact other pilot via radio for help, keep flying",
        "D": "Primarily fly the airplane and keep it stable, then attend to the problem and keep flying the airplane"
      },
      "correct": "D"
    },
    {
      "num": 43,
      "text": "At which point in the diagram will a pilot find himself to be overstrained? See figure (HPL-002) P = Perfromance A = Arousal / Stress Siehe Anlage 1",
      "options": {
        "A": "Point B",
        "B": "Point C",
        "C": "Point A",
        "D": "Point D"
      },
      "correct": "D"
    },
    {
      "num": 53,
      "text": "The swiss cheese model can be used to explain the...",
      "options": {
        "A": "State of readiness of a pilot.",
        "B": "Procedure for an emergency landing.",
        "C": "Optimal problem solution.",
        "D": "Error chain."
      },
      "correct": "D"
    },
    {
      "num": 54,
      "text": "What does the term Red-out mean?",
      "options": {
        "A": "\"Red vision\" during negative g-loads",
        "B": "Falsified colour perception during sunrise and sunset",
        "C": "Anaemia caused by an injury",
        "D": "Rash during decompression sickness"
      },
      "correct": "A"
    }
  ],
  "50": [
    {
      "num": 16,
      "text": "Which conditions are likely for the formation of advection fog?",
      "options": {
        "A": "Warm, humid air cools during a cloudy night",
        "B": "Cold, humid air moves over a warm ocean",
        "C": "Humidity evaporates from warm, humid ground into cold air",
        "D": "Warm, humid air moves over a cold surface"
      },
      "correct": "D"
    },
    {
      "num": 17,
      "text": "What process results in the formation of \"advection fog\"?",
      "options": {
        "A": "Cold, moist air is being moved across warm ground areas",
        "B": "Cold, moist air mixes with warm, moist air",
        "C": "Prolonged radiation during nights clear of clouds",
        "D": "Warm, moist air is moved across cold ground areas"
      },
      "correct": "D"
    },
    {
      "num": 18,
      "text": "What pressure pattern can be observed when a cold front is passing?",
      "options": {
        "A": "Continually increasing pressure",
        "B": "Shortly decreasing, thereafter increasing pressure",
        "C": "Continually decreasing pressure",
        "D": "Constant pressure pattern"
      },
      "correct": "B"
    },
    {
      "num": 19,
      "text": "What frontal line divides subtropical air from polar cold air, in particular across Central Europe?",
      "options": {
        "A": "Warm front",
        "B": "Cold front",
        "C": "Occlusion",
        "D": "Polar front"
      },
      "correct": "D"
    },
    {
      "num": 20,
      "text": "What weather conditions in Central Europe are typically found in high pressure areas during summer?",
      "options": {
        "A": "Large isobar spacing with calm winds, formation of local wind systems",
        "B": "Small isobar spacing with calm winds, formation of local wind systems",
        "C": "Large isobar spacing with strong prevailing westerly winds",
        "D": "Small isobar spacing with strong prevailing northerly winds"
      },
      "correct": "A"
    },
    {
      "num": 21,
      "text": "What weather conditions can be expected in high pressure areas during winter?",
      "options": {
        "A": "Calm winds and widespread areas with high fog",
        "B": "Changing weather with passing of frontal lines",
        "C": "Squall lines and thunderstorms",
        "D": "Calm weather and cloud dissipation, few high Cu"
      },
      "correct": "A"
    },
    {
      "num": 22,
      "text": "What temperatures are most dangerous with respect to airframe icing?",
      "options": {
        "A": ".+20° to -5° C",
        "B": ".-20° to -40° C",
        "C": ".+5° to -10° C",
        "D": "0° to -12° C"
      },
      "correct": "D"
    },
    {
      "num": 23,
      "text": "Which type of ice forms by large, supercooled droplets hitting the front surfaces of an aircraft?",
      "options": {
        "A": "Hoar frost",
        "B": "Clear ice",
        "C": "Rime ice",
        "D": "Mixed ice"
      },
      "correct": "B"
    },
    {
      "num": 24,
      "text": "What conditions are mandatory for the formation of thermal thunderstorms?",
      "options": {
        "A": "Absolutely stable atmosphere, high temperature and high humidity",
        "B": "Absolutely stable atmosphere, high temperature and low humidity",
        "C": "Conditionally unstable atmosphere, high temperature and high humidity",
        "D": "Conditionally unstable atmosphere, low temperature and low humidity"
      },
      "correct": "C"
    },
    {
      "num": 25,
      "text": "Which stage of a thunderstorm is dominated by updrafts?",
      "options": {
        "A": "Dissipating stage",
        "B": "Mature stage",
        "C": "Cumulus stage",
        "D": "Upwind stage"
      },
      "correct": "C"
    },
    {
      "num": 26,
      "text": "Heavy downdrafts and strong wind shear close to the ground can be expected...",
      "options": {
        "A": "Near the rainfall areas of heavy showers or thunderstorms.",
        "B": "During approach to an airfield at the coast with a strong sea breeze.",
        "C": "During cold, clear nights with the formation of radiation fog.",
        "D": "During warm summer days with high, flatted Cu clouds."
      },
      "correct": "A"
    },
    {
      "num": 27,
      "text": "Which weather chart shows the actual air pressure as in MSL along with pressure centers and fronts?",
      "options": {
        "A": "Wind chart",
        "B": "Surface weather chart",
        "C": "Prognostic chart",
        "D": "Hypsometric chart"
      },
      "correct": "B"
    },
    {
      "num": 28,
      "text": "What information can be obtained from satallite images?",
      "options": {
        "A": "Overview of cloud covers and front lines",
        "B": "Turbulence and icing",
        "C": "Temperature and dew point of environmental air",
        "D": "Flight visibility, ground visibility, and ground contact"
      },
      "correct": "A"
    },
    {
      "num": 29,
      "text": "What information can be found in the ATIS, but not in a METAR?",
      "options": {
        "A": "Operational information such as runway in use and transition level",
        "B": "Information about current weather, for example types of precipitation",
        "C": "Approach information, such as ground visibility and cloud base",
        "D": "Information about mean wind speeds, maximum speeds in gusts if applicable"
      },
      "correct": "A"
    },
    {
      "num": 30,
      "text": "What type of cloud indicates thermal updrafts?",
      "options": {
        "A": "Stratus",
        "B": "Cirrus",
        "C": "Cumulus",
        "D": "Lenticularis"
      },
      "correct": "C"
    },
    {
      "num": 36,
      "text": "The saturated adiabatic lapse rate is...",
      "options": {
        "A": "Equal to the dry adiabatic lapse rate.",
        "B": "Higher than the dry adiabatic lapse rate.",
        "C": "Proportional to the dry adiabatic lapse rate.",
        "D": "Lower than the dry adiabatic lapse rate."
      },
      "correct": "D"
    },
    {
      "num": 37,
      "text": "The dry adiabatic lapse rate has a value of...",
      "options": {
        "A": "0,65° C / 100 m.",
        "B": "1,0° C / 100 m.",
        "C": "2° / 1000 ft.",
        "D": "0,6° C / 100 m."
      },
      "correct": "B"
    },
    {
      "num": 38,
      "text": "What weather conditions may be expected during conditionally unstable conditions?",
      "options": {
        "A": "Towering cumulus, isolated showers of rain or thunderstorms",
        "B": "Layered clouds up to high levels, prolonged rain or snow",
        "C": "Sky clear of clouds, sunshine, low winds",
        "D": "Shallow cumulus clouds with base at medium levels"
      },
      "correct": "A"
    },
    {
      "num": 39,
      "text": "What cloud type does the picture show? See figure (MET-004). Siehe Anlage 3",
      "options": {
        "A": "Altocumulus",
        "B": "Cirrus",
        "C": "Cumulus",
        "D": "Stratus"
      },
      "correct": "B"
    },
    {
      "num": 40,
      "text": "The formation of medium to large precipitation particles requires...",
      "options": {
        "A": "Strong updrafts.",
        "B": "An inversion layer.",
        "C": "A high cloud base.",
        "D": "Strong wind."
      },
      "correct": "A"
    },
    {
      "num": 41,
      "text": "The symbol labeled (2) as shown in the picture is a / an... See figure (MET-005) Siehe Anlage 4",
      "options": {
        "A": "Front aloft.",
        "B": "Cold front.",
        "C": "Occlusion.",
        "D": "Warm front."
      },
      "correct": "D"
    },
    {
      "num": 42,
      "text": "What visual flight conditions can be expected within the warm sector of a polar front low during summer time?",
      "options": {
        "A": "Good visibility, some isolated high clouds",
        "B": "Moderate to good visibility, scattered clouds",
        "C": "Visibilty less than 1000 m, cloud-covered ground",
        "D": "Moderate visibility, heavy showers and thunderstorms"
      },
      "correct": "B"
    },
    {
      "num": 43,
      "text": "What visual flight conditions can be expected after the passage of a cold front?",
      "options": {
        "A": "Good visiblity, formation of cumulus clouds with showers of rain or snow",
        "B": "Poor visibility, formation of overcast or ground-covering stratus clouds, snow",
        "C": "Scattered cloud layers, visbility more than 5 km, formation of shallow cumulus clouds",
        "D": "Medium visibility with lowering cloud bases, onset of prolonged precipitation"
      },
      "correct": "A"
    },
    {
      "num": 44,
      "text": "What is the usual direction of movement of a polar front low?",
      "options": {
        "A": "Parallel to the the warm-sector isobars",
        "B": "To the northeast during winter, to the southeast during summer",
        "C": "Parallel to the warm front line to the south",
        "D": "To the northwest during winter, to the southwest during summer"
      },
      "correct": "A"
    },
    {
      "num": 45,
      "text": "What pressure pattern can be observed during the passage of a polar front low?",
      "options": {
        "A": "Rising pressure in front of the warm front, constant pressure within the warm sector, rising pressure behind the cold front",
        "B": "Rising pressure in front of the warm front, rising pressure within the warm sector, falling pressure behind the cold front",
        "C": "Falling pressure in front of the warm front, constant pressure within the warm sector, rising pressure behind the cold front",
        "D": "Falling pressure in front of the warm front, constant pressure within the warm sector, falling pressure behind the cold front"
      },
      "correct": "C"
    },
    {
      "num": 46,
      "text": "What change of wind direction can be expected during the passage of a polar front low in Central Europe?",
      "options": {
        "A": "Backing wind during passage of the warm front, veering wind during passage of the cold front",
        "B": "Veering wind during passage of the warm front, veering wind during passage of the cold front",
        "C": "Veering wind during passage of the warm front, backing wind during passage of the cold front",
        "D": "Backing wind during passage of the warm front, backing wind during passage of the cold front"
      },
      "correct": "B"
    },
    {
      "num": 47,
      "text": "What pressure pattern may result from cold-air inflow in high tropospheric layers?",
      "options": {
        "A": "Alternating pressure",
        "B": "Formation of a large ground low",
        "C": "Formation of a high in the upper troposphere",
        "D": "Formation of a low in the upper troposphere"
      },
      "correct": "D"
    },
    {
      "num": 48,
      "text": "Cold air inflow in high tropospheric layers may result in...",
      "options": {
        "A": "Showers and thunderstorms.",
        "B": "Frontal weather.",
        "C": "Calm weather and cloud dissipation",
        "D": "Stabilisation and calm weather."
      },
      "correct": "A"
    },
    {
      "num": 49,
      "text": "How does inflowing cold air affect the shape and vertical distance between pressure layers?",
      "options": {
        "A": "Increasing vertical distance, raise in height (high pressure)",
        "B": "Decreasing vertical distance, raise in height (high pressure)",
        "C": "Decrease in vertical distance, lowering in height (low pressure)",
        "D": "Increase in vertical distance, lowering in height (low pressure)"
      },
      "correct": "C"
    },
    {
      "num": 50,
      "text": "What weather conditions can be expected in high pressure areas during summer?",
      "options": {
        "A": "Calm weather and cloud dissipation, few high Cu",
        "B": "Changing weather with passing of frontal lines",
        "C": "Squall lines and thunderstorms",
        "D": "Calm winds and widespread areas with high fog"
      },
      "correct": "A"
    },
    {
      "num": 51,
      "text": "What weather conditions can be expected during \"Foehn\" on the windward side of a mountain range?",
      "options": {
        "A": "Layered clouds, mountains obscured, poor visibility, moderate or heavy rain",
        "B": "Dissipating clouds with unusual warming, accompanied by strong, gusty winds",
        "C": "Calm wind and forming of high stratus clouds (high fog)",
        "D": "Scattered cumulus clouds with showers and thunderstorms"
      },
      "correct": "A"
    },
    {
      "num": 52,
      "text": "What chart shows areas of precipitation?",
      "options": {
        "A": "Satellite picture",
        "B": "Wind chart",
        "C": "Radar picture",
        "D": "GAFOR"
      },
      "correct": "C"
    },
    {
      "num": 53,
      "text": "An inversion is a layer ...",
      "options": {
        "A": "With constant temperature with increasing height",
        "B": "With increasing pressure with increasing height.",
        "C": "With increasing temperature with increasing height.",
        "D": "With decreasing temperature with increasing height."
      },
      "correct": "C"
    },
    {
      "num": 61,
      "text": "What condition may prevent the formation of \"radiation fog\"?",
      "options": {
        "A": "Calm wind",
        "B": "Clear night, no clouds",
        "C": "Low spread",
        "D": "Overcast cloud cover"
      },
      "correct": "D"
    },
    {
      "num": 62,
      "text": "The symbol labeled (3) as shown in the picture is a / an... See figure (MET-005) Siehe Anlage 4",
      "options": {
        "A": "Cold front.",
        "B": "Warm front.",
        "C": "Front aloft.",
        "D": "Occlusion."
      },
      "correct": "D"
    },
    {
      "num": 63,
      "text": "A boundary between a cold polar air mass and a warm subtropical air mass showing no horizontal displacement is called...",
      "options": {
        "A": "Cold front.",
        "B": "Warm front.",
        "C": "Stationary front.",
        "D": "Occluded front."
      },
      "correct": "C"
    },
    {
      "num": 64,
      "text": "What situation may result in the occurrence of severe wind shear?",
      "options": {
        "A": "Flying ahead of a warm front with visible Ci clouds",
        "B": "Cross-country flying below Cu clouds with about 4 octas coverage",
        "C": "During final approach, 30 min after a heavy shower has passed the airfield",
        "D": "When a shower is visible close to the airfield"
      },
      "correct": "D"
    },
    {
      "num": 65,
      "text": "What kind of reduction in visibility is not very sensitive to changes in temperature?",
      "options": {
        "A": "Radiation fog (FG)",
        "B": "Mist (BR)",
        "C": "Patches of fog (BCFG)",
        "D": "Haze (HZ)"
      },
      "correct": "D"
    },
    {
      "num": 66,
      "text": "In a METAR, \"(moderate) showers of rain\" are designated by the identifier...",
      "options": {
        "A": ".+TSRA",
        "B": "SHRA.",
        "C": "TS.",
        "D": ".+RA."
      },
      "correct": "B"
    },
    {
      "num": 67,
      "text": "SIGMET warnings are issued for...",
      "options": {
        "A": "Specific routings.",
        "B": "Countries.",
        "C": "FIRs / UIRs.",
        "D": "Airports."
      },
      "correct": "C"
    },
    {
      "num": 68,
      "text": "Mountain side updrafts can be intensified by ...",
      "options": {
        "A": "Solar irradiation on the lee side",
        "B": "Thermal radiation of the windward side during the night",
        "C": "Solar irradiation on the windward side",
        "D": "By warming of upper atmospheric layers"
      },
      "correct": "C"
    },
    {
      "num": 76,
      "text": "Clouds in high layers are referred to as...",
      "options": {
        "A": "Cirro-.",
        "B": "Strato-.",
        "C": "Nimbo-.",
        "D": "Alto-."
      },
      "correct": "A"
    },
    {
      "num": 77,
      "text": "What factor may affect the top of cumulus clouds?",
      "options": {
        "A": "The spread",
        "B": "Relative humidity",
        "C": "The absolute humidity",
        "D": "The presence of an inversion layer"
      },
      "correct": "D"
    },
    {
      "num": 78,
      "text": "What factors may indicate a tendency to fog formation?",
      "options": {
        "A": "Strong winds, decreasing temperature",
        "B": "Low spread, decreasing temperature",
        "C": "Low pressure, increasing temperature",
        "D": "Low spread, increasing temperature"
      },
      "correct": "B"
    },
    {
      "num": 79,
      "text": "What process results in the formation of \"orographic fog\" (\"hill fog\")?",
      "options": {
        "A": "Prolonged radiation during nights clear of clouds",
        "B": "Warm, moist air is moved across a hill or a mountain range",
        "C": "Evaporation from warm, moist ground area into very cold air",
        "D": "Cold, moist air mixes with warm, moist air"
      },
      "correct": "B"
    },
    {
      "num": 80,
      "text": "What factors are required for the formation of precipitation in clouds?",
      "options": {
        "A": "The presence of an inversion layer",
        "B": "Moderate to strong updrafts",
        "C": "Calm winds and intensive sunlight insolation",
        "D": "High humidity and high temperatures"
      },
      "correct": "B"
    },
    {
      "num": 81,
      "text": "What wind conditions can be expected in areas showing large distances between isobars?",
      "options": {
        "A": "Strong prevailing westerly winds with rapid veering",
        "B": "Strong prevailing easterly winds with rapid backing",
        "C": "Formation of local wind systems with strong prevailing westerly winds",
        "D": "Variable winds, formation of local wind systems"
      },
      "correct": "D"
    },
    {
      "num": 82,
      "text": "Under which conditions \"back side weather\" (\"Rückseitenwetter\") can be expected?",
      "options": {
        "A": "After passing of a cold front",
        "B": "Before passing of an occlusion",
        "C": "During Foehn at the lee side",
        "D": "After passing of a warm front"
      },
      "correct": "A"
    },
    {
      "num": 83,
      "text": "What wind is reportet as 225/15 ?",
      "options": {
        "A": "North-east wind with 15 kt",
        "B": "South-west wind with 15 kt",
        "C": "South-west wind with 15 km/h",
        "D": "North-east wind with 15 km/h"
      },
      "correct": "B"
    },
    {
      "num": 84,
      "text": "What weather is likely to be experienced during \"Foehn\" in the Bavarian area close to the alps?",
      "options": {
        "A": "Cold, humid downhill wind on the lee side of the alps, flat pressure pattern",
        "B": "Nimbostratus cloud in the southern alps, rotor clouds at the lee side, warm and dry wind",
        "C": "High pressure area overhead Biskaya and low pressure area in Eastern Europe",
        "D": "Nimbostratus cloud in the northern alps, rotor clouds at the windward side, warm and dry wind"
      },
      "correct": "B"
    },
    {
      "num": 89,
      "text": "Clouds are basically distinguished by what types?",
      "options": {
        "A": "Thunderstorm and shower clouds",
        "B": "Cumulus and stratiform clouds",
        "C": "Stratiform and ice clouds",
        "D": "Layered and lifted clouds"
      },
      "correct": "B"
    },
    {
      "num": 90,
      "text": "What weather phenomenon designated by \"2\" has to be expected on the lee side during \"Foehn\" conditions? See figure (MET-001). Siehe Anlage 1",
      "options": {
        "A": "Cumulonimbus",
        "B": "Cumulonimbus",
        "C": "Altocumulus lenticularis",
        "D": "Altocumulus Castellanus"
      },
      "correct": "C"
    },
    {
      "num": 91,
      "text": "Which type of ice forms by very small water droplets and ice crystals hitting the front surfaces of an aircraft?",
      "options": {
        "A": "Rime ice",
        "B": "Clear ice",
        "C": "Mixed ice",
        "D": "Hoar frost"
      },
      "correct": "A"
    },
    {
      "num": 92,
      "text": "Information about pressure patterns and frontal situation can be found in which chart?",
      "options": {
        "A": "Significant Weather Chart (SWC)",
        "B": "Wind chart.",
        "C": "Hypsometric chart",
        "D": "Surface weather chart."
      },
      "correct": "D"
    },
    {
      "num": 97,
      "text": "What cloud sequence can typically be observed during the passage of a warm front?",
      "options": {
        "A": "Wind becoming calm, dissipation of clouds and warming during summer; formation of extended high fog layers during winter",
        "B": "Squall line with showers of rain and thunderstorms (Cb), gusting wind followed by cumulus clouds with isolated showers of rain",
        "C": "Cirrus, thickening altostratus and altocumulus clouds, lowering cloud base with rain, nimbostratus",
        "D": "In coastal areas during daytime wind from the coast and forming of cumulus clouds, dissipation of clouds during evening and night"
      },
      "correct": "C"
    },
    {
      "num": 98,
      "text": "What phenomenon is caused by cold air downdrafts with precipitation from a fully developed thunderstorm cloud?",
      "options": {
        "A": "Electrical discharge",
        "B": "Anvil-head top of Cb cloud",
        "C": "Gust front",
        "D": "Freezing Rain"
      },
      "correct": "C"
    },
    {
      "num": 99,
      "text": "What information is NOT found on Low-Level Significant Weather Charts (LLSWC)?",
      "options": {
        "A": "Information about icing conditions",
        "B": "Front lines and frontal displacements",
        "C": "Radar echos of precipitation",
        "D": "Information about turbulence areas"
      },
      "correct": "C"
    },
    {
      "num": 101,
      "text": "Which type of cloud is associated with prolonged rain?",
      "options": {
        "A": "Altocumulus",
        "B": "Cumulonimbus",
        "C": "Nimbostratus",
        "D": "Cirrostratus"
      },
      "correct": "C"
    },
    {
      "num": 102,
      "text": "Regarding the type of cloud, precipitation is classified as...",
      "options": {
        "A": "Showers of snow and rain.",
        "B": "Prolonged rain and continuous rain.",
        "C": "Rain and showers of rain.",
        "D": "Light and heavy precipitation."
      },
      "correct": "C"
    },
    {
      "num": 103,
      "text": "What conditions are favourable for the formation of thunderstorms?",
      "options": {
        "A": "Calm winds and cold air, overcast cloud cover with St or As.",
        "B": "Warm and dry air, strong inversion layer",
        "C": "Warm humid air, conditionally unstable environmental lapse rate",
        "D": "Clear night over land, cold air and patches of fog"
      },
      "correct": "C"
    },
    {
      "num": 104,
      "text": "What can be expected for the prevailling wind with isobars on a surface weather chart showing large distances?",
      "options": {
        "A": "Low pressure gradients resulting in low prevailling wind",
        "B": "Strong pressure gradients resulting in low prevailling wind",
        "C": "Strong pressure gradients resulting in strong prevailling wind",
        "D": "Low pressure gradients resulting in strong prevailling wind"
      },
      "correct": "A"
    },
    {
      "num": 106,
      "text": "How is an air mass described when moving to Central Europe via the Russian continent during winter?",
      "options": {
        "A": "Maritime tropical air",
        "B": "Continental polar air",
        "C": "Maritime polar air",
        "D": "Continental tropical air"
      },
      "correct": "B"
    },
    {
      "num": 107,
      "text": "What clouds and weather can typically be observed during the passage of a cold front?",
      "options": {
        "A": "Wind becoming calm, dissipation of clouds and warming during summer; formation of extended high fog layers during winter",
        "B": "Cirrus, thickening altostratus and altocumulus clouds, lowering cloud base with rain, nimbostratus",
        "C": "In coastal areas during daytime wind from the coast and forming of cumulus clouds, dissipation of clouds during evening and night",
        "D": "Strongly developed cumulus clouds (Cb) with showers of rain and thunderstorms, gusting wind followed by cumulus clouds with isolated showers of rain"
      },
      "correct": "D"
    },
    {
      "num": 108,
      "text": "What danger is most immenent when an aircraft is hit by lightning?",
      "options": {
        "A": "Explosion of electrical equipment in the cockpit",
        "B": "Surface overheat and damage to exposed aircraft parts",
        "C": "Rapid cabin depressurization and smoke in the cabin",
        "D": "Disturbed radio communication, static noise signals"
      },
      "correct": "B"
    },
    {
      "num": 109,
      "text": "What is referred to as mountain wind?",
      "options": {
        "A": "Wind blowing down the mountain side during the night",
        "B": "Wind blowing uphill from the valley during the night.",
        "C": "Wind blowing uphill from the valley during daytime.",
        "D": "Wind blowing down the mountain side during daytime."
      },
      "correct": "A"
    },
    {
      "num": 113,
      "text": "The saturated adiabatic lapse rate should be assumed with a mean value of:",
      "options": {
        "A": "1,0° C / 100 m.",
        "B": "0,6° C / 100 m.",
        "C": "2° C / 1000 ft.",
        "D": "0° C / 100 m."
      },
      "correct": "B"
    },
    {
      "num": 114,
      "text": "Extensive high pressure areas can be found throughout the year ...",
      "options": {
        "A": "In tropical areas, close to the equator.",
        "B": "In areeas showing extensive lifting processes.",
        "C": "Over oceanic areas at latitues around 30°N/S.",
        "D": "In mid latitudes along the polar front"
      },
      "correct": "C"
    },
    {
      "num": 115,
      "text": "Weather and operational information about the destination aerodrome can be obtained during the flight by...",
      "options": {
        "A": "PIREP",
        "B": "SIGMET",
        "C": "ATIS.",
        "D": "VOLMET."
      },
      "correct": "C"
    },
    {
      "num": 116,
      "text": "What cloud type does the picture show? See figure (MET-002). Siehe Anlage 2",
      "options": {
        "A": "Stratus",
        "B": "Cirrus",
        "C": "Altus",
        "D": "Cumulus"
      },
      "correct": "D"
    },
    {
      "num": 117,
      "text": "The character of an air mass is given by what properties?",
      "options": {
        "A": "Wind speed and tropopause height",
        "B": "Environmental lapse rate at origin",
        "C": "Region of origin and track during movement",
        "D": "Temperatures at origin and present region"
      },
      "correct": "C"
    },
    {
      "num": 118,
      "text": "What cloud type can typically be observed across widespread high pressure areas during summer?",
      "options": {
        "A": "Overcast low stratus",
        "B": "Scattered Cu clouds",
        "C": "Overcast Ns clouds",
        "D": "Squall lines and thunderstorms"
      },
      "correct": "B"
    },
    {
      "num": 119,
      "text": "The symbol labeled (1) as shown in the picture is a / an... See figure (MET-005) Siehe Anlage 4",
      "options": {
        "A": "Front aloft.",
        "B": "Cold front.",
        "C": "Occlusion.",
        "D": "Warm front."
      },
      "correct": "B"
    },
    {
      "num": 120,
      "text": "In a METAR, \"heavy rain\" is designated by the identifier...",
      "options": {
        "A": "RA.",
        "B": ".+RA",
        "C": "SHRA",
        "D": ".+SHRA."
      },
      "correct": "B"
    },
    {
      "num": 123,
      "text": "With regard to thunderstorms, strong up- and downdrafts appear during the...",
      "options": {
        "A": "Mature stage.",
        "B": "Dissipating stage.",
        "C": "Initial stage.",
        "D": "Thunderstorm stage."
      },
      "correct": "A"
    },
    {
      "num": 124,
      "text": "Which of the following conditions are most favourable for ice accretion?",
      "options": {
        "A": "Temperatures between 0° C and -12° C, presence of supercooled water droplets (clouds)",
        "B": "Temperaturs below 0° C, strong wind, sky clear of clouds",
        "C": "Temperatures between -20° C and -40° C, presence of ice crystals (Ci clouds)",
        "D": "Temperatures between +10° C and -30° C, presence of hail (clouds)"
      },
      "correct": "A"
    },
    {
      "num": 125,
      "text": "What danger is most imminent during an approach to an airfield situated in a valley, with strong wind aloft blowing perpendicular to the mountain ridge?",
      "options": {
        "A": "Reduced visibilty, maybe loss of sight to the airfield during final approach",
        "B": "Wind shear during descent, wind direction may change by 180°",
        "C": "Formation of medium to heavy clear ice on all aircraft surfaces",
        "D": "Heavy downdrafts within rainfall areas below thunderstorm clouds"
      },
      "correct": "B"
    },
    {
      "num": 126,
      "text": "What phenomenon is referred to as blue thermals?",
      "options": {
        "A": "Thermals with less than 4/8 Cu coverage",
        "B": "Descending air between Cumulus clouds",
        "C": "Turbulence in the vicinity of Cumulonimbus clouds",
        "D": "Thermals without formation of Cu clouds"
      },
      "correct": "D"
    },
    {
      "num": 127,
      "text": "The term beginning of thermals refers to the moment when thermal intensity...",
      "options": {
        "A": "Becomes usable for cross-country gliding by formation of Cu clouds.",
        "B": "Becomes usable for gliding and reaches up to 1200 m MSL.",
        "C": "Reaches up to 600 m AGL and forms Cumulus clouds.",
        "D": "Becomes usable for gliding and reaches up to 600 m AGL."
      },
      "correct": "D"
    },
    {
      "num": 128,
      "text": "The term trigger temperature is defined as the temperature which...",
      "options": {
        "A": "Is reached by a thermal lift during ascend when formation of Cumulus clouds begins.",
        "B": "Is the maximum temperature at ground level that can be reached without formation of a thunderstorm from a Cumulus cloud.",
        "C": "Is the minimum temperature at ground level that has to be reached so formation of a thunderstorm from a Cumulus cloud can occur.",
        "D": "Must be obtained at ground level so Cumulus clouds can be formed by thermal lifts."
      },
      "correct": "D"
    },
    {
      "num": 129,
      "text": "What situation is called over-development in a weather report?",
      "options": {
        "A": "Change from blue thermals to cloudy thermals during the afternoon",
        "B": "Development of a thermal low to a storm depression",
        "C": "Vertical development of Cumulus clouds to rain showers",
        "D": "Widespreading of Cumulus clouds below an inversion layer"
      },
      "correct": "C"
    },
    {
      "num": 130,
      "text": "What situation is referred to as shielding?",
      "options": {
        "A": "Ns clouds, covering the windward side of a mountain range",
        "B": "High or mid-level cloud layers, impairing thermal activity",
        "C": "Anvil-like structure at the upper levels of a thunderstorm cloud",
        "D": "Coverage of Cumulus clouds, stated as part of eights of the sky"
      },
      "correct": "B"
    },
    {
      "num": 131,
      "text": "What is the gas composition of air?",
      "options": {
        "A": "Oxygen 78 % Water vapour 21 % Nitrogen 1 %",
        "B": "Oxygen 21 % Nitrogen 78 % Noble gases / carbon dioxide 1 %",
        "C": "Oxygen 21 % Water vapour 78 % Noble gases / carbon dioxide 1 %",
        "D": "Nitrogen 21 % Oxygen 78 % Noble gases / carbon dioxide 1 %"
      },
      "correct": "B"
    },
    {
      "num": 132,
      "text": "What is the mass of a cube of air with the edges 1 m long, at MSL according ISA?",
      "options": {
        "A": "0,01225 kg",
        "B": "0,1225 kg",
        "C": "12,25 kg",
        "D": "1,225 kg"
      },
      "correct": "D"
    },
    {
      "num": 133,
      "text": "The term tropopause is defined as...",
      "options": {
        "A": "The layer above the troposphere showing an increasing temperature.",
        "B": "The height above which the temperature starts to decrease.",
        "C": "The boundary area between the troposphere and the stratosphere.",
        "D": "The boundary area between the mesosphere and the stratosphere."
      },
      "correct": "C"
    },
    {
      "num": 134,
      "text": "What is meant by inversion layer?",
      "options": {
        "A": "An atmospheric layer where temperature increases with increasing height",
        "B": "An atmospheric layer where temperature decreases with increasing height",
        "C": "An atmospheric layer with constant temperature with increasing height",
        "D": "A boundary area between two other layers within the atmosphere"
      },
      "correct": "A"
    },
    {
      "num": 135,
      "text": "What is meant by isothermal layer?",
      "options": {
        "A": "An atmospheric layer where temperature decreases with increasing height",
        "B": "An atmospheric layer with constant temperature with increasing height",
        "C": "A boundary area between two other layers within the atmosphere",
        "D": "An atmospheric layer where temperature increases with increasing height"
      },
      "correct": "B"
    },
    {
      "num": 136,
      "text": "Which force causes wind?",
      "options": {
        "A": "Centrifugal force",
        "B": "Pressure gradient force",
        "C": "Coriolis force",
        "D": "Thermal force"
      },
      "correct": "B"
    },
    {
      "num": 137,
      "text": "Foehn conditions usually develop with...",
      "options": {
        "A": "Instability, high pressure area with calm wind.",
        "B": "Stability, high pressure area with calm wind.",
        "C": "Stability, widespread air blown against a mountain ridge.",
        "D": "Instability, widespread air blown against a mountain ridge."
      },
      "correct": "C"
    },
    {
      "num": 138,
      "text": "The spread is defined as...",
      "options": {
        "A": "Difference between actual temperature and dew point.",
        "B": "Difference between dew point and condensation point.",
        "C": "Relation of actual to maximum possible humidity of air",
        "D": "Maximum amount of water vapour that can be contained in air."
      },
      "correct": "A"
    },
    {
      "num": 139,
      "text": "What weather phenomenon designated by 2 has to be expected on the lee side during Foehn conditions? See figure (MET-001). Siehe Anlage 1",
      "options": {
        "A": "Cumulonimbus",
        "B": "Cumulonimbus",
        "C": "Altocumulus lenticularis",
        "D": "Altocumulus Castellanus"
      },
      "correct": "C"
    },
    {
      "num": 140,
      "text": "What condition may prevent the formation of radiation fog?",
      "options": {
        "A": "Calm wind",
        "B": "Clear night, no clouds",
        "C": "Low spread",
        "D": "Overcast cloud cover"
      },
      "correct": "D"
    },
    {
      "num": 141,
      "text": "What process results in the formation of advection fog?",
      "options": {
        "A": "Cold, moist air is being moved across warm ground areas",
        "B": "Cold, moist air mixes with warm, moist air",
        "C": "Prolonged radiation during nights clear of clouds",
        "D": "Warm, moist air is moved across cold ground areas"
      },
      "correct": "D"
    },
    {
      "num": 142,
      "text": "What process results in the formation of orographic fog (hill fog)?",
      "options": {
        "A": "Prolonged radiation during nights clear of clouds",
        "B": "Warm, moist air is moved across a hill or a mountain range",
        "C": "Evaporation from warm, moist ground area into very cold air",
        "D": "Cold, moist air mixes with warm, moist air"
      },
      "correct": "B"
    },
    {
      "num": 143,
      "text": "What weather phenomena have to be expected around an upper-level trough?",
      "options": {
        "A": "Calm weather, formation of lifted fog layers",
        "B": "Calm wind, forming of shallow cumulus clouds",
        "C": "Development of showers and thunderstorms (Cb)",
        "D": "Formation of high stratus clouds, ground-covering cloud bases"
      },
      "correct": "C"
    },
    {
      "num": 144,
      "text": "What weather conditions can be expected during Foehn on the windward side of a mountain range?",
      "options": {
        "A": "Layered clouds, mountains obscured, poor visibility, moderate or heavy rain",
        "B": "Dissipating clouds with unusual warming, accompanied by strong, gusty winds",
        "C": "Calm wind and forming of high stratus clouds (high fog)",
        "D": "Scattered cumulus clouds with showers and thunderstorms"
      },
      "correct": "A"
    },
    {
      "num": 145,
      "text": "Measured pressure distribution in MSL and corresponding frontal systems are displayed by the...",
      "options": {
        "A": "Hypsometric chart",
        "B": "Prognostic chart.",
        "C": "Surface weather chart.",
        "D": "Significant Weather Chart (SWC)."
      },
      "correct": "C"
    },
    {
      "num": 146,
      "text": "In a METAR, heavy rain is designated by the identifier...",
      "options": {
        "A": "RA.",
        "B": ".+RA",
        "C": "SHRA",
        "D": ".+SHRA."
      },
      "correct": "B"
    },
    {
      "num": 147,
      "text": "In a METAR, (moderate) showers of rain are designated by the identifier...",
      "options": {
        "A": ".+TSRA",
        "B": "SHRA.",
        "C": "TS.",
        "D": ".+RA."
      },
      "correct": "B"
    },
    {
      "num": 148,
      "text": "Under which conditions back side weather (Rückseitenwetter) can be expected?",
      "options": {
        "A": "After passing of a cold front",
        "B": "Before passing of an occlusion",
        "C": "During Foehn at the lee side",
        "D": "After passing of a warm front"
      },
      "correct": "A"
    },
    {
      "num": 149,
      "text": "How does air temperatur change in ISA from MSL to approx. 10.000 m height?",
      "options": {
        "A": "From +30° to -40°C",
        "B": "From +20° to -40°C",
        "C": "From -15° to 50°C",
        "D": "From +15° to -50°C"
      },
      "correct": "D"
    },
    {
      "num": 150,
      "text": "What weather is likely to be experienced during Foehn in the Bavarian area close to the alps?",
      "options": {
        "A": "Cold, humid downhill wind on the lee side of the alps, flat pressure pattern",
        "B": "Nimbostratus cloud in the southern alps, rotor clouds at the lee side, warm and dry wind",
        "C": "High pressure area overhead Biskaya and low pressure area in Eastern Europe",
        "D": "Nimbostratus cloud in the northern alps, rotor clouds at the windward side, warm and dry wind"
      },
      "correct": "B"
    }
  ],
  "60": [
    {
      "num": 11,
      "text": "The term â€šmagnetic course' (MC) is defined as...",
      "options": {
        "A": "The direction from an arbitrary point on Earth to the magnetic north pole.",
        "B": "The angle between magnetic north and the course line.",
        "C": "The angle between true north and the course line.",
        "D": "The direction from an arbitrary point on Earth to the geographic North Pole."
      },
      "correct": "B"
    },
    {
      "num": 21,
      "text": "An aircraft is flying at aFL 75 with an outside air temperature (OAT) of -9°C. The QNH altitude is 6500 ft. The true altitude equals...",
      "options": {
        "A": "6250 ft.",
        "B": "7000 ft.",
        "C": "6750 ft",
        "D": "6500 ft."
      },
      "correct": "A"
    },
    {
      "num": 22,
      "text": "An aircraft is flying at a pressure altitude of 7000 feet with an outside air temperature (OAT) of +11°C. The QNH altitude is 6500 ft. The true altitude equals...",
      "options": {
        "A": "6500 ft.",
        "B": "7000 ft",
        "C": "6250 ft.",
        "D": "6750 ft."
      },
      "correct": "D"
    },
    {
      "num": 23,
      "text": "An aircraft is flying at a pressure altitude of 7000 feet with an outside air temperature (OAT) of +21°C. The QNH altitude is 6500 ft. The true altitude equals...",
      "options": {
        "A": "6500 ft",
        "B": "6250 ft.",
        "C": "7000 ft.",
        "D": "6750 ft."
      },
      "correct": "C"
    },
    {
      "num": 24,
      "text": "Given: True course: 255°. TAS: 100 kt. Wind: 200°/10 kt. The true heading equals...",
      "options": {
        "A": "250°.",
        "B": "265°.",
        "C": "275°.",
        "D": "245°."
      },
      "correct": "A"
    },
    {
      "num": 25,
      "text": "Given: True course: 165°. TAS: 90 kt. Wind: 130°/20 kt. Distance: 153 NM. The true heading equals...",
      "options": {
        "A": "152°.",
        "B": "158°.",
        "C": "165°.",
        "D": "126°."
      },
      "correct": "B"
    },
    {
      "num": 26,
      "text": "An aircraft is following a true course (TC) of 040° at a constant true airspeed (TAS) of 180 kt. The wind vector is 350°/30 kt. The groundspeed (GS) equals...",
      "options": {
        "A": "155 kt.",
        "B": "172 kt.",
        "C": "168 kt.",
        "D": "159 kt."
      },
      "correct": "D"
    },
    {
      "num": 27,
      "text": "Given: True course: 120°. TAS: 120 kt. Wind: 150°/12 kt. The WCA equals...",
      "options": {
        "A": "3° to the right.",
        "B": "6° to the right.",
        "C": "6° to the left.",
        "D": "3° to the left."
      },
      "correct": "A"
    },
    {
      "num": 28,
      "text": "The distance from 'A' to 'B' measures 120 NM. At a distance of 55 NM from 'A' the pilot realizes a deviation of 7 NM to the right. What approximate course change must be made to reach 'B' directly?",
      "options": {
        "A": "6° left",
        "B": "14° left",
        "C": "8° left",
        "D": "15° left"
      },
      "correct": "B"
    },
    {
      "num": 29,
      "text": "How many satellites are necessary for a precise and verified three-dimensional determination of the position?",
      "options": {
        "A": "Two",
        "B": "Three",
        "C": "Five",
        "D": "Four"
      },
      "correct": "D"
    },
    {
      "num": 30,
      "text": "What ground features should preferrably be used for orientation during visual flight?",
      "options": {
        "A": "Power lines",
        "B": "Farm tracks and creeks",
        "C": "Border lines",
        "D": "Rivers, railroads, highways"
      },
      "correct": "D"
    },
    {
      "num": 31,
      "text": "The circumference of the Earth at the equator is approximately... See figure (NAV-002) Siehe Anlage 1",
      "options": {
        "A": "10800 km.",
        "B": "12800 km.",
        "C": "21600 NM.",
        "D": "40000 NM."
      },
      "correct": "C"
    },
    {
      "num": 42,
      "text": "Given: True course from A to B: 352°. Ground distance: 100 NM. GS: 107 kt. Estimated time of departure (ETD): 0933 UTC. The estimated time of arrival (ETA) is...",
      "options": {
        "A": "1045 UTC.",
        "B": "1029 UTC.",
        "C": "1129 UTC.",
        "D": "1146 UTC."
      },
      "correct": "B"
    },
    {
      "num": 43,
      "text": "An aircraft travels 100 km in 56 minutes. The ground speed (GS) equals...",
      "options": {
        "A": "93 kt",
        "B": "107 km/h.",
        "C": "198 kt.",
        "D": "58 km/h"
      },
      "correct": "B"
    },
    {
      "num": 44,
      "text": "An aircraft is flying with a true airspeed (TAS) of 180 kt and a headwind component of 25 kt for 2 hours and 25 minutes. The distance flown equals...",
      "options": {
        "A": "693 NM.",
        "B": "202 NM.",
        "C": "375 NM.",
        "D": "435 NM."
      },
      "correct": "C"
    },
    {
      "num": 45,
      "text": "Given: Ground speed (GS): 160 kt. True course (TC): 177°. Wind vector (W/WS): 140°/20 kt. The true heading (TH) equals...",
      "options": {
        "A": "180°",
        "B": "173°.",
        "C": "169°.",
        "D": "184°."
      },
      "correct": "B"
    },
    {
      "num": 46,
      "text": "An aircraft is following a true course (TC) of 040° at a constant true airspeed (TAS) of 180 kt. The wind vector is 350°/30 kt. The wind correction angle (WCA) equals...",
      "options": {
        "A": ".+ 11°",
        "B": ". - 9°",
        "C": ".- 7°",
        "D": ".+ 5°"
      },
      "correct": "C"
    },
    {
      "num": 47,
      "text": "Given: True course: 270°. TAS: 100 kt. Wind: 090°/25 kt. Distance: 100 NM. The ground speed (GS) equals...",
      "options": {
        "A": "120 kt.",
        "B": "131 kt.",
        "C": "117 kt.",
        "D": "125 kt."
      },
      "correct": "D"
    },
    {
      "num": 48,
      "text": "When using a GPS for tracking to the next waypoint, a deviation indication is shown by a vertical bar and dots to the left and to the right of the bar. What statement describes the correct interpretation of the display?",
      "options": {
        "A": "The deviation of the bar from the center indicates the track error as angular distance in degrees; the scale for full deflection depends on the operating mode of the GPS.",
        "B": "The deviation of the bar from the center indicates the track error as absolute distance in NM; the scale for full deflection depends on the operating mode of the GPS.",
        "C": "The deviation of the bar from the center indicates the track error as angular distance in degrees; the scale for full deflection is +-10°.",
        "D": "The deviation of the bar from the center indicates the track error as absolute distance in NM; the scale for full deflection is +-10 NM."
      },
      "correct": "B"
    },
    {
      "num": 56,
      "text": "What is the distance from VOR Brünkendorf (BKD) (53°02?N, 011°33?E) to Pritzwalk (EDBU) (53°11'N, 12°11'E)? See annex (NAV-031) Siehe Anlage 2",
      "options": {
        "A": "24 NM",
        "B": "42 NM",
        "C": "24 km",
        "D": "42 km"
      },
      "correct": "A"
    },
    {
      "num": 58,
      "text": "An aircraft is flying with a true airspeed (TAS) of 120 kt and experiences 35 kt tailwind. How much time is needed for a distance of 185 NM?",
      "options": {
        "A": "1 h 12 min",
        "B": "2 h 11 min",
        "C": "0 h 50 min",
        "D": "1 h 32 min"
      },
      "correct": "A"
    },
    {
      "num": 59,
      "text": "Given: True course: 270°. TAS: 100 kt. Wind: 090°/25 kt. Distance: 100 NM. The flight time equals...",
      "options": {
        "A": "48 Min.",
        "B": "37 Min.",
        "C": "84 Min.",
        "D": "62 Min."
      },
      "correct": "A"
    },
    {
      "num": 60,
      "text": "Which answer completes the flight plan (marked cells)? See annex (NAV-014) (3,00 P.) Siehe Anlage 3",
      "options": {
        "A": "TH: 185°. MH: 184°. MC: 178°.",
        "B": "TH: 173°. MH: 184°. MC: 178°.",
        "C": "TH: 173°. MH: 174°. MC: 178°.",
        "D": "TH: 185°. MH: 185°. MC: 180°."
      },
      "correct": "A"
    },
    {
      "num": 61,
      "text": "What is meant by the term \"terrestrial navigation\"?",
      "options": {
        "A": "Orientation by ground celestial object during visual flight",
        "B": "Orientation by instrument readings during visual flight",
        "C": "Orientation by ground features during visual flight",
        "D": "Orientation by GPS during visual flight"
      },
      "correct": "C"
    },
    {
      "num": 66,
      "text": "What is the required flight time for a distance of 236 NM with a ground speed of 134 kt?",
      "options": {
        "A": "1:34 h",
        "B": "0:34 h",
        "C": "0:46 h",
        "D": "1:46 h"
      },
      "correct": "D"
    },
    {
      "num": 67,
      "text": "What is the true course (TC) from Uelzen (EDVU) (52°59?N, 10°28?E) to Neustadt (EDAN) (53°22'N, 011°37'E)? See annex (NAV-031) Siehe Anlage 2",
      "options": {
        "A": "241°",
        "B": "055°",
        "C": "235°",
        "D": "061°"
      },
      "correct": "D"
    },
    {
      "num": 68,
      "text": "What is the meaning of the 1:60 rule?",
      "options": {
        "A": "6 NM lateral offset at 1° drift after 10 NM",
        "B": "1 NM lateral offset at 1° drift after 60 NM",
        "C": "10 NM lateral offset at 1° drift after 60 NM",
        "D": "60 NM lateral offset at 1° drift after 1 NM"
      },
      "correct": "B"
    },
    {
      "num": 72,
      "text": "An aircraft is following a true course (TC) of 220° at a constant TAS of 220 kt. The wind vector is 270°/50 kt. The ground speed (GS) equals...",
      "options": {
        "A": "185 kt.",
        "B": "255 kt.",
        "C": "170 kt.",
        "D": "135 kt."
      },
      "correct": "A"
    },
    {
      "num": 73,
      "text": "An aeroplane has a heading of 090°. The distance which has to be flown is 90 NM. After 45 NM the aeroplane is 4.5 NM north of the planned flight path. What is the corrected heading to reach the arrival aerodrome directly?",
      "options": {
        "A": "18° to the right",
        "B": "9° to the right",
        "C": "6° to the right",
        "D": "12° to the right"
      },
      "correct": "D"
    },
    {
      "num": 77,
      "text": "What is the distance from Neustadt (EDAN) (53°22'N, 011°37'E) to Uelzen (EDVU) (52°59?N, 10°28?E)? See annex (NAV-031) Siehe Anlage 2",
      "options": {
        "A": "46 km",
        "B": "46 NM",
        "C": "78 km",
        "D": "78 km"
      },
      "correct": "B"
    },
    {
      "num": 78,
      "text": "What is meant by the term terrestrial navigation?",
      "options": {
        "A": "Orientation by ground celestial object during visual flight",
        "B": "Orientation by instrument readings during visual flight",
        "C": "Orientation by ground features during visual flight",
        "D": "Orientation by GPS during visual flight"
      },
      "correct": "C"
    }
  ],
  "70": [
    {
      "num": 16,
      "text": "A glider pilot has to conduct an off-field landing in a mountainous region. The only available landing site is highly inclined. How should the landing be conducted?",
      "options": {
        "A": "Approach with increased speed, quick flare to follow the inclined ground",
        "B": "Approach down the ridge with increased speed, push according to ground level during landing",
        "C": "According to prevailant wind, approach and land parallel to the ridge with headwind",
        "D": "Approach with minimum speed, careful flare when reaching the landing site"
      },
      "correct": "A"
    },
    {
      "num": 24,
      "text": "During final approach, you realize that you missed to extend the gear. How should the landing be conducted?",
      "options": {
        "A": "You land without gear, and carefully touch down with minimum speed.",
        "B": "You extend the gear immediately and land as usual.",
        "C": "You retract flaps, extend the gear and land as usual.",
        "D": "You land without gear with higher than usual speed."
      },
      "correct": "A"
    },
    {
      "num": 25,
      "text": "After reaching what height during winch launch the maximum pitch position can be taken?",
      "options": {
        "A": "From approx. 50 m while maintaining a save speed for winch launch.",
        "B": "From 15 m while reaching a speed of at least 90 km/h",
        "C": "From 150 m or higher, when in case of cable break landing straight ahead is no longer possible",
        "D": "Shortly after lift-off, provided a sufficiently strong headwind"
      },
      "correct": "A"
    },
    {
      "num": 26,
      "text": "What has to be considered for the speed during approach and landing?",
      "options": {
        "A": "Wind speed and weight",
        "B": "Altitude and weight",
        "C": "Wind speed and Altitude",
        "D": "Weight and wind speed"
      },
      "correct": "D"
    },
    {
      "num": 27,
      "text": "How can you determine wind direction in case of an outlanding?",
      "options": {
        "A": "Monitoring of smoke, flags, waving fields",
        "B": "Wind forecast from flight weather report",
        "C": "Request from other pilots who can be reached by radio",
        "D": "Remembering the wind indicated by the windsock an departing airfield"
      },
      "correct": "A"
    },
    {
      "num": 28,
      "text": "What landing technique is recommended for landing on a down-hill gras area?",
      "options": {
        "A": "In general up-hill",
        "B": "Diagonal down-hill",
        "C": "With brakes applied on main wheel, no air brakes",
        "D": "Full air brakes, gear retracted and stalled"
      },
      "correct": "A"
    },
    {
      "num": 29,
      "text": "What has to be checked before any change in direction during glide?",
      "options": {
        "A": "Check for turn to be flown coordinated",
        "B": "Check for thermal clouds",
        "C": "Check for loose object secured",
        "D": "Check for free airspace in desired direction"
      },
      "correct": "D"
    },
    {
      "num": 30,
      "text": "Before a winch launch, you detect a light tailwind. What has to be considered?",
      "options": {
        "A": "Roll until lift-off will take a little longer, watch speed",
        "B": "A weaker rated-brake-point can be used, load will be smaller",
        "C": "Roll until lift-off will be shorter since tailwind is pushing from behind",
        "D": "To reach more height, full pull on the elevator after lift-off"
      },
      "correct": "A"
    },
    {
      "num": 44,
      "text": "During approach for landing with strong crosswind, how should the turn from base to final be flown?",
      "options": {
        "A": "Turn with maximum 60° bank, carefully watch speed and yaw string, track correction after overshoot.",
        "B": "Maximum 30° bank, use rudder to early align sailplane with final track",
        "C": "Maximum 60° bank, use rudder to early align sailplane with final track.",
        "D": "Turn with maximum 30° bank, carefully watch speed and yaw string, track correction after overshoot."
      },
      "correct": "D"
    },
    {
      "num": 45,
      "text": "During thermal soaring, another sailplane is following close by. What should be done to avoid a collision?",
      "options": {
        "A": "You reduce speed to let the other sailplane fly by",
        "B": "You reduce bank to achieve a larger turn radius",
        "C": "You increase bank to be better seen from the other sailplane",
        "D": "You increase speed to achieve a position opposite in the circle"
      },
      "correct": "D"
    },
    {
      "num": 46,
      "text": "What heights should be consideres for landing phases with a glider plane?",
      "options": {
        "A": "100 m abeam threashold and 50 m after final approach turn",
        "B": "300 m abeam threashold and 150 m in final approach",
        "C": "500 m abeam threashold and 50 m after final approach turn",
        "D": "150 - 200 m abeam threashold and 100 m after final approach turn"
      },
      "correct": "D"
    },
    {
      "num": 47,
      "text": "How should a glider plane be parked when observing strong winds?",
      "options": {
        "A": "Nose into the wind, keep and weigh tail down",
        "B": "Nose into the wind, extends air brakes, secure rudders",
        "C": "Downwind wing on the ground, weigh wing down, secure rudders",
        "D": "Windward wing on the ground, weigh wing down, secure rudders"
      },
      "correct": "D"
    },
    {
      "num": 55,
      "text": "What has to be considers when overflying mountain ridges?",
      "options": {
        "A": "Turbulences, reduce to minimum speed",
        "B": "Do not overfly national parks",
        "C": "Turbulences, therefore slightly increase speed",
        "D": "Use circling birds to find thermal cells"
      },
      "correct": "C"
    },
    {
      "num": 56,
      "text": "What is indicated by \"buffeting\" noticable at elevator stick?",
      "options": {
        "A": "C.G. position too far ahead",
        "B": "Glider plane very dirty",
        "C": "Too slow, wing airflow stalled",
        "D": "Too fast, turbulence bubbles hitting on aileron"
      },
      "correct": "C"
    },
    {
      "num": 63,
      "text": "When has a pre-flight check to be done?",
      "options": {
        "A": "Before first flight of the day, and after every change of pilot",
        "B": "After every build-up of the airplane",
        "C": "Once a month, with TMG once a day",
        "D": "Before flight operation and before every flight"
      },
      "correct": "A"
    },
    {
      "num": 65,
      "text": "The term flight time is defined as...",
      "options": {
        "A": "The period from engine start for the purpose of taking off to leaving the aircraft after engine shutdown.",
        "B": "The period from the start of the take-off run to the final touchdown when landing.",
        "C": "The total time from the first aircraft movement until the moment it finally comes to rest at the end of the flight.",
        "D": "The total time from the first take-off until the last landing in conjunction with one or more consecutive flights."
      },
      "correct": "C"
    },
    {
      "num": 66,
      "text": "During approach, tower provides the following information: Wind 15 knots, gusts 25 knots. How should the landing be performed?",
      "options": {
        "A": "Approach with minimum speed, correct changes in attitude with careful rudder inputs",
        "B": "Approach with normal speed, maintain speed using spoiler flaps",
        "C": "Approach with increased speed, correct changes in attitude with firm rudder inputs",
        "D": "Approach with increased speed, avoid usage of spoiler flaps"
      },
      "correct": "C"
    },
    {
      "num": 67,
      "text": "What is indicated by buffeting noticable at elevator stick?",
      "options": {
        "A": "C.G. position too far ahead",
        "B": "Glider plane very dirty",
        "C": "Too slow, wing airflow stalled",
        "D": "Too fast, turbulence bubbles hitting on aileron"
      },
      "correct": "C"
    }
  ],
  "80": [
    {
      "num": 5,
      "text": "Which point on the aerofoil is represented by number 4? See figure (PFA-009) Siehe Anlage 2",
      "options": {
        "A": "Transition point",
        "B": "Stagnation point",
        "C": "Center of pressure",
        "D": "Separation point"
      },
      "correct": "D"
    },
    {
      "num": 6,
      "text": "Which point on the aerofoil is represented by number 1? See figure (PFA-009) Siehe Anlage 2",
      "options": {
        "A": "Center of pressure",
        "B": "Stagnation point",
        "C": "Stagnation point",
        "D": "Transition point"
      },
      "correct": "B"
    },
    {
      "num": 16,
      "text": "Which constructive feature is shown in the figure? See figure (PFA-006) L: Lift Siehe Anlage 4",
      "options": {
        "A": "Lateral stability by wing dihedral",
        "B": "Differential aileron deflection",
        "C": "Directional stability by lift generation",
        "D": "Longitudinal stability by wing dihedral"
      },
      "correct": "A"
    },
    {
      "num": 17,
      "text": "\"Longitudinal stability\" is referred to as stability around which axis?",
      "options": {
        "A": "Lateral axis",
        "B": "Propeller axis",
        "C": "Longitudinal axis",
        "D": "Vertical axis"
      },
      "correct": "A"
    },
    {
      "num": 18,
      "text": "Rotation around the vertical axis is called...",
      "options": {
        "A": "Slipping.",
        "B": "Pitching.",
        "C": "Yawing.",
        "D": "Rolling."
      },
      "correct": "C"
    },
    {
      "num": 19,
      "text": "Rotation around the lateral axis is called...",
      "options": {
        "A": "Yawing.",
        "B": "Pitching.",
        "C": "Rolling.",
        "D": "Stalling."
      },
      "correct": "B"
    },
    {
      "num": 20,
      "text": "The elevator moves an aeroplane around the...",
      "options": {
        "A": "Vertical axis.",
        "B": "Longitudinal axis.",
        "C": "Elevator axis.",
        "D": "Lateral axis."
      },
      "correct": "D"
    },
    {
      "num": 21,
      "text": "What has to be considered with regard to the center of gravity position?",
      "options": {
        "A": "By moving the elevator trim tab, the center of gravity can be shifted into a correct position.",
        "B": "Only correct loading can assure a correct and safe center of gravity position.",
        "C": "The center of gravity's position can only be determined during flight.",
        "D": "By moving the aileron trim tab, the center of gravity can be shifted into a correct position."
      },
      "correct": "B"
    },
    {
      "num": 22,
      "text": "What is the advantage of differential aileron movement?",
      "options": {
        "A": "The drag of the downwards deflected aileron is lowered and the adverse yaw is smaller",
        "B": "The total lift remains constant during aileron deflection",
        "C": "The ratio of the drag coefficient to lift coefficient is increased",
        "D": "The adverse yaw is higher"
      },
      "correct": "A"
    },
    {
      "num": 23,
      "text": "The aerodynamic rudder balance...",
      "options": {
        "A": "Reduces the control surfaces.",
        "B": "Delays the stall.",
        "C": "Reduces the control stick forces.",
        "D": "Improves the rudder effectiveness."
      },
      "correct": "C"
    },
    {
      "num": 24,
      "text": "What is the function of the static rudder balance?",
      "options": {
        "A": "To prevent control surface flutter",
        "B": "To trim the controls almost without any force",
        "C": "To increase the control stick forces",
        "D": "To limit the control stick forces"
      },
      "correct": "A"
    },
    {
      "num": 25,
      "text": "The trim tab at the elevator is defelected upwards. In which position is the corresponding indicator?",
      "options": {
        "A": "Neutral position",
        "B": "Nose-down position",
        "C": "Nose-up position",
        "D": "Laterally trimmed"
      },
      "correct": "B"
    },
    {
      "num": 26,
      "text": "Point number 1 in the figure indicates which flight state? See figure (PFA-008) Siehe Anlage 5",
      "options": {
        "A": "Inverted flight",
        "B": "Slow flight",
        "C": "Stall",
        "D": "Best gliding angle"
      },
      "correct": "A"
    },
    {
      "num": 27,
      "text": "In a co-ordinated turn, how is the relation between the load factor (n) and the stall speed (Vs)?",
      "options": {
        "A": "N is smaller than 1, Vs is greater than in straight and level flight.",
        "B": "N is greater than 1, Vs is smaller than in straight and level flight.",
        "C": "N is greater than 1, Vs is greater than in straight and level flight.",
        "D": "N is smaller than 1, Vs is smaller than in straight and level flight."
      },
      "correct": "C"
    },
    {
      "num": 28,
      "text": "The pressure compensation between wind upper and lower surface results in ...",
      "options": {
        "A": "Induced drag by wing tip vortices",
        "B": "Laminar airflow by wing tip vortices.",
        "C": "Profile drag by wing tip vortices.",
        "D": "Lift by wing tip vortices."
      },
      "correct": "A"
    },
    {
      "num": 29,
      "text": "At stationary glide and the same mass, what is the difference when using a thick airfoild instead of a thinner airfoil?",
      "options": {
        "A": "More drag, same lift",
        "B": "Less drag, less lift",
        "C": "More drag, less lift",
        "D": "Less drag, same lift"
      },
      "correct": "A"
    },
    {
      "num": 30,
      "text": "What is shown by a profile polar?",
      "options": {
        "A": "Ratio between minimum rate of descent and best glide",
        "B": "Ratio between total lift and drag depending on angle of attack",
        "C": "Ratio of cA and cD at different angles of attack",
        "D": "Lift coefficient cA at different angles of attack"
      },
      "correct": "C"
    },
    {
      "num": 33,
      "text": "If surrounded by airflow (v>0), any arbitrarily shaped body produces...",
      "options": {
        "A": "Drag and lift.",
        "B": "Drag.",
        "C": "Lift without drag.",
        "D": "Constant drag at any speed."
      },
      "correct": "B"
    },
    {
      "num": 34,
      "text": "Number 3 in the drawing corresponds to the... See figure (PFA-010) Siehe Anlage 1",
      "options": {
        "A": "Camber line.",
        "B": "Thickness.",
        "C": "Chord.",
        "D": "Chord line."
      },
      "correct": "A"
    },
    {
      "num": 43,
      "text": "Which design feature can compensate for adverse yaw?",
      "options": {
        "A": "Which design feature can compensate for adverse yaw?",
        "B": "Differential aileron defletion",
        "C": "Full deflection of the aileron",
        "D": "Wing dihedral"
      },
      "correct": "B"
    },
    {
      "num": 44,
      "text": "What describes \"wing loading\"?",
      "options": {
        "A": "Wing area per weight",
        "B": "Drag per weight",
        "C": "Weight per wing area",
        "D": "Drag per wing area"
      },
      "correct": "C"
    },
    {
      "num": 45,
      "text": "Point number 5 in the figure indicates which flight state? See figure (PFA-008) Siehe Anlage 5",
      "options": {
        "A": "Slow flight",
        "B": "Best gliding angle",
        "C": "Inverted flight",
        "D": "Stall"
      },
      "correct": "A"
    },
    {
      "num": 46,
      "text": "Extending airbrakes results in ...",
      "options": {
        "A": "Less drag and more lift.",
        "B": "More drag and less lift.",
        "C": "More drag and more lift.",
        "D": "Less drag and less lift."
      },
      "correct": "B"
    },
    {
      "num": 47,
      "text": "The glide ratio of a sailplane can be improved by which measures?",
      "options": {
        "A": "Higher airplane mass, thin airfoil, taped gaps between wing and fuselage",
        "B": "Lower airplane mass, correct speed, retractable gear",
        "C": "Cleaning, correct speed, retractable gear, taped gaps between wing and fuselage",
        "D": "Forward C.G. position, correct speed, taped gaps between wing and fuselage"
      },
      "correct": "C"
    },
    {
      "num": 48,
      "text": "What is the diffeence between spin and spiral dive?",
      "options": {
        "A": "Spin: stall at inner wing, speed increasing rapidly; Spiral dive: airflow at both wings, speed constant",
        "B": "Spin: stall at inner wing, speed constant; Spiral dive: airflow at both wings, speed increasing rapidly",
        "C": "Spin: stall at outer wing, speed constant; Spiral dive: airflow at both wings, speed increasing rapidly",
        "D": "Spin: stall at outer wing, speed increasing rapidly; Spiral dive: airflow at both wings, speed constant"
      },
      "correct": "B"
    },
    {
      "num": 51,
      "text": "Stability around which axis is mainly influenced by the center of gravity's longitudinal position?",
      "options": {
        "A": "Longitudinal axis",
        "B": "Lateral axis",
        "C": "Gravity axis",
        "D": "Vertical axis"
      },
      "correct": "B"
    },
    {
      "num": 52,
      "text": "What structural item provides directional stability to an airplane?",
      "options": {
        "A": "Differential aileron deflection",
        "B": "Wing dihedral",
        "C": "Large elevator",
        "D": "Large vertical tail"
      },
      "correct": "D"
    },
    {
      "num": 54,
      "text": "In straight and level flight with constant performance of the engine, the angle of attack at the wing is...",
      "options": {
        "A": "Smaller than in a descent.",
        "B": "Greater than in a climb.",
        "C": "Greater than at take-off.",
        "D": "Smaller than in a climb."
      },
      "correct": "D"
    },
    {
      "num": 55,
      "text": "What is the function of the horizontal tail (among other things)?",
      "options": {
        "A": "To stabilise the aeroplane around the longitudinal axis",
        "B": "To stabilise the aeroplane around the lateral axis",
        "C": "To initiate a curve around the vertical axis",
        "D": "To stabilise the aeroplane around the vertical axis"
      },
      "correct": "B"
    },
    {
      "num": 56,
      "text": "Deflecting the rudder to the left causes...",
      "options": {
        "A": "Pitching of the aircraft to the left",
        "B": "Yawing of the aircraft to the left.",
        "C": "Pitching of the aircraft to the right.",
        "D": "Yawing of the aircraft to the right."
      },
      "correct": "B"
    },
    {
      "num": 57,
      "text": "Differential aileron deflection is used to...",
      "options": {
        "A": "Reduce wake turbulence.",
        "B": "Avoid a stall at low angles of attack.",
        "C": "Keep the adverse yaw low.",
        "D": "Increase the rate of descent."
      },
      "correct": "C"
    },
    {
      "num": 58,
      "text": "How is the balance of forces affected during a turn?",
      "options": {
        "A": "A lower lift force compensates for a lower net force as compared to level flight",
        "B": "Lift force must be increased to compensate for the sum of centrifugal and gravitational force",
        "C": "The horizontal component of the lift force during a turn is the centrifugal force",
        "D": "The net force results from superposition of gravity and centripetal forces"
      },
      "correct": "B"
    },
    {
      "num": 59,
      "text": "What engine design at a Touring Motor Glider (TMG) results in least drag?",
      "options": {
        "A": "Engine and propeller mounted fix on the fuselage",
        "B": "Engine and propeller mounted stowable on the fuselage",
        "C": "Engine and propeller mounted fix at the aircraft's nose",
        "D": "Engine and propeller mounted fix at the horizontal stabilizer"
      },
      "correct": "B"
    },
    {
      "num": 60,
      "text": "What effect is referred to as \"adverse yaw\"?",
      "options": {
        "A": "Aileron operation results in a yaw to the desired side due to less drag at the down-deflected aileron",
        "B": "Rudder operation results in a rolling moment to the opposite side due to more lift generated by the faster moving wing.",
        "C": "Aileron operation results in a yaw to the opposite side due to more drag at the up-deflected aileron",
        "D": "Aileron operation results in a yaw to the opposite side due to more drag at the down-deflected aileron"
      },
      "correct": "D"
    },
    {
      "num": 61,
      "text": "What is meant by \"ground effect\"?",
      "options": {
        "A": "Decrease of lift and increase of induced drag close to the ground",
        "B": "Increase of lift and decrease of induced drag close to the ground",
        "C": "Increase of lift and increase of induced drag close to the ground",
        "D": "Decrease of lift and decrease of induced drag close to the ground"
      },
      "correct": "B"
    },
    {
      "num": 67,
      "text": "Rudder deflections result in a turn of the aeroplane around the...",
      "options": {
        "A": "Rudder axis.",
        "B": "Vertical axis.",
        "C": "Lateral axis",
        "D": "Longitudinal axis."
      },
      "correct": "B"
    },
    {
      "num": 68,
      "text": "Through which factor listed below does the load factor increase during cruise flight?",
      "options": {
        "A": "Lower air density",
        "B": "A forward centre of gravity",
        "C": "Higher aeroplane weight",
        "D": "An upward gust"
      },
      "correct": "D"
    },
    {
      "num": 69,
      "text": "During approch to the next updraft, the vertical speed indicator reads 3 m/s descent. Within the updraft you expect a mean rate of climb of 2 m/s. According McCready, how should you adjust the speed during approach of the updraft?",
      "options": {
        "A": "The McCready ring should be set to 2 m/s, the recommended speed can be read at the McCready scale next to the sum of current rate of descent at expected rate of climb (5 m/s).",
        "B": "The McCready ring should be set to 3 m/s, the recommended speed can be read at the McCready scale next to the expected rate of climb (2 m/s).",
        "C": "The McCready ring should be set to 2 m/s, the recommended speed can be read at the McCready scale next to the current rate of descent (3 m/s).",
        "D": "Outside of thermal cells, the McCready ring should be set to 0 m/s, the recommended speed can be read at the McCready scale next to the current rate of descent (3 m/s)."
      },
      "correct": "C"
    },
    {
      "num": 70,
      "text": "What has to be considered when operating a sailplane equipped with camper flaps?",
      "options": {
        "A": "During approach and landing, camber must not be changed from negative to positive.",
        "B": "During approach and landing, camber must not be changed from positive to negative.",
        "C": "During winch launch, camber must be set to full negative.",
        "D": "During winch launch, camber must be set to full positive."
      },
      "correct": "B"
    },
    {
      "num": 75,
      "text": "Which point on the aerofoil is represented by number 3? See figure (PFA-009) Siehe Anlage 2",
      "options": {
        "A": "Stagnation point",
        "B": "Separation point",
        "C": "Center of pressure",
        "D": "Transition point"
      },
      "correct": "D"
    },
    {
      "num": 81,
      "text": "Number 2 in the drawing corresponds to the... See figure (PFA-010) Siehe Anlage 1",
      "options": {
        "A": "Profile thickness.",
        "B": "Chord line.",
        "C": "Chord line.",
        "D": "Angle of attack."
      },
      "correct": "C"
    },
    {
      "num": 82,
      "text": "The angle (alpha) shown in the figure is referred to as... See figure (PFA-003) DoF: direction of airflow Siehe Anlage 3",
      "options": {
        "A": "Lift angle.",
        "B": "Angle of attack.",
        "C": "Angle of incidence.",
        "D": "Angle of inclination"
      },
      "correct": "B"
    },
    {
      "num": 83,
      "text": "The right aileron deflects upwards, the left downwards. How does the aircraft react?",
      "options": {
        "A": "Rolling to the left, no yawing",
        "B": "Rolling to the right, yawing to the left",
        "C": "Rolling to the left, yawing to the right",
        "D": "Rolling to the right, yawing to the right"
      },
      "correct": "B"
    },
    {
      "num": 84,
      "text": "What has to be considered when operating a sailplane with water ballast?",
      "options": {
        "A": "Best glide angle decreases.",
        "B": "Significant CG shifts.",
        "C": "Best glide speed decreases",
        "D": "It should stay below freezing level."
      },
      "correct": "D"
    },
    {
      "num": 88,
      "text": "Which statement describes a situation of static stability?",
      "options": {
        "A": "An aircraft distorted by external impact will return to the original position",
        "B": "An aircraft distorted by external impact will tend to an even more deflected position",
        "C": "An aircraft distorted by external impact will maintain the deflected position",
        "D": "An aircraft distorted by external impact can return to its original position by rudder input"
      },
      "correct": "A"
    },
    {
      "num": 89,
      "text": "A sailplane is operated with additional water ballast. How do best gliding angle and speed of best glide change, when compared to flying without water ballast?",
      "options": {
        "A": "Best gliding angle descreases, best glide speed decreases.",
        "B": "Best gliding angle remains unchanged, best glide speed increases.",
        "C": "Best gliding angle remains increases, best glide speed increases.",
        "D": "Best gliding angle remains unchanged, best glide speed decreases."
      },
      "correct": "B"
    },
    {
      "num": 90,
      "text": "Which constructive feature has the purpose to reduce stearing forces?",
      "options": {
        "A": "T-tail",
        "B": "Differential aileron deflection",
        "C": "Vortex generators",
        "D": "Aerodynamic rudder balance"
      },
      "correct": "D"
    },
    {
      "num": 91,
      "text": "If surrounded by airflow (v > 0), any arbitrarily shaped body produces...",
      "options": {
        "A": "Drag and lift.",
        "B": "Drag.",
        "C": "Lift without drag.",
        "D": "Constant drag at any speed."
      },
      "correct": "B"
    },
    {
      "num": 92,
      "text": "Longitudinal stability is referred to as stability around which axis?",
      "options": {
        "A": "Lateral axis",
        "B": "Propeller axis",
        "C": "Longitudinal axis",
        "D": "Vertical axis"
      },
      "correct": "A"
    },
    {
      "num": 93,
      "text": "What describes wing loading?",
      "options": {
        "A": "Wing area per weight",
        "B": "Drag per weight",
        "C": "Weight per wing area",
        "D": "Drag per wing area"
      },
      "correct": "C"
    },
    {
      "num": 94,
      "text": "What effect is referred to as adverse yaw?",
      "options": {
        "A": "Aileron operation results in a yaw to the desired side due to less drag at the down-deflected aileron",
        "B": "Rudder operation results in a rolling moment to the opposite side due to more lift generated by the faster moving wing.",
        "C": "Aileron operation results in a yaw to the opposite side due to more drag at the up-deflected aileron",
        "D": "Aileron operation results in a yaw to the opposite side due to more drag at the down-deflected aileron"
      },
      "correct": "D"
    },
    {
      "num": 95,
      "text": "What is meant by ground effect?",
      "options": {
        "A": "Decrease of lift and increase of induced drag close to the ground",
        "B": "Increase of lift and decrease of induced drag close to the ground",
        "C": "Increase of lift and increase of induced drag close to the ground",
        "D": "Decrease of lift and decrease of induced drag close to the ground"
      },
      "correct": "B"
    }
  ],
  "90": [
    {
      "num": 19,
      "text": "What does a cloud coverage of \"FEW\" mean in a METAR weather report?",
      "options": {
        "A": "5 to 7 eighths",
        "B": "8 eighths",
        "C": "3 to 4 eighths",
        "D": "1 to 2 eighths"
      },
      "correct": "D"
    },
    {
      "num": 20,
      "text": "What does a cloud coverage of \"SCT\" mean in a METAR weather report?",
      "options": {
        "A": "5 to 7 eighths",
        "B": "8 eighths",
        "C": "3 to 4 eighths",
        "D": "1 to 2 eighths"
      },
      "correct": "C"
    },
    {
      "num": 21,
      "text": "What does a cloud coverage of \"BKN\" mean in a METAR weather report?",
      "options": {
        "A": "1 to 2 eighths",
        "B": "5 to 7 eighths",
        "C": "3 to 4 eighths",
        "D": "8 eighths"
      },
      "correct": "B"
    },
    {
      "num": 22,
      "text": "Which transponder code indicates a radio failure?",
      "options": {
        "A": "7500",
        "B": "7700",
        "C": "7000",
        "D": "7600"
      },
      "correct": "D"
    },
    {
      "num": 23,
      "text": "What is the correct phrase to begin a blind transmission?",
      "options": {
        "A": "Listen",
        "B": "Blind",
        "C": "Transmitting blind",
        "D": "No reception"
      },
      "correct": "C"
    },
    {
      "num": 24,
      "text": "How often shall a blind transmission be made?",
      "options": {
        "A": "Two times",
        "B": "Four times",
        "C": "Three times",
        "D": "One time"
      },
      "correct": "D"
    },
    {
      "num": 25,
      "text": "In what situation is it appropriate to set the transponder code 7600?",
      "options": {
        "A": "Hijacking",
        "B": "Emergency",
        "C": "Flight into clouds",
        "D": "Loss of radio"
      },
      "correct": "D"
    },
    {
      "num": 26,
      "text": "What is the correct course of action when experiencing a radio failure in class D airspace?",
      "options": {
        "A": "The flight has to be continued above 5000 feet complying with VFR flight rules or the airspace has to be left by the shortest route",
        "B": "The flight has to be continued above 5000 feet complying with VFR flight rules or the airspace has to be left using a standard routing",
        "C": "The flight has to be continued according to the last clearance complying with VFR rules or the airspace has to be left by the shortest route",
        "D": "The flight has to be continued according to the last clearance complying with VFR flight rules or the airspace has to be left using a standard routing"
      },
      "correct": "C"
    },
    {
      "num": 27,
      "text": "Which phrase is to be repeated three times before transmitting an urgency message?",
      "options": {
        "A": "Mayday",
        "B": "Urgent",
        "C": "Pan Pan",
        "D": "Help"
      },
      "correct": "C"
    },
    {
      "num": 28,
      "text": "What is the correct frequency for an initial distress message?",
      "options": {
        "A": "Radar frequency",
        "B": "Current frequency",
        "C": "FIS frequency",
        "D": "Emergency frequency"
      },
      "correct": "B"
    },
    {
      "num": 29,
      "text": "What kind of information should be included in an urgency message?",
      "options": {
        "A": "Nature of problem or observation, important information for support, departure aerodrome, information about position, heading and altitude",
        "B": "Intended routing, important information for support, intentions of the pilot, information about position, departure aerodrome, heading and altitude",
        "C": "Intended routing, important information for support, intentions of the pilot, departure aerodrome, destination aerodrome, heading and altitude",
        "D": "Nature of problem or observation, important information for support, intentions of the pilot, information about position, heading and altitude"
      },
      "correct": "D"
    },
    {
      "num": 30,
      "text": "What is the correct designation of the frequency band from 118.000 to 136.975 MHz used for voice communication?",
      "options": {
        "A": "MF",
        "B": "LF",
        "C": "HF",
        "D": "VHF"
      },
      "correct": "D"
    },
    {
      "num": 47,
      "text": "In what case is visibility transmitted in meters?",
      "options": {
        "A": "Up to 5 km",
        "B": "Greater than 10 km",
        "C": "Greater than 5 km",
        "D": "Up to 10 km"
      },
      "correct": "A"
    },
    {
      "num": 48,
      "text": "Urgency messages are defined as...",
      "options": {
        "A": "Messages concerning aircraft and their passengers which face a grave and imminent threat and require immediate assistance.",
        "B": "Messages concerning urgent spare parts which are needed for a continuation of flight and which need to be ordered in advance.",
        "C": "Information concerning the apron personell and which imply an imminent danger to landing aircraft",
        "D": "Messages concerning the safety of an aircraft, a watercraft or some other vehicle or person in sight."
      },
      "correct": "D"
    },
    {
      "num": 49,
      "text": "Distress messages contain...",
      "options": {
        "A": "Information concerning urgent spare parts which are required for a continuation of flight and which have to be ordered in advance.",
        "B": "Information concerning the apron personell and which imply an imminent danger to landing aircraft.",
        "C": "Information concerning the safety of an aircraft, a watercraft or some other vehicle or person in sight",
        "D": "Information concerning aircraft and their passengers which face a grave and imminent threat and require immediate assistance."
      },
      "correct": "D"
    },
    {
      "num": 50,
      "text": "What is the approximate speed of electromagnetic wave propagation?",
      "options": {
        "A": "123000 m/s",
        "B": "300000 km/s",
        "C": "123000 km/s",
        "D": "300000 m/s"
      },
      "correct": "B"
    },
    {
      "num": 58,
      "text": "In what cases is visibility transmitted in kilometers?",
      "options": {
        "A": "Greater than 10 km",
        "B": "Up to 5 km",
        "C": "Greater than 5 km",
        "D": "Up to 10 km"
      },
      "correct": "C"
    },
    {
      "num": 59,
      "text": "How can you obtain meteorological information concerning airports during a crosscountry flight?",
      "options": {
        "A": "GAMET",
        "B": "METAR",
        "C": "AIRMET",
        "D": "VOLMET"
      },
      "correct": "D"
    },
    {
      "num": 63,
      "text": "Which of the following factors affects the reception of VHF transmissions?",
      "options": {
        "A": "Height of ionosphere",
        "B": "Altitude",
        "C": "Twilight error",
        "D": "Shoreline effect"
      },
      "correct": "B"
    },
    {
      "num": 65,
      "text": "On what frequency shall a blind transmission be made?",
      "options": {
        "A": "On the appropriate FIS frequency",
        "B": "On a tower frequency",
        "C": "On a radar frequency of the lower airspace",
        "D": "On the current frequency"
      },
      "correct": "D"
    },
    {
      "num": 66,
      "text": "The flight has to be continued according to the last clearance complying with VFR flight rules or the airspace has to be left using a standard routing",
      "options": {
        "A": "There are other aircraft in the aerodrome circuit",
        "B": "It ist the aerodrome of departure",
        "C": "It is the destination aerodrome",
        "D": "Approval has been granted before"
      },
      "correct": "D"
    },
    {
      "num": 71,
      "text": "The correct transponder code for emergencies is...",
      "options": {
        "A": "7600.",
        "B": "7500.",
        "C": "7700.",
        "D": "7000."
      },
      "correct": "C"
    },
    {
      "num": 72,
      "text": "What information is broadcasted on a VOLMET frequency?",
      "options": {
        "A": "Current information",
        "B": "Navigational information",
        "C": "Meteorological information",
        "D": "NOTAMS"
      },
      "correct": "C"
    },
    {
      "num": 73,
      "text": "An ATIS is valid for...",
      "options": {
        "A": "45 minutes.",
        "B": "60 minutes.",
        "C": "30 minutes.",
        "D": "10 minutes."
      },
      "correct": "C"
    },
    {
      "num": 74,
      "text": "Which abbreviation is used for the term abeam?",
      "options": {
        "A": "ABB",
        "B": "ABM",
        "C": "ABE",
        "D": "ABA"
      },
      "correct": "B"
    },
    {
      "num": 75,
      "text": "Which abbreviation is used for the term visual flight rules?",
      "options": {
        "A": "VFS",
        "B": "VRU",
        "C": "VFR",
        "D": "VMC"
      },
      "correct": "C"
    },
    {
      "num": 76,
      "text": "Which abbreviation is used for the term obstacle?",
      "options": {
        "A": "OBST",
        "B": "OBTC",
        "C": "OST",
        "D": "OBS"
      },
      "correct": "A"
    },
    {
      "num": 77,
      "text": "What does the abbreviation FIS stand for?",
      "options": {
        "A": "Flight information service",
        "B": "Flashing information system",
        "C": "Flight information system",
        "D": "Flashing information service"
      },
      "correct": "A"
    },
    {
      "num": 78,
      "text": "What does the abbreviaton FIR stand for?",
      "options": {
        "A": "Flight information region",
        "B": "Flight integrity receiver",
        "C": "Flow integrity required",
        "D": "Flow information radar"
      },
      "correct": "A"
    },
    {
      "num": 79,
      "text": "What does the abbreviation H24 stand for?",
      "options": {
        "A": "No specific opening times",
        "B": "24 h service",
        "C": "Sunrise to sunset",
        "D": "Sunset to sunrise"
      },
      "correct": "B"
    },
    {
      "num": 80,
      "text": "What does the abbreviation HX stand for?",
      "options": {
        "A": "24 h service",
        "B": "Sunrise to sunset",
        "C": "No specific opening hours",
        "D": "Sunset to sunrise"
      },
      "correct": "C"
    },
    {
      "num": 81,
      "text": "The directional information 12 o'clock is correctly transmitted as...",
      "options": {
        "A": "One two.",
        "B": "Twelve o'clock.",
        "C": "One two hundred.",
        "D": "One two o'clock"
      },
      "correct": "B"
    },
    {
      "num": 82,
      "text": "What is the meaning of the phrase Roger?",
      "options": {
        "A": "An error has been made in this transmission. The correct version is...",
        "B": "Permission for proposed action is granted",
        "C": "I understand your message and will comply with it",
        "D": "I have received all of your last transmission"
      },
      "correct": "D"
    },
    {
      "num": 83,
      "text": "What is the meaning of the phrase Correction?",
      "options": {
        "A": "I have received all of your last transmission",
        "B": "I understand your message and will comply with it",
        "C": "Permission for proposed action is granted",
        "D": "An error has been made in this transmission. The correct version is..."
      },
      "correct": "D"
    },
    {
      "num": 84,
      "text": "What is the meaning of the phrase Approved?",
      "options": {
        "A": "I understand your message and will comply with it",
        "B": "Permission for proposed action is granted",
        "C": "I have received all of your last transmission",
        "D": "An error has been made in this transmission. The correct version is..."
      },
      "correct": "B"
    },
    {
      "num": 85,
      "text": "What phrase is used by a pilot if a transmission is to be answered with yes?",
      "options": {
        "A": "Affirm",
        "B": "Yes",
        "C": "Affirmative",
        "D": "Roger"
      },
      "correct": "A"
    },
    {
      "num": 86,
      "text": "What phrase is used by a pilot if a transmission is to be answered with no?",
      "options": {
        "A": "Negative",
        "B": "No",
        "C": "Not",
        "D": "Finish"
      },
      "correct": "A"
    },
    {
      "num": 87,
      "text": "What is the correct way of acknowledging the instruction DZF after lift-off climb straight ahead until 2500 feet before turning right heading 220 degrees, wind 090 degrees, 5 knots, runway 12, cleared for take-off?",
      "options": {
        "A": "DZF after lift-off climb straight ahead 2500 feet, then turn right heading 220, 090 degrees, 5 knots",
        "B": "DZF after lift-off climb straight ahead 2500 feet, then turn right heading 220, 090 degrees, 5 knots, cleared for take-off",
        "C": "DZF after lift-off climb straight ahead 2500 feet, wilco, heading 220 degrees, 090 degrees, 5 knots, cleared for take-off",
        "D": "DZF after lift-off climb straight ahead 2500 feet, then turn right heading 220, runway 12, cleared for take-off"
      },
      "correct": "D"
    },
    {
      "num": 88,
      "text": "What is the correct way of acknowledging the instruction Next report PAH?",
      "options": {
        "A": "Positive",
        "B": "Wilco",
        "C": "Report PAH",
        "D": "Roger"
      },
      "correct": "B"
    },
    {
      "num": 89,
      "text": "What is the correct way of acknowledging the instruction Squawk 4321, Call Bremen Radar on 131.325?",
      "options": {
        "A": "Roger",
        "B": "Squawk 4321, 131.325",
        "C": "Squawk 4321, wilco",
        "D": "Wilco"
      },
      "correct": "B"
    },
    {
      "num": 90,
      "text": "What is the correct way of acknowledging You are now entering airspace Delta?",
      "options": {
        "A": "Roger",
        "B": "Airspace Delta",
        "C": "Wilco",
        "D": "Entering"
      },
      "correct": "A"
    },
    {
      "num": 91,
      "text": "What does a cloud coverage of FEW mean in a METAR weather report?",
      "options": {
        "A": "5 to 7 eighths",
        "B": "8 eighths",
        "C": "3 to 4 eighths",
        "D": "1 to 2 eighths"
      },
      "correct": "D"
    },
    {
      "num": 92,
      "text": "What does a cloud coverage of SCT mean in a METAR weather report?",
      "options": {
        "A": "5 to 7 eighths",
        "B": "8 eighths",
        "C": "3 to 4 eighths",
        "D": "1 to 2 eighths"
      },
      "correct": "C"
    },
    {
      "num": 93,
      "text": "What does a cloud coverage of BKN mean in a METAR weather report?",
      "options": {
        "A": "1 to 2 eighths",
        "B": "5 to 7 eighths",
        "C": "3 to 4 eighths",
        "D": "8 eighths"
      },
      "correct": "B"
    }
  ]
}