-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset3.html
More file actions
1004 lines (995 loc) · 53.7 KB
/
Copy pathset3.html
File metadata and controls
1004 lines (995 loc) · 53.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CCC PLUS Advanced Question Bank</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- React and ReactDOM CDN -->
<script src="https://cdn.jsdelivr.net/npm/react@18/umd/react.production.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/react-dom@18/umd/react-dom.production.min.js"></script>
<!-- Babel for JSX support -->
<script src="https://cdn.jsdelivr.net/npm/@babel/standalone/babel.min.js"></script>
<style>
@media print {
.no-print { display: none; }
body { background: white; margin: 0; padding: 0; }
.container { padding: 20px; }
.page-break { page-break-before: always; }
}
body { font-family: Arial, sans-serif; }
</style>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
function CCCAdvancedQuestionsDoc() {
return (
<div className="max-w-4xl mx-auto p-8 bg-white min-h-screen">
<div className="mb-6 text-center border-b-2 border-gray-800 pb-4">
<h1 className="text-3xl font-bold text-gray-900 mb-2">CCC PLUS EXAMINATION</h1>
<h2 className="text-xl font-semibold text-gray-700">Advanced Question Bank</h2>
</div>
<div className="space-y-6">
{/* Computer Fundamentals (Advanced) */}
<section className="mb-8">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Computer Fundamentals (Advanced)</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">1. Which component resolves the bottleneck in von Neumann architecture by separating instruction and data caches?</p>
<div className="ml-6 space-y-1">
<p>a) Northbridge</p>
<p>b) Harvard architecture</p>
<p>c) BIOS</p>
<p>d) ALU</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Harvard architecture</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">2. If a 32-bit system uses 4 KB pages, how many entries are needed in a flat page table for full virtual address space?</p>
<div className="ml-6 space-y-1">
<p>a) 1,048,576</p>
<p>b) 1,024</p>
<p>c) 4,096</p>
<p>d) 16,777,216</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) 1,048,576</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">3. Which memory type is used in SSDs for persistent storage?</p>
<div className="ml-6 space-y-1">
<p>a) DRAM</p>
<p>b) SRAM</p>
<p>c) NAND Flash</p>
<p>d) EEPROM</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) NAND Flash</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">4. What is the primary purpose of ECC memory?</p>
<div className="ml-6 space-y-1">
<p>a) Increase speed</p>
<p>b) Reduce power consumption</p>
<p>c) Detect and correct bit errors</p>
<p>d) Enable overclocking</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Detect and correct bit errors</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">5. In binary, what is the two’s complement of 0101?</p>
<div className="ml-6 space-y-1">
<p>a) 1010</p>
<p>b) 1011</p>
<p>c) 0101</p>
<p>d) 1111</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) 1011</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">6. Which bus connects CPU to RAM in modern systems?</p>
<div className="ml-6 space-y-1">
<p>a) PCIe</p>
<p>b) SATA</p>
<p>c) Front Side Bus (FSB)</p>
<p>d) DMI</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Front Side Bus (FSB)</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">7. A nibble can represent values from:</p>
<div className="ml-6 space-y-1">
<p>a) 0 to 7</p>
<p>b) 0 to 15</p>
<p>c) 0 to 255</p>
<p>d) -8 to +7</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) 0 to 15</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">8. Which generation introduced microprocessors?</p>
<div className="ml-6 space-y-1">
<p>a) First</p>
<p>b) Second</p>
<p>c) Third</p>
<p>d) Fourth</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: d) Fourth</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">9. RAID 1 provides:</p>
<div className="ml-6 space-y-1">
<p>a) Striping</p>
<p>b) Mirroring</p>
<p>c) Parity</p>
<p>d) Compression</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Mirroring</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">10. What does BIOS do during POST?</p>
<div className="ml-6 space-y-1">
<p>a) Loads OS from disk</p>
<p>b) Checks hardware functionality</p>
<p>c) Connects to Wi-Fi</p>
<p>d) Runs antivirus scan</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Checks hardware functionality</p>
</div>
</div>
</section>
{/* Operating System (Advanced) */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Operating System and File Management (Advanced)</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">11. What is the key difference between a process and a thread?</p>
<div className="ml-6 space-y-1">
<p>a) Threads share memory; processes do not</p>
<p>b) Processes are faster</p>
<p>c) Threads cannot be scheduled</p>
<p>d) Processes use less RAM</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Threads share memory; processes do not</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">12. Which file system supports file-level encryption in Windows?</p>
<div className="ml-6 space-y-1">
<p>a) FAT32</p>
<p>b) exFAT</p>
<p>c) NTFS</p>
<p>d) ext4</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) NTFS</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">13. What happens when you delete a file using Shift + Delete in Windows?</p>
<div className="ml-6 space-y-1">
<p>a) It goes to Recycle Bin</p>
<p>b) It is permanently deleted but recoverable via tools</p>
<p>c) It is encrypted</p>
<p>d) It is moved to cloud</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) It is permanently deleted but recoverable via tools</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">14. Virtual memory uses:</p>
<div className="ml-6 space-y-1">
<p>a) Cache only</p>
<p>b) Hard disk as extension of RAM</p>
<p>c) GPU memory</p>
<p>d) ROM</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Hard disk as extension of RAM</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">15. Which command lists all files including hidden ones in Linux?</p>
<div className="ml-6 space-y-1">
<p>a) ls</p>
<p>b) dir</p>
<p>c) ls -a</p>
<p>d) list /all</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) ls -a</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">16. What is the purpose of a swap file?</p>
<div className="ml-6 space-y-1">
<p>a) Store temporary internet files</p>
<p>b) Extend virtual memory</p>
<p>c) Backup user data</p>
<p>d) Compress disk space</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Extend virtual memory</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">17. In Windows, which folder stores user-specific application data?</p>
<div className="ml-6 space-y-1">
<p>a) Program Files</p>
<p>b) AppData</p>
<p>c) System32</p>
<p>d) Temp</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) AppData</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">18. What does defragmentation do?</p>
<div className="ml-6 space-y-1">
<p>a) Deletes duplicate files</p>
<p>b) Reorganizes fragmented data for faster access</p>
<p>c) Encrypts files</p>
<p>d) Compresses disk</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Reorganizes fragmented data for faster access</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">19. Which key combination opens Task Manager directly?</p>
<div className="ml-6 space-y-1">
<p>a) Ctrl + Alt + Del</p>
<p>b) Ctrl + Shift + Esc</p>
<p>c) Alt + F4</p>
<p>d) Win + R</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Ctrl + Shift + Esc</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">20. What is the default permission for a new file in Linux?</p>
<div className="ml-6 space-y-1">
<p>a) 777</p>
<p>b) 644</p>
<p>c) 666</p>
<p>d) 755</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) 644</p>
</div>
</div>
</section>
{/* Word Processing (Advanced) */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Word Processing (Advanced)</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">21. Which feature allows automatic updating of figure captions in Writer/Word?</p>
<div className="ml-6 space-y-1">
<p>a) Mail Merge</p>
<p>b) Cross-reference</p>
<p>c) Styles</p>
<p>d) Table of Contents</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Cross-reference</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">22. What does “Keep with next” paragraph setting do?</p>
<div className="ml-6 space-y-1">
<p>a) Prevents page break between paragraph and next</p>
<p>b) Copies paragraph to next page</p>
<p>c) Links to next document</p>
<p>d) Deletes next paragraph</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Prevents page break between paragraph and next</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">23. Which file format preserves formatting across platforms best?</p>
<div className="ml-6 space-y-1">
<p>a) .txt</p>
<p>b) .doc</p>
<p>c) .odt</p>
<p>d) .pdf</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: d) .pdf</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">24. What is the purpose of “Track Changes”?</p>
<div className="ml-6 space-y-1">
<p>a) Monitor document size</p>
<p>b) Record edits for review</p>
<p>c) Auto-save every change</p>
<p>d) Encrypt changes</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Record edits for review</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">25. How do you insert a non-breaking space in Writer?</p>
<div className="ml-6 space-y-1">
<p>a) Ctrl + Space</p>
<p>b) Ctrl + Shift + Space</p>
<p>c) Alt + Space</p>
<p>d) Insert → Special Character</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Ctrl + Shift + Space</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">26. Which style controls the appearance of headings in TOC?</p>
<div className="ml-6 space-y-1">
<p>a) Body Text</p>
<p>b) Heading 1, Heading 2, etc.</p>
<p>c) Caption</p>
<p>d) Default</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Heading 1, Heading 2, etc.</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">27. What does “Orphan control” prevent?</p>
<div className="ml-6 space-y-1">
<p>a) Single line at bottom of page</p>
<p>b) Single line at top of page</p>
<p>c) Blank pages</p>
<p>d) Image overflow</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Single line at top of page</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">28. Which menu contains “Footnotes and Endnotes”?</p>
<div className="ml-6 space-y-1">
<p>a) Edit</p>
<p>b) Insert</p>
<p>c) Format</p>
<p>d) Tools</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Insert</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">29. What is the shortcut to paste without formatting?</p>
<div className="ml-6 space-y-1">
<p>a) Ctrl + V</p>
<p>b) Ctrl + Shift + V</p>
<p>c) Alt + V</p>
<p>d) Ctrl + Alt + V</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Ctrl + Shift + V</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">30. Which feature converts handwritten notes to text in modern Word?</p>
<div className="ml-6 space-y-1">
<p>a) OCR</p>
<p>b) Ink to Text</p>
<p>c) Smart Lookup</p>
<p>d) Dictation</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Ink to Text</p>
</div>
</div>
</section>
{/* Spreadsheet (Advanced) */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Spreadsheet (Advanced)</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">31. What does =VLOOKUP(100, A1:D10, 3, FALSE) return if 100 is not found?</p>
<div className="ml-6 space-y-1">
<p>a) 0</p>
<p>b) #N/A</p>
<p>c) Blank</p>
<p>d) Last value</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) #N/A</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">32. Which function counts non-blank cells?</p>
<div className="ml-6 space-y-1">
<p>a) COUNT</p>
<p>b) COUNTA</p>
<p>c) COUNTBLANK</p>
<p>d) SUM</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) COUNTA</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">33. What is absolute referencing?</p>
<div className="ml-6 space-y-1">
<p>a) Using $A$1 to lock cell reference</p>
<p>b) Linking to another sheet</p>
<p>c) Copying values only</p>
<p>d) Using named ranges</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Using $A$1 to lock cell reference</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">34. Which error appears if a formula divides by zero?</p>
<div className="ml-6 space-y-1">
<p>a) #VALUE!</p>
<p>b) #REF!</p>
<p>c) #DIV/0!</p>
<p>d) #NAME?</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) #DIV/0!</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">35. What does =IFERROR(A1/B1, "Error") do?</p>
<div className="ml-6 space-y-1">
<p>a) Returns “Error” if division fails</p>
<p>b) Stops calculation</p>
<p>c) Highlights cell red</p>
<p>d) Logs error in another sheet</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Returns “Error” if division fails</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">36. Which chart best shows part-to-whole relationship?</p>
<div className="ml-6 space-y-1">
<p>a) Line</p>
<p>b) Bar</p>
<p>c) Pie</p>
<p>d) Scatter</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Pie</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">37. What is the result of =ROUND(3.14159, 2)?</p>
<div className="ml-6 space-y-1">
<p>a) 3.14</p>
<p>b) 3.142</p>
<p>c) 3</p>
<p>d) 3.1</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) 3.14</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">38. How do you freeze the top row in Calc/Excel?</p>
<div className="ml-6 space-y-1">
<p>a) View → Freeze Panes</p>
<p>b) Format → Lock Row</p>
<p>c) Tools → Freeze</p>
<p>d) Right-click → Freeze</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) View → Freeze Panes</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">39. What does =SUMIF(A1:A10, ">50", B1:B10) do?</p>
<div className="ml-6 space-y-1">
<p>a) Sums B1:B10 where A1:A10 > 50</p>
<p>b) Counts cells >50</p>
<p>c) Multiplies A and B</p>
<p>d) Averages B1:B10</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Sums B1:B10 where A1:A10 > 50</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">40. Which format code shows 1500 as “1.5K”?</p>
<div className="ml-6 space-y-1">
<p>a) 0.0,"K"</p>
<p>b) #,##0</p>
<p>c) 0.00E+00</p>
<p>d) Not possible</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) 0.0,"K"</p>
</div>
</div>
</section>
{/* Internet & Communication (Advanced) */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Internet and Communication (Advanced)</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">41. Which protocol encrypts HTTP traffic?</p>
<div className="ml-6 space-y-1">
<p>a) FTP</p>
<p>b) SMTP</p>
<p>c) HTTPS</p>
<p>d) DNS</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) HTTPS</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">42. What does a DNS server do?</p>
<div className="ml-6 space-y-1">
<p>a) Assigns IP addresses</p>
<p>b) Converts domain names to IP addresses</p>
<p>c) Filters spam</p>
<p>d) Hosts websites</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Converts domain names to IP addresses</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">43. Which port does HTTPS use by default?</p>
<div className="ml-6 space-y-1">
<p>a) 80</p>
<p>b) 443</p>
<p>c) 25</p>
<p>d) 21</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) 443</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">44. What is a cookie in web browsing?</p>
<div className="ml-6 space-y-1">
<p>a) A virus</p>
<p>b) Small data stored by website on user’s device</p>
<p>c) A type of ad</p>
<p>d) Browser setting</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Small data stored by website on user’s device</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">45. Which is NOT a valid IPv4 address?</p>
<div className="ml-6 space-y-1">
<p>a) 192.168.1.1</p>
<p>b) 255.255.255.255</p>
<p>c) 300.40.50.60</p>
<p>d) 127.0.0.1</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) 300.40.50.60</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">46. What is the purpose of incognito mode?</p>
<div className="ml-6 space-y-1">
<p>a) Hide IP address</p>
<p>b) Prevent local storage of history/cookies</p>
<p>c) Encrypt traffic</p>
<p>d) Block ads</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Prevent local storage of history/cookies</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">47. Which technology enables real-time video calls over the internet?</p>
<div className="ml-6 space-y-1">
<p>a) VoIP</p>
<p>b) FTP</p>
<p>c) SMTP</p>
<p>d) POP3</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) VoIP</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">48. What is a QR code phishing attack called?</p>
<div className="ml-6 space-y-1">
<p>a) Smishing</p>
<p>b) Vishing</p>
<p>c) Quishing</p>
<p>d) Pharming</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Quishing</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">49. Which header field prevents clickjacking?</p>
<div className="ml-6 space-y-1">
<p>a) Content-Type</p>
<p>b) X-Frame-Options</p>
<p>c) Cache-Control</p>
<p>d) User-Agent</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) X-Frame-Options</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">50. What does CDN stand for?</p>
<div className="ml-6 space-y-1">
<p>a) Central Data Network</p>
<p>b) Content Delivery Network</p>
<p>c) Computer Distribution Node</p>
<p>d) Cloud Data Node</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Content Delivery Network</p>
</div>
</div>
</section>
{/* Digital Financial Services & Cybersecurity (Advanced) */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Digital Financial Services & Cybersecurity (Advanced)</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">51. Which UPI feature allows recurring payments?</p>
<div className="ml-6 space-y-1">
<p>a) UPI Collect</p>
<p>b) UPI AutoPay</p>
<p>c) UPI Lite</p>
<p>d) UPI QR</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) UPI AutoPay</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">52. What is the maximum transaction limit per UPI transaction (as of 2024)?</p>
<div className="ml-6 space-y-1">
<p>a) ₹10,000</p>
<p>b) ₹1,00,000</p>
<p>c) ₹2,00,000</p>
<p>d) ₹5,00,000</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) ₹1,00,000</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">53. Which attack tricks users into revealing OTPs via fake customer care calls?</p>
<div className="ml-6 space-y-1">
<p>a) Phishing</p>
<p>b) Vishing</p>
<p>c) Smishing</p>
<p>d) Ransomware</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Vishing</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">54. What does 2FA stand for?</p>
<div className="ml-6 space-y-1">
<p>a) Two-Factor Authentication</p>
<p>b) Two-Factor Authorization</p>
<p>c) Two-Factor Access</p>
<p>d) Two-Factor Agreement</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Two-Factor Authentication</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">55. Which is a secure practice for UPI?</p>
<div className="ml-6 space-y-1">
<p>a) Share UPI PIN with family</p>
<p>b) Use public Wi-Fi for payments</p>
<p>c) Never share OTP or UPI PIN</p>
<p>d) Save UPI PIN in notes</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Never share OTP or UPI PIN</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">56. What is the purpose of a digital signature?</p>
<div className="ml-6 space-y-1">
<p>a) Compress files</p>
<p>b) Verify authenticity and integrity</p>
<p>c) Encrypt passwords</p>
<p>d) Speed up transactions</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Verify authenticity and integrity</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">57. Which law governs digital transactions in India?</p>
<div className="ml-6 space-y-1">
<p>a) IPC</p>
<p>b) IT Act, 2000</p>
<p>c) RBI Act</p>
<p>d) Consumer Protection Act</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) IT Act, 2000</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">58. What is ransomware?</p>
<div className="ml-6 space-y-1">
<p>a) Software that encrypts files and demands payment</p>
<p>b) Adware</p>
<p>c) Browser extension</p>
<p>d) Antivirus</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Software that encrypts files and demands payment</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">59. Which is NOT a principle of cybersecurity?</p>
<div className="ml-6 space-y-1">
<p>a) Confidentiality</p>
<p>b) Integrity</p>
<p>c) Availability</p>
<p>d) Profitability</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: d) Profitability</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">60. What should you do if you receive a suspicious UPI collect request?</p>
<div className="ml-6 space-y-1">
<p>a) Approve it quickly</p>
<p>b) Ignore and report</p>
<p>c) Share with friends</p>
<p>d) Call the number in request</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Ignore and report</p>
</div>
</div>
</section>
{/* General & Emerging Tech */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">General & Emerging Technologies</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">61. What is cloud storage?</p>
<div className="ml-6 space-y-1">
<p>a) Storing data on remote servers accessed via internet</p>
<p>b) Using USB drives</p>
<p>c) Saving on desktop</p>
<p>d) Printing documents</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Storing data on remote servers accessed via internet</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">62. Which is a risk of public Wi-Fi?</p>
<div className="ml-6 space-y-1">
<p>a) Slow speed</p>
<p>b) Man-in-the-middle attacks</p>
<p>c) High cost</p>
<p>d) Limited apps</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Man-in-the-middle attacks</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">63. What does AI bias refer to?</p>
<div className="ml-6 space-y-1">
<p>a) AI running slowly</p>
<p>b) Unfair outcomes due to skewed training data</p>
<p>c) AI not connecting to internet</p>
<p>d) High electricity usage</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Unfair outcomes due to skewed training data</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">64. Which service offers free cloud storage from Google?</p>
<div className="ml-6 space-y-1">
<p>a) OneDrive</p>
<p>b) iCloud</p>
<p>c) Google Drive</p>
<p>d) Dropbox Basic</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Google Drive</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">65. What is biometric authentication?</p>
<div className="ml-6 space-y-1">
<p>a) Password-based login</p>
<p>b) Using fingerprint, face, or iris</p>
<p>c) SMS verification</p>
<p>d) Security questions</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Using fingerprint, face, or iris</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">66. What is the main advantage of open-source software?</p>
<div className="ml-6 space-y-1">
<p>a) Free to use and modify</p>
<p>b) Better graphics</p>
<p>c) Always virus-free</p>
<p>d) Faster than proprietary</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Free to use and modify</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">67. Which is an example of SaaS?</p>
<div className="ml-6 space-y-1">
<p>a) Windows OS</p>
<p>b) Gmail</p>
<p>c) LibreOffice</p>
<p>d) Ubuntu</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Gmail</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">68. What is digital footprint?</p>
<div className="ml-6 space-y-1">
<p>a) Physical shoe print</p>
<p>b) Data trail left by online activity</p>
<p>c) File size</p>
<p>d) Screen resolution</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Data trail left by online activity</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">69. Which practice enhances online privacy?</p>
<div className="ml-6 space-y-1">
<p>a) Using same password everywhere</p>
<p>b) Enabling two-factor authentication</p>
<p>c) Clicking unknown links</p>
<p>d) Sharing location publicly</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Enabling two-factor authentication</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">70. What is ethical hacking?</p>
<div className="ml-6 space-y-1">
<p>a) Stealing data</p>
<p>b) Hacking with permission to find vulnerabilities</p>
<p>c) Creating viruses</p>
<p>d) Spamming emails</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Hacking with permission to find vulnerabilities</p>
</div>
</div>
</section>
{/* Scenario-Based & Application Questions */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Scenario-Based & Application Questions</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">71. You receive an email claiming your bank account is locked and asking you to click a link to verify. What should you do?</p>
<div className="ml-6 space-y-1">
<p>a) Click the link immediately</p>
<p>b) Forward to friends</p>
<p>c) Delete and report as phishing</p>
<p>d) Call the number in the email</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Delete and report as phishing</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">72. In a spreadsheet, sales data from Jan–Dec is in B2:B13. Which formula calculates average sales?</p>
<div className="ml-6 space-y-1">
<p>a) =SUM(B2:B13)</p>
<p>b) =AVERAGE(B2:B13)</p>
<p>c) =MEAN(B2:B13)</p>
<p>d) =TOTAL(B2:B13)/12</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) =AVERAGE(B2:B13)</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">73. Your document has 50 pages. How do you ensure each chapter starts on a new right-hand page?</p>
<div className="ml-6 space-y-1">
<p>a) Insert page break</p>
<p>b) Use “Odd Page” section break</p>
<p>c) Press Enter 50 times</p>
<p>d) Change margins</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Use “Odd Page” section break</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">74. A file named “report.odt” won’t open in MS Word. Why?</p>
<div className="ml-6 space-y-1">
<p>a) It’s a LibreOffice format; Word may not support it fully</p>
<p>b) File is corrupted</p>
<p>c) Word doesn’t exist</p>
<p>d) Requires password</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) It’s a LibreOffice format; Word may not support it fully</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">75. You need to send a large video file (>25 MB). What is the best method?</p>
<div className="ml-6 space-y-1">
<p>a) Attach to email</p>
<p>b) Upload to cloud and share link</p>
<p>c) Print and courier</p>
<p>d) Send via WhatsApp</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Upload to cloud and share link</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">76. After formatting a USB drive, you realize important files were on it. Can they be recovered?</p>
<div className="ml-6 space-y-1">
<p>a) Never</p>
<p>b) Only if not overwritten</p>
<p>c) Always</p>
<p>d) Only by police</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Only if not overwritten</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">77. Your computer is slow. Which is NOT a likely cause?</p>
<div className="ml-6 space-y-1">
<p>a) Too many startup programs</p>
<p>b) Low disk space</p>
<p>c) Using dark mode</p>
<p>d) Malware infection</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: c) Using dark mode</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">78. You’re on a public computer. What should you avoid?</p>
<div className="ml-6 space-y-1">
<p>a) Logging into personal accounts</p>
<p>b) Using incognito mode</p>
<p>c) Clearing history after use</p>
<p>d) Using calculator</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: a) Logging into personal accounts</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">79. Which password is strongest?</p>
<div className="ml-6 space-y-1">
<p>a) password123</p>
<p>b) P@ssw0rd!2024</p>
<p>c) 12345678</p>
<p>d) iloveyou</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) P@ssw0rd!2024</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">80. You receive a UPI request from an unknown VPA. What should you do?</p>
<div className="ml-6 space-y-1">
<p>a) Approve it</p>
<p>b) Reject and block</p>
<p>c) Call the VPA</p>
<p>d) Share your PIN</p>
</div>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: b) Reject and block</p>
</div>
</div>
</section>
{/* True/False (Advanced) */}
<section className="mb-8 page-break">
<h3 className="text-xl font-bold text-gray-900 mb-4 bg-gray-100 p-2 rounded">Advanced True/False</h3>
<div className="space-y-4">
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">81. Cache memory is faster than RAM. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">82. Virtual memory can be larger than physical RAM. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">83. HTTPS guarantees a website is safe from malware. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">84. UPI transactions are reversible by the user. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">85. Formatting a drive permanently erases all data beyond recovery. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">86. Cloud storage is always free. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">87. Incognito mode hides your activity from your ISP. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">88. All open-source software is free of cost. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">89. A firewall can prevent all types of cyberattacks. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">90. Biometric data can be changed if compromised. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">91. IPv6 has 128-bit addresses. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">92. The Recycle Bin uses disk space. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">93. Ctrl + Shift + N creates a new folder in Windows. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">94. PDF files cannot contain viruses. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">95. UPI works without internet. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">96. A strong password should include uppercase, lowercase, numbers, and symbols. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">97. LibreOffice is an example of proprietary software. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">98. The “sudo” command in Linux grants temporary admin rights. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">99. QR codes can execute code on your phone. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: False</p>
</div>
<div className="mb-4">
<p className="font-bold text-gray-900 mb-2">100. Digital literacy includes understanding online safety and ethics. (True/False)</p>
<p className="ml-6 mt-2 text-green-700 font-semibold">Answer: True</p>
</div>
</div>
</section>
{/* Footer */}
<div className="mt-12 pt-6 border-t-2 border-gray-300 text-center text-gray-600">
<p className="font-semibold">Total Questions: 100 (Advanced Level)</p>
<p className="mt-2 text-sm">Prepared for CCC PLUS Examination – Enhanced Difficulty</p>
<p className="mt-2 text-sm">© 2025 NIELIT. All rights reserved.</p>
</div>
</div>
{/* Print Button */}
<div className="no-print mt-8 text-center">
<button
onClick={() => window.print()}
className="bg-blue-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-blue-700 transition-colors"
>
Print/Save as PDF
</button>
<p className="mt-4 text-sm text-gray-600">
Click the Print button or press Ctrl+P to save as PDF or print this document
</p>
</div>
</div>
);
}
const root = ReactDOM.createRoot(document.getElementById('root'));