-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwritermcq.html
More file actions
983 lines (941 loc) · 21.8 KB
/
writermcq.html
File metadata and controls
983 lines (941 loc) · 21.8 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
<!doctype html>
<html>
<head>
<link rel="icon" type="image/png" href="images/logo.png"/>
<title>OneLiner HTML MSQs</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.main{
font-size: 1rem;
padding:0px 10px;
margin:auto;
justify-content:center;
}
* {
box-sizing:border-box;
}
body {
margin: 0px;
font-family: 'segoe ui';
}
.nav {
height: 53px;
width: 100%;
background-color: #1177ca;
position: relative;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #fff;
font-weight: 550;
font-family: Arial, Helvetica, sans-serif;
padding: 10px 10px 10px 10px;
}
/*to be appear in phones*/
.nav > .nav-btn {
display: none;
}
.nav{
position:fixed;
}
.nav > .nav-links {
display: inline;
float: right;
justify-content:right;
font-size: 18px;
height:50px;
}
.nav > .nav-links > ul li a{
display: block;
padding: 0 8px;
color: #fff;
line-height: 38px;
font-size: 18px;
text-decoration: none;
}
.nav > .nav-links > ul{
padding: 0;
margin-top: 5px;
list-style: none;
position: relative;
}
.nav > .nav-links > ul li{
display: inline-block;
background-color: #1177ca;
}
.nav > .nav-links > ul li:hover{
background-color: #0b65af;
border-radius: 5px;
}
.nav > #nav-check {
display: none;
}
.nav .nav-links ul a.icon{
margin-left: 80px;
margin-right: 10px;
}
.nav .nav-links ul a i{
background-color: #fff;
border-radius: 50px;
padding: 7px;
margin-left: 5px;
}
.container{
box-sizing:border-box;
width:100%;
}
.container div{
display:flex;
justify-content:center;
}
.container div ul li{
list-style:none;
}
@media (max-width:750px) {
.nav > .nav-btn {
display: inline-block;
position: absolute;
right: 0px;
top: 0px;
}
.nav > .nav-btn > label {
display: inline-block;
width: 50px;
height: 50px;
padding: 13px;
}
.nav > .nav-btn > label:hover,.nav #nav-check:checked ~ .nav-btn > label {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
display: block;
width: 25px;
height: 10px;
right:20px;
border-top: 2px solid #eee;
}
.nav > .nav-links {
position: absolute;
display: block;
width: 100%;
background-color: #333;
height: 0px;
transition: all 0.3s ease-in;
overflow-y: hidden;
top: 50px;
left: 0px;
}
.nav > .nav-links > ul li a {
display: block;
width: 100%;
}
.nav > .nav-links > ul li{
display: block;
margin-bottom: 20px;
padding: 0;
background-color: #333;
}
.nav > .nav-links > ul li a{
margin-left: 40%;
}
.nav .nav-links ul a.icon{
margin-left: 33%;
}
/* */
.nav > #nav-check:not(:checked) ~ .nav-links {
height: 0px;
}
.nav > #nav-check:checked ~ .nav-links {
height: calc(100vh - 50px);
overflow-y: auto;
}
.container div ul li{
list-style:none;
}
}
@media (max-width:480px){
.container div{
flex-direction:column;
justify-content:center;
}
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
<!--main jquery for mcqs-->
<!--first question-->
$(".ans").hide();
$(".but").click(function () {
$(this).text(function(i, v){
return v === 'View Answer' ? 'Hide Answer' : 'View Answer'
})
});
});
function show(q){
var a = document.getElementsByTagName("p");
var toggle = a[q].style.display;
if(toggle == "none"){
a[q].style.display = "block";
}
else{
a[q].style.display = "none";
}
}
</script>
</head>
<body>
<div class="container">
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<div class="nav-title">
OneLinerNotes
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<ul>
<li><a href="#" target="_blank">Home</a></li>
<li><a href="#" target="_blank">HTML</a></li>
<li><a href="#" target="_blank">CSS</a></li>
<li><a href="#" target="_blank">Javascript</a></li>
<li><a href="#" target="_blank">Java</a></li>
<li><a href="#" target="_blank">Mcqs</a></li>
<a class="icon">
<i class="fa fa-twitter"></i>
<i class="fa fa-linkedin"></i>
<i class="fa fa-youtube"></i>
</a>
</ul>
</div>
</div>
<center>
</div>
<div class="container">
<div class="main">
<table cellpadding="0" cellspacing="0">
<tr><td><br><br><br>
<h3>1)Line spacing refers to:</h3>
<ol type="A">
<li>The height of the line.</li>
<li>The length of the line.</li>
<li>Both A and B</li>
<li>The space between the lines of text.</li>
</ol>
<p class="ans">Correct answer : D</p>
<button class="but" onclick="show(0)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>2)what type of fonts are best suited for headlines and titles?</h3>
<ol type="A">
<li>Picture Fonts</li>
<li>Text fonts</li>
<li>Sans Serif Font</li>
<li>Liberation Serif</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(1)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>3)You can open a new window for current document using new window submenu of window menu in libreoffice writer.</h3>
<ol type="A">
<li>False</li>
<li>True</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(2)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>4)which menu has normal view sub menu in it?</h3>
<ol type="A">
<li>Tools</li>
<li>Fomat</li>
<li>View</li>
<li>Edit</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(3)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>5)Margins are the distances between the text and the edges of the paper?</h3>
<ol type="A">
<li>False</li>
<li>True</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(4)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>6)A window can be resized.</h3>
<ol type="A">
<li>False</li>
<li>True</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(5)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>7)Is wide screen page display suitable for the default screen page display?</h3>
<ol type="A">
<li>False</li>
<li>True</li>
</ol>
<p class="ans">Correct answer : remaining</p>
<button class="but" onclick="show(6)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>8)In libre office writer which of the following option is used to copy the style applied on the selected text?</h3>
<ol type="A">
<li>Clear Direct Formatting</li>
<li>Clone Formatting</li>
<li>Formatting marks</li>
<li>Copy</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(7)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>9)Which command is used to get file extension?</h3>
<ol type="A">
<li>Properties</li>
<li>Rename</li>
<li>Extension</li>
<li>Size</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(8)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>10)What is the term used when you press and hold left mouse key and move the mouse around the slide?</h3>
<ol type="A">
<li>Moving</li>
<li>Highlighting</li>
<li>Dragging</li>
<li>Monitoring</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(9)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>11)As you scroll in a document the insertion point also moves?</h3>
<ol type="A">
<li>False</li>
<li>True</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(10)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>12)When an image is selected it displays ,which of the following?</h3>
<ol type="A">
<li>body</li>
<li>8 sizing handles</li>
<li>6 boxes</li>
<li>6 middle handles</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(11)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>13)Which of the following is correct?</h3>
<ol type="A">
<li>The incorrect word appears in all capital letters.</li>
<li>The incorrect word has wavy red line under it.</li>
<li>The incorrect word appears bold.</li>
<li>The incorrect word appears italicized.</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(12)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>14)In font size drop down menu, which option is not available? </h3>
<ol type="A">
<li>24</li>
<li>19</li>
<li>12</li>
<li>10</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(13)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>15)Libreoffice is distributed under the OSI, What does OSI stands for?</h3>
<ol type="A">
<li>Opened source interchange</li>
<li>Open source initiative.</li>
<li>Open software Interchange.</li>
<li>Open Source Interchange.</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(14)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>16)Space between margin and paragraph?</h3>
<ol type="A">
<li>Line spacing</li>
<li>Index</li>
<li>Indent</li>
<li>Margin</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(15)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>17)What Ctrl+Shift+F5 do in libre office writer?</h3>
<ol type="A">
<li>Turn on navigator.</li>
<li>Turn off navigator.</li>
<li>Turn on spelling and grammerd</li>
<li>Go To</li>
</ol>
<p class="ans">Correct answer : D</p>
<button class="but" onclick="show(16)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>18)An html program read and analyzed by a ...?</h3>
<ol type="A">
<li>Compiler</li>
<li>Interpreter</li>
<li>Web Browser</li>
<li>Server</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(17)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>19)A url is composed of how many parts?</h3>
<ol type="A">
<li>2</li>
<li>3</li>
<li>1</li>
<li>4</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(18)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>20)The default page orientation of libreoffice
writer is?
</h3>
<ol type="A">
<li>Portrait</li>
<li>Landscape</li>
<li>Long Slide</li>
<li>Double Long Slide</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(19)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>21)A word processor automatically wraps any text
to extending beyond the right margin, to the next
line.
</h3>
<ol type="A">
<li>True</li>
<li>False</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(20)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>22)Right click on something in word?</h3>
<ol type="A">
<li>Open the shortcut list</li>
<li>Delete the object</li>
<li>Insert the picture</li>
<li>Nothing</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(21)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>23)What is the shortcut key for repeat?</h3>
<ol type="A">
<li>Ctrl+Shift+Y</li>
<li>Shift+R</li>
<li>Ctrl+alt+Y</li>
<li>Ctrl+L</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(22)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>24)Which key combination is used to increase
column width in libre office writer?
</h3>
<ol type="A">
<li>Alt+up arrow key</li>
<li>Alt+left arrow key</li>
<li>Alt+right arrow key</li>
<li>Alt+down arrow key</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(23)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>25)Html tag use to display images on the web?</h3>
<ol type="A">
<li>img</li>
<li>src</li>
<li>alt</li>
<li>Pic</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(24)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>26)Shortcut key for clear all formatting?</h3>
<ol type="A">
<li>Ctrl+P</li>
<li>Ctrl+M</li>
<li>Ctrl+L</li>
<li>Ctrl+F5</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(25)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>27)which key starts help program in all windows
application?
</h3>
<ol type="A">
<li>F5</li>
<li>F7</li>
<li>F2</li>
<li>F1</li>
</ol>
<p class="ans">Correct answer : D</p>
<button class="but" onclick="show(26)">View Answer</button>
</td>
</tr>
</tr>
<tr>
<td>
<h3>28)Toolbar option is present under view menu?</h3>
<ol type="A">
<li>True</li>
<li>False</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(27)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>29)In libre office writer track changes have option?</h3>
<ol type="A">
<li>Track Detail</li>
<li>Not record</li>
<li>Record</li>
<li>History</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(28)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>30)The common option is present under view and
insert menu?
</h3>
<ol type="A">
<li>True</li>
<li>False</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(29)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>31)You can copy character formatting by using?</h3>
<ol type="A">
<li>Selecting the text and pressing the delete key</li>
<li>Using the truetype fonts</li>
<li>Using clone formatting</li>
<li>Using the find command on the edit menu.</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(30)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>32)In libreoffice writer page number in the
document is displayed at right side of the status
bar?
</h3>
<ol type="A">
<li>True</li>
<li>False</li>
</ol>
<p class="ans">Correct answer : D</p>
<button class="but" onclick="show(31)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>33)What is the use of F7 in Libre office writer:</h3>
<ol type="A">
<li>Thesaurus</li>
<li>None</li>
<li>Table</li>
<li>Spelling error</li>
</ol>
<p class="ans">Correct answer : D</p>
<button class="but" onclick="show(32)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>34)which of the following is not present in word
count command of tools menu?
</h3>
<ol type="A">
<li>Page in the Entire Document</li>
<li>Characters Throughout The Document Except
Spaces</li>
<li>Word throughout the document.</li>
<li>Characters including Space throughout the
document.</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(33)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>35)Which of the following command is present
in media command of insert menu in libre office
writer?
</h3>
<ol type="A">
<li>Clipart</li>
<li>From File</li>
<li>Shapes</li>
<li>Gallery,Scan, Audio or Video</li>
</ol>
<p class="ans">Correct answer : D</p>
<button class="but" onclick="show(34)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>36)Which of the following option is not a command present in tools menu?</h3>
<ol type="A">
<li>Find</li>
<li>Arrows</li>
<li>Drawing</li>
<li>Edit</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(35)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>37)we can convert writer file to pdf using Shift+F9.</h3>
<ol type="A">
<li>True</li>
<li>False</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(36)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>38)on opening ms word on the left side book1-Ms
Word is present?
</h3>
<ol type="A">
<li>True</li>
<li>False</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(37)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>39)Default internal value of autosave in libre office
writer is?
</h3>
<ol type="A">
<li>20</li>
<li>15</li>
<li>10</li>
<li>25</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(38)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>40)Which option is not present in styles menu of
libre office writer?
</h3>
<ol type="A">
<li>Heading 4</li>
<li>Heading 1</li>
<li>Heading 3</li>
<li>Heading 2</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(39)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>41)which menu is used to create form in writer?</h3>
<ol type="A">
<li>Tools menu</li>
<li>Form menu</li>
<li>Format menu</li>
<li>Table Menu</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(40)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>42)what is also known as mailing list in ms word?</h3>
<ol type="A">
<li>Database List</li>
<li>Data source</li>
<li>Data sheet</li>
<li>None</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(41)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>43)On which page the header or footer is printed
by default?
</h3>
<ol type="A">
<li>Every Page</li>
<li>Home Page</li>
<li>First Page</li>
<li>Last Page</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(42)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>44)Shortcut key for text body?</h3>
<ol type="A">
<li>Ctrl+0</li>
<li>Ctrl+1</li>
<li>Ctrl+2</li>
<li>Ctrl+E</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(43)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>45)In Ms. Word break option consist of Page break
and column break,Section break.
</h3>
<ol type="A">
<li>True</li>
<li>False</li>
</ol>
<p class="ans">Correct answer : A</p>
<button class="but" onclick="show(44)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>46)To combine the width of a columns present in a
table we use?
</h3>
<ol type="A">
<li>Drag the Column markers on the table ruler bar.</li>
<li>Click table menu,Column width, then make
adjustment.</li>
<li>Drag the vertical gridline between two columns
and Drag the column markers on the table
ruler bar.</li>
<li>Drag the vertical gridline between two columns.</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(45)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>47)Which chart represent expenditure in different
department?
</h3>
<ol type="A">
<li>Line Chart</li>
<li>Area Chart</li>
<li>Pie chart</li>
<li>Dot chart</li>
</ol>
<p class="ans">Correct answer : C</p>
<button class="but" onclick="show(46)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>48)Shortcut for full screen in libre office writer is?</h3>
<ol type="A">
<li>Ctrl+Shift+I</li>
<li>Ctrl+Shift+J</li>
<li>Ctrl+Shift+F</li>
<li>Ctrl+Shift+F3</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(47)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>49)Which command is use to suspend a job?</h3>
<ol type="A">
<li>be</li>
<li>Ctrl+Z</li>
<li>Ctrl+W</li>
<li>$</li>
</ol>
<p class="ans">Correct answer : B</p>
<button class="but" onclick="show(48)">View Answer</button>
</td>
</tr>
<tr>
<td>
<h3>50)Toolbars and zoom option is present in which
menu?
</h3>
<ol type="A">
<li>File Menu</li>
<li>Data Menu</li>
<li>Tool Menu</li>
<li>view Menu</li>
</ol>
<p class="ans">Correct answer : D</p>
<button class="but" onclick="show(49)">View Answer</button>
</td>
</tr>
</table>
</div>
<div class="footer">
<footer style="background-color:#1177ca; color:white;">
<center>
<h3>Designed And Developed by Piyush Srivastava</h3>
<p>
Founder:Piyush Srivastava<br>
Bio:Piyush Srivastava is a A Level Certified Trainer, Trained 100+ Candidates in the field of Web Development and Programming Lanugages,An Open Source Contributer , contributed to 3+ Open source Projects, worked with clients like anythink form Wilco,Intern from IamHere software Lab,Suven Consultants,shine Projects. </p></center>
<div class="foot">
<div>
<ul>Social Links<hr><br>
<li>LinkedIn</li>
<li>Twitter</li>
<li>Email</li>
<li>Youtube</li>
</ul></div>
<div>
<ul>Courses<hr><br>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>LibreOffice</li>
<li>Java</li>
</ul></div>
<div>
<ul>Roadmaps:<hr><br>
<li>FrontEnd Development</li>
<li>Backend Development</li>
<li>Devops</li>
</ul></div>
<div>
<ul>Jobs<hr><br>
<li>Remote Jobs</li>
<li>Government Jobs</li>
<li>Internships</li>
</ul></div>
</div>
</footer>
<script type='text/javascript'>
(function(I, L, T, i, c, k, s) {if(I.iticks) return;I.iticks = {host:c, settings:s, clientId:k, cdn:L, queue:[]};var h = T.head || T.documentElement;var e = T.createElement(i);var l = I.location;e.async = true;e.src = (L||c)+'/client/inject-v2.min.js';h.insertBefore(e, h.firstChild);I.iticks.call = function(a, b) {I.iticks.queue.push([a, b]);};})(window, 'https://cdn-v1.intelliticks.com/prod/common', document, 'script', 'https://app.intelliticks.com', 'yzXX7ENtB2Q7yZkCa_c', {});
</script>
</div>
</div>
</body>
</html>