-
Notifications
You must be signed in to change notification settings - Fork 1
/
log.txt
4141 lines (4139 loc) · 512 KB
/
log.txt
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
{ name: 'S2 can become root bridge if S3 fails.',
isAnswer: false },
{ name: 'S2 can become root bridge if S1 fails. ',
isAnswer: true } ],
state: 'CHOICES' }
choices######### CHOICES_ELEMENT
################# { choices:
[ { name: ' This is the normal behavior for a Layer 2 network.',
isAnswer: true },
{ name: 'The MAC address table is corrupt.', isAnswer: false },
{ name: 'The VLAN database is full.', isAnswer: false },
{ name: 'The outbound interface is set for half duplex.',
isAnswer: false } ],
state: 'CHOICES' }
choices######### CHOICES_ELEMENT
################# { choices:
[ { name: 'sending an ARP request broadcast', isAnswer: false },
{ name: 'sending a multicast frame', isAnswer: false },
{ name: 'transmitting a probe request', isAnswer: true },
{ name: 'initiating a three-way handshake', isAnswer: false },
{ name: 'receiving a broadcast beacon frame', isAnswer: true } ],
state: 'CHOICES' }
Retrieved 39 questions
linkstats 39 https://www.ccna7.com/ccna-3-v-5-0-2/ccna-3-v-5-0-2-pretest-exam-answer-2015/
####### 8 of 325 #######
#######Success https://www.ccna7.com/ccna-4-v-5-0-2/ccna-4-v-5-0-2-pretest-exam-answer-2015/ #######
^Cmars@marx-14CLE:~/Documents/github/CCNAAnswerScrapper$ clear
mars@marx-14CLE:~/Documents/github/CCNAAnswerScrapper$ nodemon
[nodemon] 1.19.1
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node index.js`
sitati
####### 0 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ite-v-5-0-2/ite-chapter-12-exam/
####### 1 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna-security-exam-answer-v1-2/ccna-security-chapter-1-exam-v1-2/
####### 2 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/microsoft/70-640-windows-server-2008-active-directory/new-features-in-windows-server-2008-r2-and-service-pack-1/
####### 3 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/microsoft/70-640-windows-server-2008-active-directory/active-directory-forest-and-trees/
####### 4 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/cisco/ccna-routing-and-switching/
####### 5 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/cisco/ccna-routing-and-switching/ccna-1/
####### 6 of 325 #######
Retrieved 20 questions
linkstats 20 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-9-exam/
####### 7 of 325 #######
#######Success https://www.ccna7.com/ccna-3-v-5-0-2/ccna-3-v-5-0-2-pretest-exam-answer-2015/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/ccna-3-v-5-0-2/ccna-3-v-5-0-2-pretest-exam-answer-2015/
Retrieved 39 questions
linkstats 39 https://www.ccna7.com/ccna-3-v-5-0-2/ccna-3-v-5-0-2-pretest-exam-answer-2015/
####### 8 of 325 #######
#######Success https://www.ccna7.com/ccna-4-v-5-0-2/ccna-4-v-5-0-2-pretest-exam-answer-2015/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/ccna-4-v-5-0-2/ccna-4-v-5-0-2-pretest-exam-answer-2015/
Retrieved 39 questions
linkstats 39 https://www.ccna7.com/ccna-4-v-5-0-2/ccna-4-v-5-0-2-pretest-exam-answer-2015/
####### 9 of 325 #######
#######Success https://www.ccna7.com/ccna-4-v-5-0-2/ccna-4-v-5-0-2-chapter-9-exam-answer-2015/ #######
Retrieved 25 questions
linkstats 25 https://www.ccna7.com/ccna-4-v-5-0-2/ccna-4-v-5-0-2-chapter-9-exam-answer-2015/
####### 10 of 325 #######
#######Success https://www.ccna7.com/ccna-security-exam-answer-v1-2/ccna-security-chapter-2-exam-v1-2/ #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna-security-exam-answer-v1-2/ccna-security-chapter-2-exam-v1-2/
####### 11 of 325 #######
Retrieved 22 questions
linkstats 22 https://www.ccna7.com/ite-v-5-0-2/ite-chapter-12-exam-2/
####### 12 of 325 #######
#######Success https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-6-pt-practice-skills-assessment-v5-1/ #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-6-pt-practice-skills-assessment-v5-1/
####### 13 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna1-v5-1/ccna1-pt-practice-skills-exam-v5-1/
####### 14 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna2-v5-03/ccna2-chapter-2-practice-skills-assessment-pt-v5-03/
####### 15 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna2-v5-03/ccna-2-chapter-6-practice-skills-assessment-pt-v5-03/
####### 16 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna2-v5-03/ccna-2-nb_itn-practice-skills-assessment-pt-v5-03/
####### 17 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna2-v5-03/ccna-2-rse-practice-skills-assessment-pt-v5-03/
####### 18 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna2-v5-03/ccna-3-nb_itn-practice-skills-assessment-pt-v5-03/
####### 19 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna3-v5-03/ccna-3-rse-practice-skills-assessment-pt-v5-03/
####### 20 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna4-v5-03/ccna-4-nb_itn-practice-skills-assessment-pt-v5-03/
####### 21 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna4-v5-03/ccna-4-rse-practice-skills-assessment-pt-v5-03/
####### 22 of 325 #######
Question has no answer: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd1-2016-answer/ {"choices":[{"name":".<img aria-describedby=\"caption-attachment-3262\" class=\"wp-image-3262 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848777.jpg\" alt=\"ICND1 v5.1 002\" width=\"474\" height=\"57\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848777.jpg 474w, https://www.ccna7.com/wp-content/uploads/2016/03/opt1848777-300x36.jpg 300w\" sizes=\"(max-width: 474px) 100vw, 474px\" />ICND1 v5.1 002","isAnswer":false},{"name":".<img aria-describedby=\"caption-attachment-3277\" class=\"wp-image-3277 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848778.jpg\" alt=\"ICND1 v5.1 017\" width=\"475\" height=\"57\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848778.jpg 475w, https://www.ccna7.com/wp-content/uploads/2016/03/opt1848778-300x36.jpg 300w\" sizes=\"(max-width: 475px) 100vw, 475px\" />ICND1 v5.1 017","isAnswer":false},{"name":".<img aria-describedby=\"caption-attachment-3278\" class=\"wp-image-3278 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848779.jpg\" alt=\"ICND1 v5.1 018\" width=\"478\" height=\"57\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848779.jpg 478w, https://www.ccna7.com/wp-content/uploads/2016/03/opt1848779-300x36.jpg 300w\" sizes=\"(max-width: 478px) 100vw, 478px\" />ICND1 v5.1 018","isAnswer":false},{"name":".<img aria-describedby=\"caption-attachment-3279\" class=\"wp-image-3279 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848780.jpg\" alt=\"ICND1 v5.1 019\" width=\"475\" height=\"59\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/opt1848780.jpg 475w, https://www.ccna7.com/wp-content/uploads/2016/03/opt1848780-300x37.jpg 300w\" sizes=\"(max-width: 475px) 100vw, 475px\" />ICND1 v5.1 019","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd1-2016-answer/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-3283\" class=\"wp-image-3283 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-001.png\" alt=\"ICND1 Question 001\" width=\"921\" height=\"302\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-001.png 921w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-001-300x98.png 300w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-001-768x252.png 768w\" sizes=\"(max-width: 921px) 100vw, 921px\" />ICND1 Question 001","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-3280\" class=\"wp-image-3280 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-001.png\" alt=\"ICND1 Answer 001\" width=\"414\" height=\"303\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-001.png 414w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-001-300x220.png 300w\" sizes=\"(max-width: 414px) 100vw, 414px\" />ICND1 Answer 001","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd1-2016-answer/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-3284\" class=\"wp-image-3284 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-002.png\" alt=\"ICND1 Question 002\" width=\"926\" height=\"258\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-002.png 926w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-002-300x84.png 300w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-002-768x214.png 768w\" sizes=\"(max-width: 926px) 100vw, 926px\" />ICND1 Question 002","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-3281\" class=\"wp-image-3281 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-002.png\" alt=\"ICND1 Answer 002\" width=\"414\" height=\"268\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-002.png 414w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-002-300x194.png 300w\" sizes=\"(max-width: 414px) 100vw, 414px\" />ICND1 Answer 002","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd1-2016-answer/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-4063\" class=\"size-full wp-image-4063\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-003-a.png\" alt=\"ICND1 Question 003\" width=\"924\" height=\"291\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-003-a.png 924w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-003-a-300x94.png 300w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Question-003-a-768x242.png 768w\" sizes=\"(max-width: 924px) 100vw, 924px\" />ICND1 Question 003","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-3282\" class=\"wp-image-3282 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-003.png\" alt=\"ICND1 Answer 003\" width=\"407\" height=\"288\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-003.png 407w, https://www.ccna7.com/wp-content/uploads/2016/03/ICND1-Answer-003-300x212.png 300w\" sizes=\"(max-width: 407px) 100vw, 407px\" />ICND1 Answer 003","isAnswer":false}],"state":"CHOICES"}
Retrieved 55 questions
linkstats 55 https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd1-2016-answer/
####### 23 of 325 #######
#######Success https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd2/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd2/
Question has no answer: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd2/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-4112\" class=\"size-full wp-image-4112\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-001.png\" alt=\"Cert Practice Exam ICND2 Question 001\" width=\"926\" height=\"246\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-001.png 926w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-001-300x80.png 300w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-001-768x204.png 768w\" sizes=\"(max-width: 926px) 100vw, 926px\" />Cert Practice Exam ICND2 Question 001","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-4111\" class=\"size-full wp-image-4111\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-001.png\" alt=\"Cert Practice Exam ICND2 Answer 001\" width=\"413\" height=\"237\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-001.png 413w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-001-300x172.png 300w\" sizes=\"(max-width: 413px) 100vw, 413px\" />Cert Practice Exam ICND2 Answer 001","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd2/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-4116\" class=\"size-full wp-image-4116\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-003.png\" alt=\"Cert Practice Exam ICND2 Question 003\" width=\"922\" height=\"231\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-003.png 922w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-003-300x75.png 300w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-003-768x192.png 768w\" sizes=\"(max-width: 922px) 100vw, 922px\" />Cert Practice Exam ICND2 Question 003","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-4115\" class=\"size-full wp-image-4115\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-003.png\" alt=\"Cert Practice Exam ICND2 Answer 003\" width=\"411\" height=\"239\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-003.png 411w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-003-300x174.png 300w\" sizes=\"(max-width: 411px) 100vw, 411px\" />Cert Practice Exam ICND2 Answer 003","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd2/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-4114\" class=\"size-full wp-image-4114\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-002.png\" alt=\"Cert Practice Exam ICND2 Question 002\" width=\"923\" height=\"288\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-002.png 923w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-002-300x94.png 300w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Question-002-768x240.png 768w\" sizes=\"(max-width: 923px) 100vw, 923px\" />Cert Practice Exam ICND2 Question 002","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-4113\" class=\"size-full wp-image-4113\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-002.png\" alt=\"Cert Practice Exam ICND2 Answer 002\" width=\"412\" height=\"293\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-002.png 412w, https://www.ccna7.com/wp-content/uploads/2016/03/Cert-Practice-Exam-ICND2-Answer-002-300x213.png 300w\" sizes=\"(max-width: 412px) 100vw, 412px\" />Cert Practice Exam ICND2 Answer 002","isAnswer":false}],"state":"CHOICES"}
Retrieved 56 questions
linkstats 56 https://www.ccna7.com/ccna4-v5-03/cert-practice-exam-icnd2/
####### 24 of 325 #######
#######Success https://www.ccna7.com/microsoft/70-640-windows-server-2008-active-directory/ #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/microsoft/70-640-windows-server-2008-active-directory/
####### 25 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/microsoft/70-640-windows-server-2008-active-directory/introduction-to-active-directory/
####### 26 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna-3-v-5-0-2/ccna3-nb_itn-practice-skills-assessment-pt/
####### 27 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna-3-v-5-0-2/ccna3-rse-practice-skills-assessment-pt/
####### 28 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna-4-v-5-0-2/ccna4-nb_itn-practice-skills-assessment-pt/
####### 29 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna-4-v-5-0-2/ccna4-rse-practice-skills-assessment-pt/
####### 30 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna-security-exam-answer-v2/ccna-security-practice-final-exam-v2/
####### 31 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-linux-ii-chapter-13/
####### 32 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-linux-ii-chapter-12/
####### 33 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-chapter-14/
####### 34 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-chapter-15/
####### 35 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-chapter-16/
####### 36 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-chapter-17/
####### 37 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-chapter-19/
####### 38 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-midterm-chapter-1-9/
####### 39 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-final-exam-chapter-10-19/
####### 40 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-linux-ii-chapter-18/
####### 41 of 325 #######
Retrieved 2 questions
linkstats 2 https://www.ccna7.com/microsoft/
####### 42 of 325 #######
#######Success https://www.ccna7.com/ite-v-5-0-2/skills-review-exam-v5-0/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/ite-v-5-0-2/skills-review-exam-v5-0/
Question has no answer: https://www.ccna7.com/ite-v-5-0-2/skills-review-exam-v5-0/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-3413\" class=\"size-full wp-image-3413\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ITE-Pretest-Exam-v6-Question-001.png\" alt=\"ITE Pretest Exam v6 Question 001\" width=\"916\" height=\"491\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ITE-Pretest-Exam-v6-Question-001.png 916w, https://www.ccna7.com/wp-content/uploads/2016/03/ITE-Pretest-Exam-v6-Question-001-300x161.png 300w, https://www.ccna7.com/wp-content/uploads/2016/03/ITE-Pretest-Exam-v6-Question-001-768x412.png 768w\" sizes=\"(max-width: 916px) 100vw, 916px\" />ITE Pretest Exam v6 Question 001","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-3412\" class=\"size-full wp-image-3412\" src=\"https://www.ccna7.com/wp-content/uploads/2016/03/ITE-Pretest-Exam-v6-Answer-001.png\" alt=\"ITE Pretest Exam v6 Answer 001\" width=\"414\" height=\"420\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/03/ITE-Pretest-Exam-v6-Answer-001.png 414w, https://www.ccna7.com/wp-content/uploads/2016/03/ITE-Pretest-Exam-v6-Answer-001-296x300.png 296w\" sizes=\"(max-width: 414px) 100vw, 414px\" />ITE Pretest Exam v6 Answer 001","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ite-v-5-0-2/skills-review-exam-v5-0/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-3462\" class=\"size-full wp-image-3462\" src=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Question-v5.0-001.png\" alt=\"ITE Skills Review Question v5.0 001\" width=\"923\" height=\"335\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Question-v5.0-001.png 923w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Question-v5.0-001-300x109.png 300w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Question-v5.0-001-768x279.png 768w\" sizes=\"(max-width: 923px) 100vw, 923px\" />ITE Skills Review Exam Question v5.0 001","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-3461\" class=\"size-full wp-image-3461\" src=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Answer-v5.0-001.png\" alt=\"ITE Skills Review Answer v5.0 001\" width=\"410\" height=\"132\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Answer-v5.0-001.png 410w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Answer-v5.0-001-300x97.png 300w\" sizes=\"(max-width: 410px) 100vw, 410px\" />ITE Skills Review Exam Answer v5.0 001","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ite-v-5-0-2/skills-review-exam-v5-0/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-3464\" class=\"size-full wp-image-3464\" src=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-002.png\" alt=\"ITE Skills Review Exam Question v5.0 002\" width=\"916\" height=\"186\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-002.png 916w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-002-300x61.png 300w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-002-768x156.png 768w\" sizes=\"(max-width: 916px) 100vw, 916px\" />ITE Skills Review Exam Question v5.0 002","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-3463\" class=\"size-full wp-image-3463\" src=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Answer-v5.0-002.png\" alt=\"ITE Skills Review Exam Answer v5.0 002\" width=\"406\" height=\"168\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Answer-v5.0-002.png 406w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Answer-v5.0-002-300x124.png 300w\" sizes=\"(max-width: 406px) 100vw, 406px\" />ITE Skills Review Exam Answer v5.0 002","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ite-v-5-0-2/skills-review-exam-v5-0/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-3466\" class=\"size-full wp-image-3466\" src=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-003.png\" alt=\"ITE Skills Review Exam Question v5.0 003\" width=\"924\" height=\"540\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-003.png 924w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-003-300x175.png 300w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Question-v5.0-003-768x449.png 768w\" sizes=\"(max-width: 924px) 100vw, 924px\" />ITE Skills Review Exam Question v5.0 003","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-3465\" class=\"size-full wp-image-3465\" src=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Answer-v5.0-003.png\" alt=\"ITE Skills Review Exam Answer v5.0 003\" width=\"417\" height=\"387\" srcset=\"https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Answer-v5.0-003.png 417w, https://www.ccna7.com/wp-content/uploads/2016/04/ITE-Skills-Review-Exam-Answer-v5.0-003-300x278.png 300w\" sizes=\"(max-width: 417px) 100vw, 417px\" />ITE Skills Review Exam Answer v5.0 003","isAnswer":false}],"state":"CHOICES"}
Retrieved 39 questions
linkstats 39 https://www.ccna7.com/ite-v-5-0-2/skills-review-exam-v5-0/
####### 43 of 325 #######
#######Success https://www.ccna7.com/ccna4-v6-0/ccna4-v6-0-pretest-exam-full-100/ #######
Retrieved 40 questions
linkstats 40 https://www.ccna7.com/ccna4-v6-0/ccna4-v6-0-pretest-exam-full-100/
####### 44 of 325 #######
#######Success https://www.ccna7.com/ccna2-final-exam/ #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/ccna2-final-exam/
####### 45 of 325 #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/packet-tracer-labs/
####### 46 of 325 #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-ii/introduction-linux-ii-final-comprehensive-exam-chapter-1-19/
Retrieved 89 questions
linkstats 89 https://www.ccna7.com/introduction-to-linux-ii/introduction-linux-ii-final-comprehensive-exam-chapter-1-19/
####### 47 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-chapter-11/ #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-ii/introduction-to-linux-ii-chapter-11/
####### 48 of 325 #######
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-1-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2030\" class=\"wp-image-2030 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-001-Question.png\" alt=\"CCNA1 Chapter 1 v5.1 001 Question\" width=\"1034\" height=\"451\" />CCNA1 Chapter 1 v5.1 001 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2029\" class=\"wp-image-2029 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-001-Answer.png\" alt=\"CCNA1 Chapter 1 v5.1 001 Answer\" width=\"459\" height=\"405\" />CCNA1 Chapter 1 v5.1 001 Answer","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-1-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2032\" class=\"wp-image-2032 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-002-Question.png\" alt=\"CCNA1 Chapter 1 v5.1 002 Question\" width=\"1015\" height=\"282\" />CCNA1 Chapter 1 v5.1 002 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2031\" class=\"wp-image-2031 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-002-Answer.png\" alt=\"CCNA1 Chapter 1 v5.1 002 Answer\" width=\"446\" height=\"187\" />CCNA1 Chapter 1 v5.1 002 Answer","isAnswer":false}],"state":"CHOICES","explanation":"DSL is an always-on, high bandwidth connection that runs over telephone lines. Cable uses the same coaxial cable that carries television signals into the home to provide Internet access. Dialup telephone is much slower than either DSL or cable, but is the least expensive option for home users because it can use any telephone line and a simple modem. Satellite requires a clear line of sight and is affected by trees and other obstructions. None of these typical home options use dedicated leased lines such as T1/E1 and T3/E3.DSL is an always-on, high bandwidth connection that runs over telephone lines. Cable uses the same coaxial cable that carries television signals into the home to provide Internet access. Dialup telephone is much slower than either DSL or cable, but is the least expensive option for home users because it can use any telephone line and a simple modem. Satellite requires a clear line of sight and is affected by trees and other obstructions. None of these typical home options use dedicated leased lines such as T1/E1 and T3/E3."}
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-1-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2034\" class=\"wp-image-2034 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-003-Question.png\" alt=\"CCNA1 Chapter 1 v5.1 003 Question\" width=\"1012\" height=\"358\" />CCNA1 Chapter 1 v5.1 003 QuestionAnswer<img aria-describedby=\"caption-attachment-2033\" class=\"wp-image-2033 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-003-Answer.png\" alt=\"CCNA1 Chapter 1 v5.1 003 Answer\" width=\"452\" height=\"312\" />CCNA1 Chapter 1 v5.1 003 Answer","isAnswer":false},{"name":"Question<img aria-describedby=\"caption-attachment-2034\" class=\"wp-image-2034 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-003-Question.png\" alt=\"CCNA1 Chapter 1 v5.1 003 Question\" width=\"1012\" height=\"358\" />CCNA1 Chapter 1 v5.1 003 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2033\" class=\"wp-image-2033 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-1-v5.1-003-Answer.png\" alt=\"CCNA1 Chapter 1 v5.1 003 Answer\" width=\"452\" height=\"312\" />CCNA1 Chapter 1 v5.1 003 Answer","isAnswer":false}],"state":"CHOICES","explanation":"Data integrity verifies that the data has not been altered on the trip between the sender and the receiver. A field calculated by the sender is recalculated and verified to be the same by the receiver. Passwords and authorization maintain control over who has access to personal data. Redundant devices and links attempt to provide 99.999% availability to users. Integrity is made possible by requiring validation of the sender, not the destination. VPNs are not the only secure method by which data can be transferred confidentially.Data integrity verifies that the data has not been altered on the trip between the sender and the receiver. A field calculated by the sender is recalculated and verified to be the same by the receiver. Passwords and authorization maintain control over who has access to personal data. Redundant devices and links attempt to provide 99.999% availability to users. Integrity is made possible by requiring validation of the sender, not the destination. VPNs are not the only secure method by which data can be transferred confidentially.Data integrity verifies that the data has not been altered on the trip between the sender and the receiver. A field calculated by the sender is recalculated and verified to be the same by the receiver. Passwords and authorization maintain control over who has access to personal data. Redundant devices and links attempt to provide 99.999% availability to users. Integrity is made possible by requiring validation of the sender, not the destination. VPNs are not the only secure method by which data can be transferred confidentially."}
Retrieved 24 questions
linkstats 24 https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-1-exam-v5-1/
####### 49 of 325 #######
#######Success https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-2-exam-v5-1/ #######
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-2-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2042\" class=\"wp-image-2042 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-2-v5.1-001-Question.png\" alt=\"CCNA1 Chapter 2 v5.1 001 Question\" width=\"1018\" height=\"295\" />CCNA1 Chapter 2 v5.1 001 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2041\" class=\"wp-image-2041 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-2-v5.1-001-Answer.png\" alt=\"CCNA1 Chapter 2 v5.1 001 Answer\" width=\"457\" height=\"238\" />CCNA1 Chapter 2 v5.1 001 Answer","isAnswer":false}],"state":"CHOICES","explanation":"The configuration mode that the administrator first encounters is user EXEC mode. After the enable command is entered, the next mode is privileged EXEC mode. From there, the configure terminal command is entered to move to global configuration mode. Finally, the administrator enters the line console 0 command to enter the mode in which the configuration will be entered.The configuration mode that the administrator first encounters is user EXEC mode. After the enable command is entered, the next mode is privileged EXEC mode. From there, the configure terminal command is entered to move to global configuration mode. Finally, the administrator enters the line console 0 command to enter the mode in which the configuration will be entered."}
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-2-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2044\" class=\"wp-image-2044 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-2-v5.1-002-Question.png\" alt=\"CCNA1 Chapter 2 v5.1 002 Question\" width=\"1015\" height=\"326\" />CCNA1 Chapter 2 v5.1 002 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2043\" class=\"wp-image-2043 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-2-v5.1-002-Answer.png\" alt=\"CCNA1 Chapter 2 v5.1 002 Answer\" width=\"445\" height=\"283\" />CCNA1 Chapter 2 v5.1 002 Answer","isAnswer":false}],"state":"CHOICES","explanation":" The shortcuts with their functions are as follows: – Tab – Completes the remainder of a partially typed command or keyword – Space bar – displays the next screen – ? – provides context-sensitive help – Up Arrow – Allows user to scroll backward through former commands – Ctrl-C – cancels any command currently being entered and returns directly to privileged EXEC mode – Ctrl-Shift-6 – Allows the user to interrupt an IOS process such as ping or traceroute"}
Retrieved 24 questions
linkstats 24 https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-2-exam-v5-1/
####### 50 of 325 #######
#######Success https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-3-exam-v5-1/ #######
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-3-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2055\" class=\"wp-image-2055 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-3-v5.1-001-Question.png\" alt=\"CCNA1 ITN Chapter 3 Exam v5.1 001 Question\" width=\"1017\" height=\"362\" />CCNA1 ITN Chapter 3 Exam v5.1 001 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2054\" class=\"wp-image-2054 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-3-v5.1-001-Answer.png\" alt=\"CCNA1 ITN Chapter 3 Exam v5.1 001 Answer\" width=\"452\" height=\"310\" />CCNA1 ITN Chapter 3 Exam v5.1 001 Answer","isAnswer":false}],"state":"CHOICES"}
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-3-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2061\" class=\"wp-image-2061 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-3-v5.1-003-Question.png\" alt=\"CCNA1 ITN Chapter 3 Exam v5.1 003 Question\" width=\"1018\" height=\"359\" />CCNA1 ITN Chapter 3 Exam v5.1 003 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2060\" class=\"wp-image-2060 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-3-v5.1-003-Answer.png\" alt=\"CCNA1 ITN Chapter 3 Exam v5.1 003 Answer\" width=\"445\" height=\"311\" />CCNA1 ITN Chapter 3 Exam v5.1 003 Answer ","isAnswer":false},{"name":"Application Protocol – governing the way a web server and a web client interact","isAnswer":false},{"name":"Transport Protocol – managing the individual conversations between web servers and web clients","isAnswer":false},{"name":"Internet Protocol – taking the formatted segments from the transport protocol, encapsulating them into packets, assigning them the appropriate addresses, and delivering them across the best path to the destination host","isAnswer":false},{"name":"Network Access Protocol – preparing packets to be transmitted over the network media","isAnswer":false}],"state":"CHOICES","explanation":"When a web client visits a web server, several network communication protocols are involved. These different protocols work together to ensure that the messages are received and understood by both parties. These protocols include the following:Application Protocol – governing the way a web server and a web client interactTransport Protocol – managing the individual conversations between web servers and web clientsInternet Protocol – taking the formatted segments from the transport protocol, encapsulating them into packets, assigning them the appropriate addresses, and delivering them across the best path to the destination hostNetwork Access Protocol – preparing packets to be transmitted over the network mediaNetwork Time Protocol is used to synchronize clocks between computer systems. It is not involved in this case.When a web client visits a web server, several network communication protocols are involved. These different protocols work together to ensure that the messages are received and understood by both parties. These protocols include the following:Application Protocol – governing the way a web server and a web client interactTransport Protocol – managing the individual conversations between web servers and web clientsInternet Protocol – taking the formatted segments from the transport protocol, encapsulating them into packets, assigning them the appropriate addresses, and delivering them across the best path to the destination hostNetwork Access Protocol – preparing packets to be transmitted over the network mediaNetwork Time Protocol is used to synchronize clocks between computer systems. It is not involved in this case."}
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-3-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2059\" class=\"wp-image-2059 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-3-v5.1-002-Question.png\" alt=\"CCNA1 ITN Chapter 3 Exam v5.1 002 Question\" width=\"1016\" height=\"443\" />CCNA1 ITN Chapter 3 Exam v5.1 002 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2056\" class=\"wp-image-2056 size-full\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-3-v5.1-002-Answer.png\" alt=\"CCNA1 ITN Chapter 3 Exam v5.1 002 Answer\" width=\"450\" height=\"395\" />CCNA1 ITN Chapter 3 Exam v5.1 002 Answer ","isAnswer":false}],"state":"CHOICES","explanation":"The EIA is an international standards and trade organization for electronics organizations. It is best known for its standards related to electrical wiring, connectors, and the 19-inch racks used to mount networking equipment.The EIA is an international standards and trade organization for electronics organizations. It is best known for its standards related to electrical wiring, connectors, and the 19-inch racks used to mount networking equipment.The EIA is an international standards and trade organization for electronics organizations. It is best known for its standards related to electrical wiring, connectors, and the 19-inch racks used to mount networking equipment."}
Retrieved 22 questions
linkstats 22 https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-3-exam-v5-1/
####### 51 of 325 #######
#######Success https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-4-exam-v5-1/ #######
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-4-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2068\" class=\"size-full wp-image-2068\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-4-v5.1-001-Question.png\" alt=\"CCNA1 Chapter 4 v5.1 001 Question\" width=\"1018\" height=\"379\" />CCNA1 Chapter 4 v5.1 001 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2067\" class=\"size-full wp-image-2067\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-4-v5.1-001-Answer.png\" alt=\"CCNA1 Chapter 4 v5.1 001 Answer\" width=\"461\" height=\"378\" />CCNA1 Chapter 4 v5.1 001 Answer ","isAnswer":false}],"state":"CHOICES","explanation":"Single-mode fiber uses a laser as the light source. Its small core produces a single straight path for light and it is commonly used with campus backbones. Multimode fiber uses LEDs as the light source. Its larger core allows for multiple paths for the light. It is commonly used with LANs.Single-mode fiber uses a laser as the light source. Its small core produces a single straight path for light and it is commonly used with campus backbones. Multimode fiber uses LEDs as the light source. Its larger core allows for multiple paths for the light. It is commonly used with LANs.Single-mode fiber uses a laser as the light source. Its small core produces a single straight path for light and it is commonly used with campus backbones. Multimode fiber uses LEDs as the light source. Its larger core allows for multiple paths for the light. It is commonly used with LANs.Single-mode fiber uses a laser as the light source. Its small core produces a single straight path for light and it is commonly used with campus backbones. Multimode fiber uses LEDs as the light source. Its larger core allows for multiple paths for the light. It is commonly used with LANs."}
Retrieved 23 questions
linkstats 23 https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-4-exam-v5-1/
####### 52 of 325 #######
#######Success https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-5-exam-v5-1/ #######
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-5-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2078\" class=\"size-full wp-image-2078\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-5-v5.1-001-Question.png\" alt=\"CCNA1 Chapter 5 v5.1 001 Question\" width=\"1023\" height=\"417\" />CCNA1 Chapter 5 v5.1 001 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2077\" class=\"size-full wp-image-2077\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-5-v5.1-001-Answer.png\" alt=\"CCNA1 Chapter 5 v5.1 001 Answer\" width=\"463\" height=\"380\" />CCNA1 Chapter 5 v5.1 001 Answer ","isAnswer":false}],"state":"CHOICES","explanation":"A store-and-forward switch always stores the entire frame before forwarding, and checks its CRC and frame length. A cut-through switch can forward frames before receiving the destination address field, thus presenting less latency than a store-and-forward switch. Because the frame can begin to be forwarded before it is completely received, the switch may transmit a corrupt or runt frame. All forwarding methods require a Layer 2 switch to forward broadcast frames.A store-and-forward switch always stores the entire frame before forwarding, and checks its CRC and frame length. A cut-through switch can forward frames before receiving the destination address field, thus presenting less latency than a store-and-forward switch. Because the frame can begin to be forwarded before it is completely received, the switch may transmit a corrupt or runt frame. All forwarding methods require a Layer 2 switch to forward broadcast frames.A store-and-forward switch always stores the entire frame before forwarding, and checks its CRC and frame length. A cut-through switch can forward frames before receiving the destination address field, thus presenting less latency than a store-and-forward switch. Because the frame can begin to be forwarded before it is completely received, the switch may transmit a corrupt or runt frame. All forwarding methods require a Layer 2 switch to forward broadcast frames.A store-and-forward switch always stores the entire frame before forwarding, and checks its CRC and frame length. A cut-through switch can forward frames before receiving the destination address field, thus presenting less latency than a store-and-forward switch. Because the frame can begin to be forwarded before it is completely received, the switch may transmit a corrupt or runt frame. All forwarding methods require a Layer 2 switch to forward broadcast frames.A store-and-forward switch always stores the entire frame before forwarding, and checks its CRC and frame length. A cut-through switch can forward frames before receiving the destination address field, thus presenting less latency than a store-and-forward switch. Because the frame can begin to be forwarded before it is completely received, the switch may transmit a corrupt or runt frame. All forwarding methods require a Layer 2 switch to forward broadcast frames."}
Retrieved 22 questions
linkstats 22 https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-5-exam-v5-1/
####### 53 of 325 #######
#######Success https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-6-exam-v5-1/ #######
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-6-exam-v5-1/ {"choices":[{"name":".<img aria-describedby=\"caption-attachment-2084\" class=\"size-full wp-image-2084\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/i275479v1n1_206386-opt-1.png\" alt=\"CCNA1 Chapter 6 Exam 001 opt 1\" width=\"614\" height=\"64\" />CCNA1 Chapter 6 Exam 001 opt 1","isAnswer":false},{"name":".<img aria-describedby=\"caption-attachment-2085\" class=\"size-full wp-image-2085\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/i275479v1n1_206386-opt-2.png\" alt=\"CCNA1 Chapter 6 Exam 001 opt 2\" width=\"616\" height=\"64\" />CCNA1 Chapter 6 Exam 001 opt 2","isAnswer":false},{"name":".<img aria-describedby=\"caption-attachment-2086\" class=\"size-full wp-image-2086\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/i275479v1n1_206386-opt-3.png\" alt=\"CCNA1 Chapter 6 Exam 001 opt 3\" width=\"615\" height=\"65\" />CCNA1 Chapter 6 Exam 001 opt 3","isAnswer":false},{"name":".<img aria-describedby=\"caption-attachment-2087\" class=\"size-full wp-image-2087\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/i275479v1n1_206386-opt-4.png\" alt=\"CCNA1 Chapter 6 Exam 001 opt 4\" width=\"617\" height=\"64\" />CCNA1 Chapter 6 Exam 001 opt 4 ","isAnswer":false}],"state":"CHOICES","explanation":"PC1 and PC2 are both on network 192.168.10.0 with mask 255.255.255.0, so there is no need to access the default gateway (entry 0.0.0.0 0.0.0.0). Entry 127.0.0.1 255.255.255.255 is the loopback interface and entry 192.168.10.10 255.255.255.255 identifies the PC1 address interface.PC1 and PC2 are both on network 192.168.10.0 with mask 255.255.255.0, so there is no need to access the default gateway (entry 0.0.0.0 0.0.0.0). Entry 127.0.0.1 255.255.255.255 is the loopback interface and entry 192.168.10.10 255.255.255.255 identifies the PC1 address interface.PC1 and PC2 are both on network 192.168.10.0 with mask 255.255.255.0, so there is no need to access the default gateway (entry 0.0.0.0 0.0.0.0). Entry 127.0.0.1 255.255.255.255 is the loopback interface and entry 192.168.10.10 255.255.255.255 identifies the PC1 address interface.PC1 and PC2 are both on network 192.168.10.0 with mask 255.255.255.0, so there is no need to access the default gateway (entry 0.0.0.0 0.0.0.0). Entry 127.0.0.1 255.255.255.255 is the loopback interface and entry 192.168.10.10 255.255.255.255 identifies the PC1 address interface.PC1 and PC2 are both on network 192.168.10.0 with mask 255.255.255.0, so there is no need to access the default gateway (entry 0.0.0.0 0.0.0.0). Entry 127.0.0.1 255.255.255.255 is the loopback interface and entry 192.168.10.10 255.255.255.255 identifies the PC1 address interface.PC1 and PC2 are both on network 192.168.10.0 with mask 255.255.255.0, so there is no need to access the default gateway (entry 0.0.0.0 0.0.0.0). Entry 127.0.0.1 255.255.255.255 is the loopback interface and entry 192.168.10.10 255.255.255.255 identifies the PC1 address interface."}
Question has no answer: https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-6-exam-v5-1/ {"choices":[{"name":"Question<img aria-describedby=\"caption-attachment-2089\" class=\"size-full wp-image-2089\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-6-v5.1-001-Question.png\" alt=\"CCNA1 Chapter 6 v5.1 001 Question\" width=\"1015\" height=\"365\" />CCNA1 Chapter 6 v5.1 001 Question","isAnswer":false},{"name":"Answer<img aria-describedby=\"caption-attachment-2088\" class=\"size-full wp-image-2088\" src=\"https://www.ccna7.com/wp-content/uploads/2015/08/CCNA1-Chapter-6-v5.1-001-Answer.png\" alt=\"CCNA1 Chapter 6 v5.1 001 Answer\" width=\"454\" height=\"371\" />CCNA1 Chapter 6 v5.1 001 Answer ","isAnswer":false}],"state":"CHOICES","explanation":"The enable command is entered in R1> mode. The login command is entered in R1(config-line)# mode. The copy running-config startup-config command is entered in R1# mode. The ip address 192.168.4.4 255.255.255.0 command is entered in R1(config-if)# mode. The service password-encryption command is entered in global configuration mode.The enable command is entered in R1> mode. The login command is entered in R1(config-line)# mode. The copy running-config startup-config command is entered in R1# mode. The ip address 192.168.4.4 255.255.255.0 command is entered in R1(config-if)# mode. The service password-encryption command is entered in global configuration mode.The enable command is entered in R1> mode. The login command is entered in R1(config-line)# mode. The copy running-config startup-config command is entered in R1# mode. The ip address 192.168.4.4 255.255.255.0 command is entered in R1(config-if)# mode. The service password-encryption command is entered in global configuration mode.The enable command is entered in R1> mode. The login command is entered in R1(config-line)# mode. The copy running-config startup-config command is entered in R1# mode. The ip address 192.168.4.4 255.255.255.0 command is entered in R1(config-if)# mode. The service password-encryption command is entered in global configuration mode.The enable command is entered in R1> mode. The login command is entered in R1(config-line)# mode. The copy running-config startup-config command is entered in R1# mode. The ip address 192.168.4.4 255.255.255.0 command is entered in R1(config-if)# mode. The service password-encryption command is entered in global configuration mode.The enable command is entered in R1> mode. The login command is entered in R1(config-line)# mode. The copy running-config startup-config command is entered in R1# mode. The ip address 192.168.4.4 255.255.255.0 command is entered in R1(config-if)# mode. The service password-encryption command is entered in global configuration mode."}
Retrieved 20 questions
linkstats 20 https://www.ccna7.com/ccna1-v5-1/ccna1-chapter-6-exam-v5-1/
####### 54 of 325 #######
#######Success https://www.ccna7.com/it-essentials-6-0-courseware/ #######
####SelectorError__________ [ 'ol[class="wpProQuiz_list"] > li',
'div.entry-content > ol > li' ]
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/it-essentials-6-0-courseware/
####### 55 of 325 #######
Retrieved 19 questions
linkstats 19 https://www.ccna7.com/introduction-to-linux-i/introduction-linux-chapter-1/
####### 56 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-2/ #######
Retrieved 11 questions
linkstats 11 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-2/
####### 57 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-3-exam/ #######
Retrieved 17 questions
linkstats 17 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-3-exam/
####### 58 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-4-exam/ #######
Retrieved 30 questions
linkstats 30 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-4-exam/
####### 59 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-5-exam/ #######
Retrieved 29 questions
linkstats 29 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-5-exam/
####### 60 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-6-exam/ #######
Retrieved 18 questions
linkstats 18 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-6-exam/
####### 61 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-7-exam/ #######
Retrieved 22 questions
linkstats 22 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-7-exam/
####### 62 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-8-exam/ #######
Retrieved 13 questions
linkstats 13 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-8-exam/
####### 63 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-11-exam/ #######
Retrieved 30 questions
linkstats 30 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-11-exam/
####### 64 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-12-exam/ #######
Retrieved 28 questions
linkstats 28 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-12-exam/
####### 65 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-10-exam/ #######
Retrieved 10 questions
linkstats 10 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-10-exam/
####### 66 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-13-exam/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-13-exam/
Retrieved 28 questions
linkstats 28 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-13-exam/
####### 67 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-14-exam/
####### 68 of 325 #######
Retrieved 18 questions
linkstats 18 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-15-exam/
####### 69 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-16-exam/
####### 70 of 325 #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
Retrieved 0 questions
linkstats 0 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-17-exam/
####### 71 of 325 #######
Retrieved 28 questions
linkstats 28 https://www.ccna7.com/introduction-to-linux-i/introduction-linux-chapter-18/
####### 72 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-linux-chapter-19/ #######
Retrieved 13 questions
linkstats 13 https://www.ccna7.com/introduction-to-linux-i/introduction-linux-chapter-19/
####### 73 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-20/ #######
Retrieved 21 questions
linkstats 21 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-20/
####### 74 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-21/ #######
Retrieved 29 questions
linkstats 29 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-21/
####### 75 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-22/ #######
Retrieved 19 questions
linkstats 19 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-22/
####### 76 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-23/ #######
Retrieved 11 questions
linkstats 11 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-23/
####### 77 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-24/ #######
Retrieved 27 questions
linkstats 27 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-24/
####### 78 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-25/ #######
Retrieved 16 questions
linkstats 16 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-25/
####### 79 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-26/ #######
Retrieved 10 questions
linkstats 10 https://www.ccna7.com/introduction-to-linux-i/introduction-to-linux-i-chapter-26/
####### 80 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-linux-chapter-27/ #######
Retrieved 9 questions
linkstats 9 https://www.ccna7.com/introduction-to-linux-i/introduction-linux-chapter-27/
####### 81 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-linux-midterm-exam-modules-1-14/ #######
Retrieved 70 questions
linkstats 70 https://www.ccna7.com/introduction-to-linux-i/introduction-linux-midterm-exam-modules-1-14/
####### 82 of 325 #######
#######Success https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/ #######
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)
at initialize.exports.each (/home/mars/Documents/github/CCNAAnswerScrapper/node_modules/cheerio/lib/api/traversing.js:300:24)
at Scrapper.getExam (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:62:25)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
question has no title: https://www.ccna7.com/introduction-to-linux-i/introduction-linux-final-exam-modules-15-27/
####SelectorError__________ [ 'h3', 'div[class="ai-stem"]>strong', 'strong' ]
TypeError: titleEl.text is not a function
at Node.questionsEl.each (/home/mars/Documents/github/CCNAAnswerScrapper/Scrapper.js:71:45)