-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
6375 lines (6375 loc) · 260 KB
/
data.json
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
{
"exam_title": "General Class Question Pool [2019 - 2023]",
"exam_description": "2nd & Final Public Release with Errata - March 15, 2019",
"question_pool": [
{
"question_id": "G1A01",
"question_group": 1,
"question": "On which HF/MF bands is a General class license holder granted all amateur frequency privileges?",
"answers": {
"A": "60 meters, 20 meters, 17 meters, and 12 meters",
"B": "160 meters, 80 meters, 40 meters, and 10 meters",
"C": "160 meters, 60 meters, 30 meters, 17 meters, 12 meters, and 10 meters",
"D": "160 meters, 30 meters, 17 meters, 15 meters, 12 meters, and 10 meters"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A02",
"question_group": 1,
"question": "On which of the following bands is phone operation prohibited?",
"answers": {
"A": "160 meters",
"B": "30 meters",
"C": "17 meters",
"D": "12 meters"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A03",
"question_group": 1,
"question": "On which of the following bands is image transmission prohibited?",
"answers": {
"A": "160 meters",
"B": "30 meters",
"C": "20 meters",
"D": "12 meters"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A04",
"question_group": 1,
"question": "Which of the following amateur bands is restricted to communication only on specific channels, rather than frequency ranges?",
"answers": {
"A": "11 meters",
"B": "12 meters",
"C": "30 meters",
"D": "60 meters"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A05",
"question_group": 1,
"question": "Which of the following frequencies is in the General class portion of the 40-meter band in ITU Region 2?",
"answers": {
"A": "7.250 MHz",
"B": "7.500 MHz",
"C": "40.200 MHz",
"D": "40.500 MHz"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A06",
"question_group": 1,
"question": "Which of the following frequencies is within the General class portion of the 75-meter phone band?",
"answers": {
"A": "1875 kHz",
"B": "3750 kHz",
"C": "3900 kHz",
"D": "4005 kHz"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A07",
"question_group": 1,
"question": "Which of the following frequencies is within the General class portion of the 20-meter phone band?",
"answers": {
"A": "14005 kHz",
"B": "14105 kHz",
"C": "14305 kHz",
"D": "14405 kHz"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A08",
"question_group": 1,
"question": "Which of the following frequencies is within the General class portion of the 80-meter band?",
"answers": {
"A": "1855 kHz",
"B": "2560 kHz",
"C": "3560 kHz",
"D": "3650 kHz"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A09",
"question_group": 1,
"question": "Which of the following frequencies is within the General class portion of the 15-meter band?",
"answers": {
"A": "14250 kHz",
"B": "18155 kHz",
"C": "21300 kHz",
"D": "24900 kHz"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A10",
"question_group": 1,
"question": "Which of the following frequencies is available to a control operator holding a General class license?",
"answers": {
"A": "28.020 MHz",
"B": "28.350 MHz",
"C": "28.550 MHz",
"D": "All these choices are correct"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A11",
"question_group": 1,
"question": "When General class licensees are not permitted to use the entire voice portion of a band, which portion of the voice segment is generally available to them?",
"answers": {
"A": "The lower frequency end",
"B": "The upper frequency end",
"C": "The lower frequency end on frequencies below 7.3 MHz, and the upper end on frequencies above 14.150 MHz",
"D": "The upper frequency end on frequencies below 7.3 MHz, and the lower end on frequencies above 14.150 MHz"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A12",
"question_group": 1,
"question": "Which of the following applies when the FCC rules designate the Amateur Service as a secondary user on a band?",
"answers": {
"A": "Amateur stations must record the call sign of the primary service station before operating on a frequency assigned to that station",
"B": "Amateur stations can use the band only during emergencies",
"C": "Amateur stations can use the band only if they do not cause harmful interference to primary users",
"D": "Amateur stations may only operate during specific hours of the day, while primary users are permitted 24- hour use of the band"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A13",
"question_group": 1,
"question": "What is the appropriate action if, when operating on either the 30-meter or 60-meter bands, a station in the primary service interferes with your contact?",
"answers": {
"A": "Notify the FCCs regional Engineer in Charge of the interference",
"B": "Increase your transmitter\u2019s power to overcome the interference",
"C": "Attempt to contact the station and request that it stop the interference",
"D": "Move to a clear frequency or stop transmitting"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A14",
"question_group": 1,
"question": "Which of the following may apply in areas under FCC jurisdiction outside of ITU Region 2?",
"answers": {
"A": "Station identification may have to be in a language other than English",
"B": "Morse code may not be permitted",
"C": "Digital transmission may not be permitted",
"D": "Frequency allocations may differ"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1A15",
"question_group": 1,
"question": "What portion of the 10-meter band is available for repeater use?",
"answers": {
"A": "The entire band",
"B": "The portion between 28.1 MHz and 28.2 MHz",
"C": "The portion between 28.3 MHz and 28.5 MHz",
"D": "The portion above 29.5 MHz"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B01",
"question_group": 1,
"question": "What is the maximum height above ground to which an antenna structure may be erected without requiring notification to the FAA and registration with the FCC, provided it is not at or near a public use airport?",
"answers": {
"A": "50 feet",
"B": "100 feet",
"C": "200 feet",
"D": "300 feet"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B02",
"question_group": 1,
"question": "With which of the following conditions must beacon stations comply?",
"answers": {
"A": "A beacon station may not use automatic control",
"B": "The frequency must be coordinated with the National Beacon Organization",
"C": "The frequency must be posted on the internet or published in a national periodical",
"D": "There must be no more than one beacon signal transmitting in the same band from the same station location"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B03",
"question_group": 1,
"question": "Which of the following is a purpose of a beacon station as identified in the FCC rules?",
"answers": {
"A": "Observation of propagation and reception",
"B": "Automatic identification of repeaters",
"C": "Transmission of bulletins of general interest to Amateur Radio licensees",
"D": "Identifying net frequencies"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B04",
"question_group": 1,
"question": "Which of the following transmissions is permitted?",
"answers": {
"A": "Unidentified transmissions for test purposes only",
"B": "Retransmission of other amateur station signals by any amateur station",
"C": "Occasional retransmission of weather and propagation forecast information from U.S. government stations",
"D": "Coded messages of any kind, if not intended to facilitate a criminal act"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B05",
"question_group": 1,
"question": "Which of the following one-way transmissions are permitted?",
"answers": {
"A": "Unidentified test transmissions of less than one minute in duration",
"B": "Transmissions necessary to assist learning the International Morse code",
"C": "Regular transmissions offering equipment for sale, if intended for Amateur Radio use",
"D": "All these choices are correct"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B06",
"question_group": 1,
"question": "Under what conditions are state and local governments permitted to regulate Amateur Radio antenna structures?",
"answers": {
"A": "Under no circumstances, FCC rules take priority",
"B": "At any time and to any extent necessary to accomplish a legitimate purpose of the state or local entity, provided that proper filings are made with the FCC",
"C": "Only when such structures exceed 50 feet in height and are clearly visible 1000 feet from the structure",
"D": "Amateur Service communications must be reasonably accommodated, and regulations must constitute the minimum practical to accommodate a legitimate purpose of the state or local entity"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B07",
"question_group": 1,
"question": "What are the restrictions on the use of abbreviations or procedural signals in the Amateur Service?",
"answers": {
"A": "Only \u201cQ\u201d signals are permitted",
"B": "They may be used if they do not obscure the meaning of a message",
"C": "They are not permitted",
"D": "Only \u201c10 codes\u201d are permitted"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B08",
"question_group": 1,
"question": "When choosing a transmitting frequency, what should you do to comply with good amateur practice?",
"answers": {
"A": "Ensure that the frequency and mode selected are within your license class privileges",
"B": "Follow generally accepted band plans agreed to by the Amateur Radio community",
"C": "Monitor the frequency before transmitting",
"D": "All these choices are correct"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B09",
"question_group": 1,
"question": "On what HF frequencies are automatically controlled beacons permitted?",
"answers": {
"A": "On any frequency if power is less than 1 watt",
"B": "On any frequency if transmissions are in Morse code",
"C": "21.08 MHz to 21.09 MHz",
"D": "28.20 MHz to 28.30 MHz"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B10",
"question_group": 1,
"question": "What is the power limit for beacon stations?",
"answers": {
"A": "10 watts PEP output",
"B": "20 watts PEP output",
"C": "100 watts PEP output",
"D": "200 watts PEP output"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B11",
"question_group": 1,
"question": "Who or what determines \u201cgood engineering and good amateur practice,\u201d as applied to the operation of an amateur station in all respects not covered by the Part 97 rules?",
"answers": {
"A": "The FCC",
"B": "The control operator",
"C": "The IEEE",
"D": "The ITU"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1B12",
"question_group": 1,
"question": "When is it permissible to communicate with amateur stations in countries outside the areas administered by the Federal Communications Commission?",
"answers": {
"A": "Only when the foreign country has a formal third-party agreement filed with the FCC",
"B": "When the contact is with amateurs in any country except those whose administrations have notified the ITU that they object to such communications",
"C": "When the contact is with amateurs in any country as long as the communication is conducted in English",
"D": "Only when the foreign country is a member of the International Amateur Radio Union"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C01",
"question_group": 1,
"question": "What is the maximum transmitting power an amateur station may use on 10.140 MHz?",
"answers": {
"A": "200 watts PEP output",
"B": "1000 watts PEP output",
"C": "1500 watts PEP output",
"D": "2000 watts PEP output"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C02",
"question_group": 1,
"question": "What is the maximum transmitting power an amateur station may use on the 12-meter band?",
"answers": {
"A": "50 watts PEP output",
"B": "200 watts PEP output",
"C": "1500 watts PEP output",
"D": "An effective radiated power equivalent to 100 watts from a half-wave dipole"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C03",
"question_group": 1,
"question": "What is the maximum bandwidth permitted by FCC rules for Amateur Radio stations transmitting on USB frequencies in the 60-meter band?",
"answers": {
"A": "2.8 kHz",
"B": "5.6 kHz",
"C": "1.8 kHz",
"D": "3 kHz"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C04",
"question_group": 1,
"question": "Which of the following limitations apply to transmitter power on every amateur band?",
"answers": {
"A": "Only the minimum power necessary to carry out the desired communications should be used",
"B": "Power must be limited to 200 watts when using data transmissions",
"C": "Power should be limited as necessary to avoid interference to another radio service on the frequency",
"D": "Effective radiated power cannot exceed 1500 watts"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C05",
"question_group": 1,
"question": "What is the limit for transmitter power on the 28 MHz band for a General Class control operator?",
"answers": {
"A": "100 watts PEP output",
"B": "1000 watts PEP output",
"C": "1500 watts PEP output",
"D": "2000 watts PEP output"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C06",
"question_group": 1,
"question": "What is the limit for transmitter power on the 1.8 MHz band?",
"answers": {
"A": "200 watts PEP output",
"B": "1000 watts PEP output",
"C": "1200 watts PEP output",
"D": "1500 watts PEP output"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C07",
"question_group": 1,
"question": "What is the maximum symbol rate permitted for RTTY or data emission transmission on the 20-meter band?",
"answers": {
"A": "56 kilobaud",
"B": "19.6 kilobaud",
"C": "1200 baud",
"D": "300 baud"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C08",
"question_group": 1,
"question": "What is the maximum symbol rate permitted for RTTY or data emission transmitted at frequencies below 28 MHz?",
"answers": {
"A": "56 kilobaud",
"B": "19.6 kilobaud",
"C": "1200 baud",
"D": "300 baud"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C09",
"question_group": 1,
"question": "What is the maximum symbol rate permitted for RTTY or data emission transmitted on the 1.25-meter and 70- centimeter bands?",
"answers": {
"A": "56 kilobaud",
"B": "19.6 kilobaud",
"C": "1200 baud",
"D": "300 baud"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C10",
"question_group": 1,
"question": "What is the maximum symbol rate permitted for RTTY or data emission transmissions on the 10-meter band?",
"answers": {
"A": "56 kilobaud",
"B": "19.6 kilobaud",
"C": "1200 baud",
"D": "300 baud"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C11",
"question_group": 1,
"question": "What is the maximum symbol rate permitted for RTTY or data emission transmissions on the 2-meter band?",
"answers": {
"A": "56 kilobaud",
"B": "19.6 kilobaud",
"C": "1200 baud",
"D": "300 baud"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C12",
"question_group": 1,
"question": "Which of the following is required by the FCC rules when operating in the 60-meter band?",
"answers": {
"A": "If you are using an antenna other than a dipole, you must keep a record of the gain of your antenna",
"B": "You must keep a record of the date, time, frequency, power level, and stations worked",
"C": "You must keep a record of all third-party traffic",
"D": "You must keep a record of the manufacturer of your equipment and the antenna used"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C13",
"question_group": 1,
"question": "What must be done before using a new digital protocol on the air?",
"answers": {
"A": "Type-certify equipment to FCC standards",
"B": "Obtain an experimental license from the FCC",
"C": "Publicly document the technical characteristics of the protocol",
"D": "Submit a rule-making proposal to the FCC describing the codes and methods of the technique"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C14",
"question_group": 1,
"question": "What is the maximum power limit on the 60-meter band?",
"answers": {
"A": "1500 watts PEP",
"B": "10 watts RMS",
"C": "ERP of 100 watts PEP with respect to a dipole",
"D": "ERP of 100 watts PEP with respect to an isotropic antenna"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1C15",
"question_group": 1,
"question": "What measurement is specified by FCC rules that regulate maximum power output?",
"answers": {
"A": "RMS",
"B": "Average",
"C": "Forward",
"D": "PEP"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D01",
"question_group": 1,
"question": "Who may receive partial credit for the elements represented by an expired Amateur Radio license?",
"answers": {
"A": "Any person who can demonstrate that they once held an FCC-issued General, Advanced, or Amateur Extra class license that was not revoked by the FCC",
"B": "Anyone who held an FCC-issued Amateur Radio license that has been expired for not less than 5 years and not more than 15 years",
"C": "Any person who previously held an amateur license issued by another country, but only if that country has a current reciprocal licensing agreement with the FCC",
"D": "Only persons who once held an FCC issued Novice, Technician, or Technician Plus license"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D02",
"question_group": 1,
"question": "What license examinations may you administer when you are an accredited VE holding a General class operator license?",
"answers": {
"A": "General and Technician",
"B": "General only",
"C": "Technician only",
"D": "Amateur Extra, General, and Technician"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D03",
"question_group": 1,
"question": "On which of the following band segments may you operate if you are a Technician class operator and have a Certificate of Successful Completion of Examination (CSCE) for General class privileges?",
"answers": {
"A": "Only the Technician band segments until your upgrade is posted in the FCC database",
"B": "Only on the Technician band segments until your license arrives in the mail",
"C": "On any General or Technician class band segment",
"D": "On any General or Technician class band segment except 30 meters and 60 meters"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D04",
"question_group": 1,
"question": "Which of the following is a requirement for administering a Technician class license examination?",
"answers": {
"A": "At least three General class or higher VEs must observe the examination",
"B": "At least two General class or higher VEs must be present",
"C": "At least two General class or higher VEs must be present, but only one need be Amateur Extra class",
"D": "At least three VEs of Technician class or higher must observe the examination"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D05",
"question_group": 1,
"question": "Which of the following must a person have before they can be an administering VE for a Technician class license examination?",
"answers": {
"A": "Notification to the FCC that you want to give an examination",
"B": "Receipt of a Certificate of Successful Completion of Examination (CSCE) for General class",
"C": "Possession of a properly obtained telegraphy license",
"D": "An FCC General class or higher license and VEC accreditation"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D06",
"question_group": 1,
"question": "When must you add the special identifier \"AG\" after your call sign if you are a Technician class licensee and have a Certificate of Successful Completion of Examination (CSCE) for General class operator privileges, but the FCC has not yet posted your upgrade on its website?",
"answers": {
"A": "Whenever you operate using General class frequency privileges",
"B": "Whenever you operate on any amateur frequency",
"C": "Whenever you operate using Technician frequency privileges",
"D": "A special identifier is not required if your General class license application has been filed with the FCC"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D07",
"question_group": 1,
"question": "Volunteer Examiners are accredited by what organization?",
"answers": {
"A": "The Federal Communications Commission",
"B": "The Universal Licensing System",
"C": "A Volunteer Examiner Coordinator",
"D": "The Wireless Telecommunications Bureau"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D08",
"question_group": 1,
"question": "Which of the following criteria must be met for a non-U.S. citizen to be an accredited Volunteer Examiner?",
"answers": {
"A": "The person must be a resident of the U.S. for a minimum of 5 years",
"B": "The person must hold an FCC granted Amateur Radio license of General class or above",
"C": "The person\u2019s home citizenship must be in ITU region 2",
"D": "None of these choices is correct; a non-U.S. citizen cannot be a Volunteer Examiner"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D09",
"question_group": 1,
"question": "How long is a Certificate of Successful Completion of Examination (CSCE) valid for exam element credit?",
"answers": {
"A": "30 days",
"B": "180 days",
"C": "365 days",
"D": "For as long as your current license is valid"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D10",
"question_group": 1,
"question": "What is the minimum age that one must be to qualify as an accredited Volunteer Examiner?",
"answers": {
"A": "12 years",
"B": "18 years",
"C": "21 years",
"D": "There is no age limit"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1D11",
"question_group": 1,
"question": "What is required to obtain a new General Class license after a previously-held license has expired and the two- year grace period has passed?",
"answers": {
"A": "They must have a letter from the FCC showing they once held an amateur or commercial license",
"B": "There are no requirements other than being able to show a copy of the expired license",
"C": "The applicant must be able to produce a copy of a page from a call book published in the U.S. showing his or her name and address",
"D": "The applicant must pass the current Element 2 exam"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E01",
"question_group": 1,
"question": "Which of the following would disqualify a third party from participating in stating a message over an amateur station?",
"answers": {
"A": "The third party\u2019s amateur license has been revoked and not reinstated",
"B": "The third party is not a U.S. citizen",
"C": "The third party is a licensed amateur",
"D": "The third party is speaking in a language other than English"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E02",
"question_group": 1,
"question": "When may a 10-meter repeater retransmit the 2-meter signal from a station that has a Technician class control operator?",
"answers": {
"A": "Under no circumstances",
"B": "Only if the station on 10-meters is operating under a Special Temporary Authorization allowing such retransmission",
"C": "Only during an FCC-declared general state of communications emergency",
"D": "Only if the 10-meter repeater control operator holds at least a General class license"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E03",
"question_group": 1,
"question": "What is required to conduct communications with a digital station operating under automatic control outside the automatic control band segments?",
"answers": {
"A": "The station initiating the contact must be under local or remote control",
"B": "The interrogating transmission must be made by another automatically controlled station",
"C": "No third-party traffic may be transmitted",
"D": "The control operator of the interrogating station must hold an Amateur Extra Class license"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E04",
"question_group": 1,
"question": "Which of the following conditions require a licensed Amateur Radio operator to take specific steps to avoid harmful interference to other users or facilities?",
"answers": {
"A": "When operating within one mile of an FCC Monitoring Station",
"B": "When using a band where the Amateur Service is secondary",
"C": "When a station is transmitting spread spectrum emissions",
"D": "All these choices are correct"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E05",
"question_group": 1,
"question": "What types of messages for a third party in another country may be transmitted by an amateur station?",
"answers": {
"A": "Any message, as long as the amateur operator is not paid",
"B": "Only messages for other licensed amateurs",
"C": "Only messages relating to Amateur Radio or remarks of a personal character, or messages relating to emergencies or disaster relief",
"D": "Any messages, as long as the text of the message is recorded in the station log"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E06",
"question_group": 1,
"question": "The frequency allocations of which ITU region apply to radio amateurs operating in North and South America?",
"answers": {
"A": "Region 4",
"B": "Region 3",
"C": "Region 2",
"D": "Region 1"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E07",
"question_group": 1,
"question": "In what part of the 13-centimeter band may an amateur station communicate with non-licensed Wi-Fi stations?",
"answers": {
"A": "Anywhere in the band",
"B": "Channels 1 through 4",
"C": "Channels 42 through 45",
"D": "No part"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E08",
"question_group": 1,
"question": "What is the maximum PEP output allowed for spread spectrum transmissions?",
"answers": {
"A": "100 milliwatts",
"B": "10 watts",
"C": "100 watts",
"D": "1500 watts"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E09",
"question_group": 1,
"question": "Under what circumstances are messages that are sent via digital modes exempt from Part 97 third-party rules that apply to other modes of communication?",
"answers": {
"A": "Under no circumstances",
"B": "When messages are encrypted",
"C": "When messages are not encrypted",
"D": "When under automatic control"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E10",
"question_group": 1,
"question": "Why should an amateur operator normally avoid transmitting on 14.100, 18.110, 21.150, 24. 930 and 28.200 MHz?",
"answers": {
"A": "A system of propagation beacon stations operates on those frequencies",
"B": "A system of automatic digital stations operates on those frequencies",
"C": "These frequencies are set aside for emergency operations",
"D": "These frequencies are set aside for bulletins from the FCC"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G1E11",
"question_group": 1,
"question": "On what bands may automatically controlled stations transmitting RTTY or data emissions communicate with other automatically controlled digital station?",
"answers": {
"A": "On any band segment where digital operation is permitted",
"B": "Anywhere in the non-phone segments of the 10-meter or shorter wavelength bands",
"C": "Only in the non-phone Extra Class segments of the bands",
"D": "Anywhere in the 6-meter or shorter wavelength bands, and in limited segments of some of the HF bands"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A01",
"question_group": 2,
"question": "Which sideband is most commonly used for voice communications on frequencies of 14 MHz or higher?",
"answers": {
"A": "Upper sideband",
"B": "Lower sideband",
"C": "Vestigial sideband",
"D": "Double sideband"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A02",
"question_group": 2,
"question": "Which of the following modes is most commonly used for voice communications on the 160-meter, 75-meter, and 40-meter bands?",
"answers": {
"A": "Upper sideband",
"B": "Lower sideband",
"C": "Vestigial sideband",
"D": "Double sideband"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A03",
"question_group": 2,
"question": "Which of the following is most commonly used for SSB voice communications in the VHF and UHF bands?",
"answers": {
"A": "Upper sideband",
"B": "Lower sideband",
"C": "Vestigial sideband",
"D": "Double sideband"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A04",
"question_group": 2,
"question": "Which mode is most commonly used for voice communications on the 17-meter and 12-meter bands?",
"answers": {
"A": "Upper sideband",
"B": "Lower sideband",
"C": "Vestigial sideband",
"D": "Double sideband"
},
"right_answer": "A",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A05",
"question_group": 2,
"question": "Which mode of voice communication is most commonly used on the HF amateur bands?",
"answers": {
"A": "Frequency modulation",
"B": "Double sideband",
"C": "Single sideband",
"D": "Phase modulation"
},
"right_answer": "C",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A06",
"question_group": 2,
"question": "Which of the following is an advantage when using single sideband, as compared to other analog voice modes on the HF amateur bands?",
"answers": {
"A": "Very high fidelity voice modulation",
"B": "Less subject to interference from atmospheric static crashes",
"C": "Ease of tuning on receive and immunity to impulse noise",
"D": "Less bandwidth used and greater power efficiency"
},
"right_answer": "D",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A07",
"question_group": 2,
"question": "Which of the following statements is true of the single sideband voice mode?",
"answers": {
"A": "Only one sideband and the carrier are transmitted; the other sideband is suppressed",
"B": "Only one sideband is transmitted; the other sideband and carrier are suppressed",
"C": "SSB is the only voice mode that is authorized on the 20-meter, 15-meter, and 10-meter amateur bands",
"D": "SSB is the only voice mode that is authorized on the 160-meter, 75-meter, and 40-meter amateur bands"
},
"right_answer": "B",
"cr_attempts": 0,
"in_attempts": 0
},
{
"question_id": "G2A08",