-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.json
More file actions
3250 lines (3249 loc) · 148 KB
/
Copy pathquestions.json
File metadata and controls
3250 lines (3249 loc) · 148 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"question": "Which of the answers listed below refers to a Linux and macOS network administration command-line utility used for DNS queries?",
"options": [
"route",
"echo",
"dig",
"ethtool"
],
"answer": "dig"
},
{
"question": "Which netstat parameter allows displaying all active TCP connections and the TCP/UDP ports on which the computer is listening?",
"options": [
"-a",
"-p",
"-e",
"-r"
],
"answer": "-a",
"explanation": "-a: all connections and listening ports | -p: process ID | -e: extended info, timers and users | -r: routing table | -t: only TCP | -u: only UDP | -l: only listening "
},
{
"question": "Which of the following netstat parameters allows displaying the names of applications and executable file components that are accessing the network?",
"options": [
"-a",
"-n",
"-b",
"-p"
],
"answer": "-b"
},
{
"question": "What is the name of a Windows command-line utility that can be used to display TCP/IP configuration settings?",
"options": [
"ifconfig",
"iwconfig",
"ipconfig",
"iptables"
],
"answer": "ipconfig"
},
{
"question": "Which of the answers listed below refers to an ipconfig command parameter used for displaying the full TCP/IP configuration information for all adapters?",
"options": [
"-a",
"/?",
"/all",
"/list"
],
"answer": "/all"
},
{
"question": "Which ipconfig parameter allows displaying detailed information about the computer's network configuration?",
"options": [
"-a",
"/all",
"/a",
"-ano"
],
"answer": "/all"
},
{
"question": "Which of the following command-line commands in MS Windows are used for resetting the DHCP configuration settings for all adapters? (Select 2 answers)",
"options": [
"ipconfig /down",
"ipconfig /release",
"ipconfig /up",
"ipconfig /renew",
"ifconfig /release",
"ifconfig /renew"
],
"answer": [
"ipconfig /release",
"ipconfig /renew"
]
},
{
"question": "What is the name of a Linux command-line utility that can be used to display TCP/IP configuration settings?",
"options": [
"ethtool",
"ifconfig",
"netstat",
"ipconfig"
],
"answer": "ifconfig"
},
{
"question": "The ip command in Linux is the preferred replacement for:",
"options": [
"ping",
"ifconfig",
"dig",
"ipconfig"
],
"answer": "ifconfig"
},
{
"question": "The arp command can be used to perform what kind of resolution?",
"options": [
"IP to FQDN",
"MAC to IP",
"IP to MAC",
"FQDN to IP"
],
"answer": "IP to MAC"
},
{
"question": "Which command in MS Windows displays a table consisting of IP addresses and their resolved physical addresses?",
"options": [
"tracert -d",
"arp -a",
"netstat -n",
"route print"
],
"answer": "arp -a"
},
{
"question": "Which of the CLI tools listed below is used for discovering hosts and services on a computer network?",
"options": [
"Nmap",
"tcpdump",
"netcat",
"Zenmap"
],
"answer": "Nmap"
},
{
"question": "Which of the following answers refers to a vendor-neutral protocol used for network devices to advertise their identity, capabilities, and neighbors on a LAN?",
"options": [
"LACP",
"Syslog",
"LLDP",
"SNMP"
],
"answer": "LLDP"
},
{
"question": "Which of the answers listed below refers to a Cisco-proprietary network protocol used by Cisco devices to share information about directly connected devices, such as device identity, capabilities, and IP address information?",
"options": [
"LLDP",
"NDP",
"CDP",
"LACP"
],
"answer": "CDP"
},
{
"question": "Which network discovery protocol would be the most suitable for multi-vendor networking environments?",
"options": [
"LLDP",
"SNMP",
"NDP",
"OSPF"
],
"answer": "LLDP"
},
{
"question": "A speed tester is a software tool used to measure the performance of a network connection, particularly in terms of bandwidth (upload and download speeds) and latency. It is crucial for diagnosing network issues such as:",
"options": [
"Slow internet speeds",
"Inconsistent performance",
"Verifying speeds provided by the ISP",
"All of the above"
],
"answer": "All of the above"
},
{
"question": "Which hardware tool allows to trace and identify individual wires within a bundle?",
"options": [
"Cable certifier",
"Line tester",
"Toner & probe kit",
"Wire mapper"
],
"answer": "Toner & probe kit"
},
{
"question": "Which of the following answers refers to a hardware tool designed to verify the integrity and connectivity of network cables?",
"options": [
"Cable tester",
"Toner & probe kit",
"Signal tracer",
"Bandwidth tester"
],
"answer": "Cable tester"
},
{
"question": "Which device enables network traffic monitoring without interrupting the data flow?",
"options": [
"Transceiver",
"Repeater",
"Ethernet adapter",
"Network tap"
],
"answer": "Network tap"
},
{
"question": "A Wi-Fi analyzer is not designed for:",
"options": [
"Measuring the strength of the Wi-Fi signal",
"Detecting interference from other devices or networks",
"Analyzing wireless channel usage",
"Capturing and inspecting network traffic data"
],
"answer": "Capturing and inspecting network traffic data"
},
{
"question": "Which of the answers listed below refers to a hardware tool designed to locate faults in copper cabling?",
"options": [
"Multimeter",
"Visual fault locator",
"Loopback plug",
"None of the above"
],
"answer": "None of the above"
},
{
"question": "Which of the following commands displays the MAC address table of a switch or router, showing which MAC addresses are associated with which ports?",
"options": [
"ip link show",
"arp -a",
"show mac-address-table",
"getmac"
],
"answer": "show mac-address-table"
},
{
"question": "Which command on a router or a Layer 3 switch device displays the routing table of the device?",
"options": [
"list route",
"route print",
"show route",
"print route"
],
"answer": "show route"
},
{
"question": "The show interface command displays the current configuration of a device, including interface settings, routing protocols, VLAN configurations, and other device settings. This command is used to review the device\u2019s configuration and verify that it is set up correctly.",
"options": [
"True",
"False"
],
"answer": "False"
},
{
"question": "The show config command provides detailed information about the status and performance of network interfaces on a device. This includes interface status (up or down), IP address, bandwidth usage, errors, and other statistics such as packet loss or collisions. It helps diagnose interface issues, such as connectivity problems or high error rates.",
"options": [
"True",
"False"
],
"answer": "False"
},
{
"question": "Which command on a router or switch would be used to display the mapping between IP addresses and MAC addresses?",
"options": [
"show interface",
"show config",
"show arp",
"show mac-address-table"
],
"answer": "show arp"
},
{
"question": "The show vlan command displays information about the VLANs configured on a switch, including VLAN IDs, names, and the ports associated with each VLAN. It helps troubleshoot VLAN configurations and verify which ports belong to which VLANs.",
"options": [
"True",
"False"
],
"answer": "True"
},
{
"question": "Which of the commands listed below would be useful for diagnosing and troubleshooting issues on devices with PoE capabilities?",
"options": [
"show voltage",
"show power",
"show wattage",
"show load"
],
"answer": "show power"
},
{
"question": "Which of the answers listed below does not refer to a common metric used by routing protocols to determine the optimal path for traffic?",
"options": [
"Load",
"Bandwidth",
"Delay",
"Administrative distance",
"Hop count",
"Cost"
],
"answer": "Administrative distance"
},
{
"question": "The term \"Default route\" refers to a network path used by a router as a \"last resort\" for forwarding packets with destination addresses not listed in its routing table. When no other specific route matches, the router uses the default route to send the packet to a predetermined next-hop address, typically a gateway or another router, which can handle traffic to unknown destinations. The default route is often represented as 0.0.0.0/0 in IPv4 or ::/0 in IPv6.",
"options": [
"True",
"False"
],
"answer": "True"
},
{
"question": "Which of the following mechanisms can be used to mitigate routing loops?",
"options": [
"Maximum hop count",
"TTL",
"Route poisoning",
"Split Horizon",
"Hold-down timer",
"All of the above"
],
"answer": "All of the above"
},
{
"question": "A network administrator discovers that employees cannot connect to the corporate network because the DHCP server is unable to assign IP addresses to new devices. Which of the actions listed below could help resolve this issue? (Select all that apply)",
"options": [
"Reduce the DHCP lease time",
"Increase the size of the DHCP address pool",
"Extend the lease time for DHCP addresses to reduce address renewals",
"Implement IPAM to monitor and manage IP address usage",
"Disable DHCP relay agents"
],
"answer": [
"Reduce the DHCP lease time",
"Increase the size of the DHCP address pool",
"Implement IPAM to monitor and manage IP address usage"
]
},
{
"question": "Which of the following is a symptom of an exhausted DHCP scope?",
"options": [
"APIPA address",
"IP address reservation error",
"Network congestion",
"DHCP server timeout"
],
"answer": "APIPA address"
},
{
"question": "A network technician is troubleshooting a device that is unable to access websites, but it can communicate with other devices within the same local network. The device has the following IP configuration: IP address: 192.168.1.10, subnet mask: 255.255.255.0, default gateway: 192.168.2.1, and DNS server: 8.8.8.8. Based on this configuration, which of the following is the most probable cause of the issue?",
"options": [
"Misconfigured DHCP server",
"Incorrect subnet mask",
"Firewall blocking external traffic",
"Incorrect default gateway"
],
"answer": "Incorrect default gateway"
},
{
"question": "Duplicate IP addresses on a network can occur due to: (Select 2 answers)",
"options": [
"DNS caching errors",
"Incorrect static IP assignments",
"Routing table corruption",
"Subnet mask mismatch",
"Rogue DHCP servers"
],
"answer": [
"Incorrect static IP assignments",
"Rogue DHCP servers"
]
},
{
"question": "A network technician is troubleshooting connectivity issues on a small office network where one of the devices is unable to communicate with other devices on the same network. The device has the following IP configuration: IP address: 192.168.1.100, subnet mask: 255.255.0.0, default gateway: 192.168.1.1, and DNS server: 8.8.8.8. Other devices on the network with similar IP configurations are able to communicate without issues. Based on this information, what is the most likely cause of this problem?",
"options": [
"Incorrect default gateway",
"Incorrect subnet mask",
"IP address out of range",
"Incorrect VLAN assignment"
],
"answer": "Incorrect subnet mask"
},
{
"question": "Which of the solutions listed below would be of help in managing network congestion?",
"options": [
"Implementing QoS",
"Increasing bandwidth",
"Implementing traffic shaping or load balancing",
"All of the above"
],
"answer": "All of the above"
},
{
"question": "Which of the following directly addresses the root cause of bottlenecking?",
"options": [
"Routing path optimization",
"Hardware or software upgrades",
"Network diagnostics",
"Bandwidth usage monitoring"
],
"answer": "Hardware or software upgrades"
},
{
"question": "Which solution would be the most effective in troubleshooting bandwidth or throughput capacity problems?",
"options": [
"Enabling QoS for all traffic",
"Upgrading network infrastructure",
"Implementing CDNs",
"Reducing the usage of bandwidth-intensive applications"
],
"answer": "Upgrading network infrastructure"
},
{
"question": "Users in Europe are experiencing high latency when accessing content hosted on a server in the United States. The latency is causing slow loading times and a poor user experience. Which solution would most effectively reduce latency for these users?",
"options": [
"VPN",
"SDN",
"QoS",
"CDN"
],
"answer": "CDN"
},
{
"question": "Which of the answers listed below refer(s) to (a) CLI tool(s) designed for packet loss detection? (Select all that apply)",
"options": [
"nslookup",
"ping",
"tracert",
"netstat",
"traceroute"
],
"answer": [
"ping",
"tracert",
"traceroute"
]
},
{
"question": "During VoIP calls, users report audio quality issues, including delays in hearing responses (latency) and choppy sound (jitter), resulting in poor call quality. These issues persist even when the network connection appears stable. Which of the following solutions would most effectively address these problems?",
"options": [
"Enabling data compression",
"Disabling encryption on VoIP traffic",
"Implementing QoS",
"Restarting the VoIP application"
],
"answer": "Implementing QoS"
},
{
"question": "Which of the following would not help resolve the problem of channel overlapping in a Wi-Fi network?",
"options": [
"Use a Wi-Fi analyzer to identify less congested channels",
"Reconfigure APs to use non-overlapping channels (e.g., 1, 6, or 11 in the 2.4 GHz band)",
"Consider switching to a higher-frequency band for less interference",
"All of the above are valid steps in troubleshooting channel overlapping issues"
],
"answer": "All of the above are valid steps in troubleshooting channel overlapping issues"
},
{
"question": "Which of the actions listed below would not help in troubleshooting wireless signal degradation or loss?",
"options": [
"Ensure devices are within the effective range of the Wi-Fi signal",
"Check for physical obstructions (e.g., walls, furniture) and reposition APs",
"Adjust the antennas on the AP for optimal signal coverage",
"Upgrade to higher-gain antennas or use signal boosters",
"Check for interference from electronic devices (e.g., microwaves, cordless phones)",
"Switch to a lower-frequency band to avoid signal degradation",
"Consider using Wi-Fi extenders or mesh networks to improve coverage",
"All of the above are valid steps in troubleshooting wireless signal degradation or loss"
],
"answer": "Switch to a lower-frequency band to avoid signal degradation"
},
{
"question": "Which of the following tools would be used for identifying wireless signal coverage issues? (Select all that apply)",
"options": [
"Signal booster",
"Network heatmap",
"Higher gain antenna",
"Wi-Fi analyzer",
"AP power level controls",
"Wireless repeater",
"Additional AP"
],
"answer": [
"Network heatmap",
"Wi-Fi analyzer"
]
},
{
"question": "Which of the answers listed below refers to an example solution for the wireless client disassociation problem?",
"options": [
"Reducing the frequency of beacon frames sent by the AP",
"Implementing security features that prevent deauthentication attacks",
"Setting up a guest Wi-Fi network with a separate SSID",
"Limiting the maximum number of connected devices"
],
"answer": "Implementing security features that prevent deauthentication attacks"
},
{
"question": "Which of the following answers describe correct steps for resolving wireless roaming misconfigurations? (Select 3 answers)",
"options": [
"Ensure all APs in the network broadcast the same SSID",
"Configure all APs to use unique passphrases",
"Adjust AP locations to provide adequate signal overlap",
"Ensure all APs in the network broadcast different SSIDs",
"Confirm that all APs use identical encryption protocols and passphrases",
"Adjust AP locations to provide minimal or no signal overlap"
],
"answer": [
"Ensure all APs in the network broadcast the same SSID",
"Adjust AP locations to provide adequate signal overlap",
"Confirm that all APs use identical encryption protocols and passphrases"
]
},
{
"question": "What is the main function of a protocol analyzer?",
"options": [
"Controlling access to network services",
"Monitoring user activity on websites",
"Capturing and inspecting data",
"Filtering network traffic based on content"
],
"answer": "Capturing and inspecting data"
},
{
"question": "A command-line utility used for checking the reachability of a remote network host is called:",
"options": [
"ping",
"tracert",
"dig",
"netstat"
],
"answer": "ping"
},
{
"question": "A Linux command-line utility for displaying intermediary points (routers) the IPv4 packet is passed through on its way to another network node is known as:",
"options": [
"nbtstat",
"traceroute",
"netstat",
"tracert"
],
"answer": "traceroute"
},
{
"question": "A network command-line utility in MS Windows that tracks and displays the route taken by IPv4 packets on their way to another host is called:",
"options": [
"ping",
"traceroute",
"nslookup",
"tracertz"
],
"answer": "tracertz"
},
{
"question": "Which of the command-line tools listed below can be used for troubleshooting DNS-related problems on MS Windows?",
"options": [
"nslookup",
"dig",
"nscd",
"dnsutils"
],
"answer": "nslookup"
},
{
"question": "Which of the following answers refers to a command-line packet capturing utility?",
"options": [
"netcat",
"tcpreplay",
"nmap",
"tcpdump"
],
"answer": "tcpdump"
},
{
"question": "Each PoE device connected to a switch consumes a certain amount of power. A power budget represents the maximum electrical power a PoE switch can supply to its connected devices. The total power consumption of all connected devices must not surpass the switch's power budget.",
"options": [
"True",
"False"
],
"answer": "True"
},
{
"question": "Which troubleshooting step would not be helpful in resolving the issue of the total power consumption of connected PoE devices exceeding the available power budget of a PoE switch?",
"options": [
"Checking the total power budget of the PoE switch and the power requirements of all connected devices",
"Using a multimeter to measure and verify the power consumption of individual devices",
"Disconnecting non-essential PoE devices to reduce the load on the power budget",
"Upgrading to a PoE switch with a higher power budget or adding an external PoE injector if necessary",
"Ensuring the switch's firmware is up to date, as it can improve power consumption metrics in some cases"
],
"answer": "Using a multimeter to measure and verify the power consumption of individual devices"
},
{
"question": "Which tool would be used to verify compatibility between the PoE standard supported by the PoE switch and the connected PoE devices?",
"options": [
"PoE tester",
"Cable certifier",
"Power meter",
"Voltage tester"
],
"answer": "PoE tester"
},
{
"question": "A network technician is troubleshooting a newly installed 40 Gbps fiber link between two switches. Despite verifying that the cable is correctly connected, the interfaces are enabled, and the cable length is within the supported range, the link remains down. Upon inspection, it is discovered that one end of the link uses an SFP module, while the other end uses a QSFP module. What is the most probable cause of the issue?",
"options": [
"Transceiver mismatch",
"Network congestion causing link failure",
"Interface duplex mismatch",
"Faulty SFP/QSFP module"
],
"answer": "Transceiver mismatch"
},
{
"question": "Which of the answers listed below refers to a tool used for troubleshooting signal strength issues in fiber-optic network links?",
"options": [
"Wire map tester",
"Signal tracer",
"Optical power meter",
"Spectrum analyzer"
],
"answer": "Optical power meter"
},
{
"question": "Which troubleshooting tool would be used to test and verify signal quality for a copper-based Ethernet network link?",
"options": [
"Network tap",
"Cable tester",
"Multimeter",
"Tone generator"
],
"answer": "Cable tester"
},
{
"question": "Which of the following would be of help in troubleshooting wireless signal strength issues?",
"options": [
"Wireless site survey",
"AP power level controls",
"Wi-Fi analyzer",
"Network heatmap generator",
"All of the above"
],
"answer": "All of the above"
},
{
"question": "A condition in which multiple active paths between switches are causing packets to circulate endlessly is called a:",
"options": [
"Routing loop",
"Broadcast storm",
"Network loop",
"Flooding attack"
],
"answer": "Network loop",
"explanation": "Routing Loop: layer 3 router problem | Network Loop: aka a Switching Loop, layer 2 | Broadcast Storm: what happens when switching loop happens"
},
{
"question": "Which of the protocols listed below provide protection against broadcast storms and switching loops? (Select 2 answers)",
"options": [
"SRTP",
"BPDU",
"STP",
"LLDP",
"RSTP"
],
"answer": [
"STP",
"RSTP"
]
},
{
"question": "Which of the following answers does not describe the role of a root bridge?",
"options": [
"Ensures there is only one active path between any two devices",
"Helps prevent network loops",
"Decides the optimal paths for data to travel",
"Serves as the reference point for all other switches in the network",
"Balances the network load between other switching devices"
],
"answer": "Balances the network load between other switching devices"
},
{
"question": "A bridge ID is a unique identifier (a combination of a switch's priority value and its MAC address) used to determine the root bridge in a network. Based on its bridge ID, which of the devices listed below would be selected as the root bridge?",
"options": [
"Switch A: 40960-00:0A:95:9D:68:16",
"Switch B: 32768-00:0A:95:9D:68:17",
"Switch C: 40960-00:0A:95:9D:68:18",
"Switch D: 32768-00:0A:95:9D:68:19"
],
"answer": "Switch B: 32768-00:0A:95:9D:68:17"
},
{
"question": "The port on a non-root bridge switch with the best path cost to the root bridge is referred to as:",
"options": [
"Designated port",
"Root port",
"Default port",
"Forwarding port"
],
"answer": "Root port"
},
{
"question": "Which of the following answers refers to a switch port that has the lowest path cost to the root bridge on a particular network segment?",
"options": [
"Default port",
"Priority port",
"Designated port",
"Active port"
],
"answer": "Designated port"
},
{
"question": "Which of the answers listed below refers to a switch port that does not forward traffic to prevent loops?",
"options": [
"Blocked port",
"Disabled port",
"Suspended port",
"Isolated port"
],
"answer": "Blocked port"
},
{
"question": "Which of the following answers refers to a switch port that has been manually shut down and does not forward any type of traffic?",
"options": [
"Suspended port",
"Disabled port",
"Blocked port",
"Non-active port"
],
"answer": "Disabled port"
},
{
"question": "Inactive switch ports that are not part of the best path are said to be in:",
"options": [
"Standby state",
"Idle state",
"Listening state",
"Blocking state"
],
"answer": "Blocking state"
},
{
"question": "Which of the answers listed below describes a switch port in the blocking state?",
"options": [
"Prepares to forward traffic and listens for BPDU messages, but does not forward frames",
"Learns MAC addresses to populate the MAC table, but does not forward frames",
"Forwards traffic and updates the MAC table, actively participating in network communication",
"Does not forward traffic and only listens to BPDU messages to prevent loops"
],
"answer": "Does not forward traffic and only listens to BPDU messages to prevent loops"
},
{
"question": "Which of the following answers refers to a switch port in the listening state?",
"options": [
"Does not forward traffic and only listens to BPDU messages to prevent loops",
"Forwards traffic and updates the MAC table, actively participating in network communication",
"Prepares to forward traffic and listens for BPDU messages, but does not forward frames yet",
"Learns MAC addresses to populate the MAC table, but does not forward frames yet"
],
"answer": "Prepares to forward traffic and listens for BPDU messages, but does not forward frames yet"
},
{
"question": "A switch port gathering information about the devices on the network to build its physical address table is said to be in:",
"options": [
"Learning state",
"Discovery state",
"Listening state",
"Querying state"
],
"answer": "Learning state"
},
{
"question": "A network technician is called to resolve a connectivity issue between two devices on the same switch. Despite both devices being powered on and properly connected, they cannot communicate with each other. The technician checks the switch and finds all ports are operational and configured as access ports. What could be the most likely cause of this issue?",
"options": [
"Malfunctioning switch port",
"Incorrect VLAN assignment",
"Faulty network cable",
"IP address misconfiguration"
],
"answer": "Incorrect VLAN assignment"
},
{
"question": "The entries in an ACL are evaluated sequentially, from top to bottom. The first matching entry is applied, and subsequent entries are ignored, giving higher priority to entries that appear higher in the list.",
"options": [
"True",
"False"
],
"answer": "True"
},
{
"question": "Which policy applies to requests that do not match any criteria defined in an ACL?",
"options": [
"Explicit deny any",
"Implicit allow any",
"Explicit allow any",
"Implicit deny any"
],
"answer": "Implicit deny any"
},
{
"question": "A network administrator is troubleshooting an issue where employees in the finance department are unable to access a critical financial application hosted on a server in the data center. The administrator checks the physical connections, server status, and application settings, finding no issues. They then review the ACL on the router that controls traffic between the finance department network and the data center. What could be a potential problem resulting from ACL misconfiguration?",
"options": [
"The ACL has incorrect sequence of rules, causing valid traffic to be denied",
"The ACL is missing rules that permit traffic from the finance department to the server",
"The ACL is too permissive, allowing unauthorized access from other departments",
"All of the above"
],
"answer": "All of the above"
},
{
"question": "In routing, the routing table is evaluated in a top-down order, with the most specific route being matched first. If multiple routes match, the router selects the one with the lowest metric or administrative distance.",
"options": [
"True",
"False"
],
"answer": "True"
},
{
"question": "In routing, the term \"Administrative distance\" refers to a value used in routers to rank routes from most preferred (high AD value) to least preferred (low AD value).",
"options": [
"True",
"False"
],
"answer": "False"
},
{
"question": "The last step of the troubleshooting process should involve:",
"options": [
"Implementing preventive measures",
"Documenting findings, actions, outcomes, and conclusions",
"Implementing the solution",
"Verifying full system functionality",
"Identifying potential effects of the implemented solution"
],
"answer": "Documenting findings, actions, outcomes, and conclusions"
},
{
"question": "To ensure proper functioning of single-mode fiber-optic connections and prevent issues such as signal degradation or data errors, it is essential to use transceivers and connectors specifically designed for single-mode applications.",
"options": [
"True",
"False"
],
"answer": "True"
},
{
"question": "What would be the possible outcome of using a multimode fiber for long-distance communication links reserved for single-mode fiber optics?",
"options": [
"Signal distortion",
"Data transmission errors",
"Limited transmission distance",
"High signal attenuation",
"All of the above"
],
"answer": "All of the above"
},
{
"question": "What step should a network technician take if Cat 5 cables are found in a Gigabit Ethernet connection?",
"options": [
"Leave the setup as it is",
"Replace Cat 5 cables with Cat 5e or higher",
"Shorten the cable lengths",
"Install repeaters to boost the signal"
],
"answer": "Replace Cat 5 cables with Cat 5e or higher"
},
{
"question": "A network technician discovers a 50-meter-long Cat 6 cable being used for a 10 Gigabit Ethernet connection. What should the technician do?",
"options": [
"Extend the cable length",
"Install repeaters to boost the signal",
"Leave the network link as is",
"Replace the cable with Cat 6a or higher"
],
"answer": "Leave the network link as is"
},
{
"question": "While inspecting a network setup, a technician finds a Cat 8 cable being used for 40 Gigabit Ethernet over a 100-meter segment. What action should they take to ensure optimal bandwidth?",
"options": [
"Switch to twinaxial cabling",
"Use repeaters to amplify the signal",
"Switch to fiber optics",
"Maintain the current setup"
],
"answer": "Switch to fiber optics"
},
{
"question": "Which type of twisted-pair copper cabling takes advantage of an additional protective cover reducing signal interference from outside sources?",
"options": [
"Coax",
"STP",
"UTP",
"Twinax"
],
"answer": "STP"
},
{
"question": "Which of the following answers do not refer to UTP cabling? (Select 3 answers)",
"options": [
"Twisted-pair copper cabling",
"Commonly used in Ethernet networks and telephone systems",
"Low cost and ease of installation",
"Takes advantage of additional protective cover reducing signal interference from outside sources",
"Coaxial cabling",
"Not surrounded by any shielding that would provide protection against interference from outside sources",
"Fiber-optic cabling",
"In Ethernet networks, installed with RJ45 connector type"
],
"answer": [
"Takes advantage of additional protective cover reducing signal interference from outside sources",
"Coaxial cabling",
"Fiber-optic cabling"
]
},
{
"question": "A key feature of all twisted-pair cabling types is that wires inside the cable are grouped into pairs, and the wires in each pair are twisted around each other to reduce signal interference from adjacent wire pairs.",
"options": [
"True",
"False"
],
"answer": "True"
},
{
"question": "STP cabling reduces: (Select 2 answers)",
"options": [
"Jitter",
"Attenuation",
"Crosstalk",
"EMI",
"Signal distortion"
],
"answer": [
"Crosstalk",
"EMI"
]
},
{
"question": "Which of the cabling types listed below is the most susceptible to EMI/RFI?",
"options": [
"UTP cabling",
"Coaxial cabling",
"STP cabling",
"Fiber-optic cabling"
],
"answer": "UTP cabling"
},
{
"question": "Which type of network cabling provides immunity against EMI and RFI?",
"options": [
"Coaxial",
"UTP",
"Twinaxial",
"STP",
"Fiber optic"
],
"answer": "Fiber optic"
},
{
"question": "In computer networking, the term \"Attenuation\" refers to a loss in signal strength during transmission caused by increasing distance and obstacles encountered on the signal path. The problem of signal attenuation on the network can be solved by adding a network transceiver device that boosts the signal strength.",
"options": [
"True",
"False"
],
"answer": "False"
},
{
"question": "Which of the tools listed below would be used for troubleshooting incorrect pinouts on a cable?",
"options": [
"Cable tester",
"Multimeter",
"Toner and probe kit",
"Loopback plug"
],
"answer": "Cable tester"
},
{
"question": "What type of Ethernet cable is used for establishing a direct communication link between two PCs?",
"options": [
"Patch cable",
"Crossover cable",
"Rollover cable",
"Straight-through cable"
],
"answer": "Crossover cable",
"explanation": "Patch: straight through, pc->switch, switch->router | Rollover: serial, used for direct console access | Crossover: like devices, switch->switch etc"
},
{
"question": "Which of the following answers refers to a common cabling type used for connecting workstations to network devices?",
"options": [
"Patch cable",
"Rollover cable",
"Yost cable",
"Crossover cable"
],
"answer": "Patch cable",
"explanation": "Patch: straight through, pc->switch, switch->router | Rollover: serial, used for direct console access | Crossover: like devices, switch->switch etc"
},
{
"question": "An Ethernet straight-through cable is also known as a:",
"options": [
"Rollover cable",
"Yost cable",
"Crossover cable",
"Patch cable"
],
"answer": "Patch cable"
},
{
"question": "Which of the answers listed below refers to a feature that allows an Ethernet interface to automatically detect the required cable connection type and configure the connection accordingly?",
"options": [
"Adaptive connector",
"Smart plug interface",