MCQ 11 MarkWhich command displays a message on the screen ?✓EchoBEgoC DispDDisplayAnswerCorrect option: A. EchoEchoView full question & answer→
MCQ 21 MarkTwo command can be joined using which symbol ?✓$|$(pipe)B$ \#$(hash)C$@$D$ \%$AnswerCorrect option: A. $|$(pipe) | (pipe)View full question & answer→
MCQ 31 MarkWhich command is called a filter command ?AWho BClearCEcho ✓CutAnswerCorrect option: D. CutCutView full question & answer→
MCQ 41 MarkFor a script to be executed it needs to have …………… permission.✓execute BreadCwriteDall of theseAnswerCorrect option: A. execute executeView full question & answer→
MCQ 51 MarkWhich command is used to execute the script use sh or bash command ?AshBbashCksh✓Both(A)and(B)AnswerCorrect option: D. Both(A)and(B)Both $(A)$ and $(B)$View full question & answer→
MCQ 61 Mark…………… in the script is not executed.AshellscriptBVariable✓CommentDBlockAnswerCorrect option: C. CommentCommentView full question & answer→
MCQ 71 MarkA comment in Ubuntu Linux is begins with which symbol ?✓$ \#$B$?$C$ \$$D$@$AnswerCorrect option: A. $ \#$A. #View full question & answer→
MCQ 81 MarkIn Vim editor which command is used to delete the character under the cursor $?$A$R$B$r$✓$x$D$X$AnswerCorrect option: C. $x$$ x$View full question & answer→
MCQ 91 MarkWhat is defined as “set of commands written in plain text file that performs a designated task in a controlled order “✓shellscriptBVariable CComment DBlockAnswerCorrect option: A. shellscript shell scriptView full question & answer→
MCQ 101 MarkWhat allows us to execute more than one command at one go in a better way ?✓shellscript BVariableCForloopDBlockAnswerCorrect option: A. shellscript shell scriptView full question & answer→
MCQ 111 Mark…………. The document is one of the most common operations that a user would perform once the document is created .ASkipping✓EditingCCompilingDinsertingAnswerCorrect option: B. Editing EditingView full question & answer→
MCQ 121 MarkIn Vim editor which command moves to first line of file $?$A$Nb$✓$gg$C$b$D$B$AnswerCorrect option: B. $gg$$ gg$View full question & answer→
MCQ 131 MarkIn Vim editor which command is used to replace single character$ ?$A$R$✓$r$C$x$D$X$AnswerCorrect option: B. $r$$ r$View full question & answer→
MCQ 141 MarkWhich of the following syntax is used to substitute all occurances of phrase $1$ with phrase $2$ in the current line $?$A$\text{:\%s/phrase1/phrase2/g}$B$\text{:\%s/phrase1/phrase2/gc}$✓$\text{:s/phrase1/phrase2/g}$D$\text{:s/phrase1/phrase2/gc}$AnswerCorrect option: C. $\text{:s/phrase1/phrase2/g}$$\text{:s/phrase1 /phrase2/g}$View full question & answer→
MCQ 151 MarkIn Vim editor which command is used to replace single character$ ?$A$R$B$r$✓$x$D$X$AnswerCorrect option: C. $x$$ x$View full question & answer→
MCQ 161 MarkIn Vim editor which command is used to Delete single line ?A$U$✓$u$C$C$D$dd$AnswerCorrect option: B. $u$$ u$View full question & answer→
MCQ 171 MarkIn Vim editor which command is used to delete $N$ number of word $?$A$cw$✓$Ndw$C$dw$D$Ndd$AnswerCorrect option: B. $Ndw$$Ndw$View full question & answer→
MCQ 181 MarkIn Vim editor which command is used to delete one word $?$A$cw$B$Ndw$✓$dw$D$Ndd$AnswerCorrect option: C. $dw$$dw$View full question & answer→
MCQ 191 MarkIn Vim editor which command is used to earch for text in a backward direction$ ?$A$/$✓$?$C$n$D$SHIFT+n$AnswerCorrect option: B. $?$$?$View full question & answer→
MCQ 201 MarkIn Vim editor which command is used to overwrite substitute one character under cursor and continue to insert ?✓$s $B$S$C$x$D$X$AnswerCorrect option: A. $s $$s$View full question & answer→
MCQ 211 MarkThe Vim editor allows to ……Asearch text or a regular expression within the fileBsubstitution of a word in place of another wordCnone of these✓Both $(A)$ and $(B)$AnswerCorrect option: D. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 221 MarkIn Vim editor which command is used to overwrite characters from cursor onward ?✓$R$B$r$C$x $D$X$AnswerCorrect option: A. $R$$R$View full question & answer→
MCQ 231 MarkIn Vim editor which command is used to delete content of line after cursor and insert new text ?✓$D$B$dd$C$C$D$Ndd$AnswerCorrect option: A. $D$$ D$View full question & answer→
MCQ 241 MarkIn Vim editor which command is used which to delete number of lines ?✓$ U$B$u$C$C$D$Ndd$AnswerCorrect option: A. $ U$$ U$View full question & answer→
MCQ 251 MarkIn Vim editor which command is used to copy single line from current cursor position into the buffer ?A$p$B$yy$C$Nyy$✓$Yy$AnswerCorrect option: D. $Yy$$ Yy$View full question & answer→
MCQ 261 MarkIn Vim editor which command is used to place contents of buffer after current line defined by current cursor position ?✓$p $B$yy$C$Nyy $D$x$AnswerCorrect option: A. $p $$p$View full question & answer→
MCQ 271 MarkIn Vim editor which command moves the cursor back by $N$ number of words ?✓$Nb$B$e$C$b$D$B$AnswerCorrect option: A. $Nb$$ Nb$View full question & answer→
MCQ 281 MarkBuffer Which acts like temporary memory is known as ….✓clipboardBhard disk Csmart memory DpendriveAnswerCorrect option: A. clipboard clipboardView full question & answer→
MCQ 291 MarkIn Vim editor which command is used to search again in the opposite direction ?A$/$B$?$C$n$✓$SHIFT+n$AnswerCorrect option: D. $SHIFT+n$$ SHIFT + n$View full question & answer→
MCQ 301 MarkIn Vim editor which command moves the cursor to end of file ?A$) $B$($✓$G$D$W$AnswerCorrect option: C. $G$$ G$View full question & answer→
MCQ 311 Mark………… in the script is not executed; they are messeges that help user understand the usage or meaning of the script.AshellscriptBVariable✓CommentDBlockAnswerCorrect option: C. Comment CommentView full question & answer→
MCQ 321 MarkIn Vim editor which command moves the cursor to the beginmng of current sentence ?A$)$✓$($C$G$D$W$AnswerCorrect option: B. $($$ ($View full question & answer→
MCQ 331 MarkIn Vim editor which command is used to change case of individual character ?A.(dot)✓ ~C@D%AnswerCorrect option: B. ~ ~View full question & answer→
MCQ 341 MarkIn Vim editor which command is used to undo last change ?A$U$✓$u$C$C$D$dd$AnswerCorrect option: B. $u$$ u$View full question & answer→
MCQ 351 MarkTo execute the Linux commands from within the Vim editor type …… symbol before the command.A%✓!C?D#AnswerCorrect option: B. ! !View full question & answer→
MCQ 361 MarkIn Vim editor which command moves the cursor to the beginmng of next sentence ?✓$)$B$($C$G $D$W$AnswerCorrect option: A. $)$$ )$View full question & answer→
MCQ 371 MarkIn Vim editor which command moves the cursor back a word at a time ?A$Nb$B$e$C$c$✓$B$AnswerCorrect option: D. $B$$ B$View full question & answer→
MCQ 381 MarkIn Vim editor Which command moves cursor up in first column ?A-✓+C*D/AnswerCorrect option: B. + +View full question & answer→
MCQ 391 MarkIn Vim editor which command moves the cursor to the bottom of the page ?A$M$B$H$✓$L$D$\$$AnswerCorrect option: C. $L$$ L$View full question & answer→
MCQ 401 MarkWhen Vim editor is opened without typing file name initially , the text will be directly stored in the ……….✓system buffer Bhard diskCregister DbusAnswerCorrect option: A. system buffer system bufferView full question & answer→
MCQ 411 MarkIn Vim editor which command moves the cursor to the middle of the page ?✓$M$B$H$C$L$D$\$$AnswerCorrect option: A. $M$$ M$View full question & answer→
MCQ 421 MarkIn Vim editor which command scrolls forward one page ?A$CTRL+d$B$CTRL+u$✓$Ctrl+f $D$ CTRL+b$AnswerCorrect option: C. $Ctrl+f $$ Ctrl + f$View full question & answer→
MCQ 431 MarkIn Vim editor which command is used to repeat last command action ?✓.(dot) B~C@D%AnswerCorrect option: A. .(dot) (dot)View full question & answer→
MCQ 441 MarkIn Vim editor which command scrolls down one half of a page ?✓$CTRL+d$B$CTRL+u$C$Ctrl+f $D$ CTRL+b$AnswerCorrect option: A. $CTRL+d$$ CTRL + d$View full question & answer→
MCQ 451 MarkIn file in Vim editor which command moves curser to down?A$h$B$I $ ✓$J$D$k$AnswerCorrect option: C. $J$$ J$View full question & answer→
MCQ 461 MarkIn Vim editor which command moves the cursor to the top of the page ?A$M$✓$H$C$L$D$\$$AnswerCorrect option: B. $H$$ H$View full question & answer→
MCQ 471 MarkWhich command is used to quit editing mode without saving changes made in the file in Vim editor ?A$:w$B$:wq$C$:q$✓$:Q!$AnswerCorrect option: D. $:Q!$$ :Q!$View full question & answer→
MCQ 481 MarkIn file in Vim editor which command moves curser to up?A$h$B$I$C$J$✓$k$AnswerCorrect option: D. $k$$ k$View full question & answer→
MCQ 491 MarkIn file in Vim editor which command moves curser to left?✓$h$B$I$C$J$D$k$AnswerCorrect option: A. $h$$ h$View full question & answer→
MCQ 501 MarkIn file in Vim editor which command moves curser to right ?✓$h$B$I$C$J$D$k$AnswerCorrect option: A. $h$$ h$View full question & answer→
MCQ 511 MarkThe arrow keys are used to move the …………. In up,down,left and right direction.✓cursorBwindow CscreenDnone of theseAnswerCorrect option: A. cursor cursorView full question & answer→
MCQ 521 MarkBy pressing which key can we go from command mode to the last line mode ?✓Colon$(:)$B$ESC $C$TAB$D$\$$AnswerCorrect option: A. Colon$(:)$Colon $(:)$View full question & answer→
MCQ 531 MarkWhich command is used to save a file and quit editing mode in Vim editor ?A$:x$B$:wq$C$:q$✓Both $(A)$ and $(B)$AnswerCorrect option: D. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 541 MarkWhich command is used to save a file in Vim editor ?✓$:wq$B$:s$C$:fs$D$:xy$AnswerCorrect option: A. $:wq$$ :wq$View full question & answer→
MCQ 551 MarkWhich method is used to create a file in Vim editor ?AType vi followed by a file name and press Enter keyBType vi at the prompt and press Enter keyCCat filename✓Both $(A)$ and $(B)$AnswerCorrect option: D. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 561 MarkBy pressing which key twice can we toggle back to the command mode from the last line mode ?AColon$(:) $✓$ESC $C$TAB$D$\$$AnswerCorrect option: B. $ESC $$ ESC$View full question & answer→
MCQ 571 MarkTo go to the last line mode we first need to be in which mode ?✓Command modeBInsert CLast lineDNone of theseAnswerCorrect option: A. Command mode Command modeView full question & answer→
MCQ 581 MarkWhich command is used to append text after at the end of the current line ?A$a$B$i$✓$A$D$I$AnswerCorrect option: C. $A$$ A$View full question & answer→
MCQ 591 MarkWhich command is used to get into insert mode ?A$a $B$i$C$s$✓Both $(A)$ and $(B)$AnswerCorrect option: D. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 601 MarkWhich command is used to create a file in Vim editor ?A vifilenameB viC catfilename✓Both $(A)$ and $(B)$AnswerCorrect option: D. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 611 MarkWhich character switches to block visual mode allowing to manipulating rectangular blocks of text?A$v$B$V$✓$CTRL+v$D$d$AnswerCorrect option: C. $CTRL+v$ $CTRL + v$View full question & answer→
MCQ 621 MarkWhich character switches to the visual mode allowing to manipulate characters ?✓$v$B$V$C$CTRL+v$D$d$AnswerCorrect option: A. $v$$ v$View full question & answer→
MCQ 631 MarkVisual mode is ……………….Ais a flexible and easy way to select a piece of text from the file.Bis the only way to select a block of text that needs to be modified.Cis a next tension to the command mode✓all of theseAnswerCorrect option: D. all of theseall of theseView full question & answer→
MCQ 641 MarkWhich mode is the only way to select a block of text that needs to be modified ?✓VisualmodeBInsertCLastline DNone of theseAnswerCorrect option: A. VisualmodeVisual modeView full question & answer→
MCQ 651 MarkWhat is an extension to the command mode known as ?✓VisualmodeBInsertCLast lineDNone of theseAnswerCorrect option: A. VisualmodeVisual modeView full question & answer→
MCQ 661 MarkTo perform which operation normally is the last line mode used for ? To perform operations like quitting the Vim session or saving a file.AQuitting the VimsessionBSaving a fileCType the text ✓Both $(A)$ and $(B)$AnswerCorrect option: D. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 671 MarkWhich command is used to insert a new line above the current cursor position ?✓$O$B$o$C$A$D$I$AnswerCorrect option: A. $O$$ O$View full question & answer→
MCQ 681 MarkWhich command is used to insert text after the current cursor position ?✓$a$B$i$C$A$D$I$AnswerCorrect option: A. $a$$ a$View full question & answer→
MCQ 691 MarkHow can we toggle between the command mode and the insert mode ?ABy pressing the $SHIFT$ key ✓By pressing the $ESC$ keyCBy pressing the $TAB$ keyDBy pressing the $CTRL$ keyAnswerCorrect option: B. By pressing the $ESC$ keyBy pressing the $ESC$ keyView full question & answer→
MCQ 701 MarkWhat can be done in insert mode ?AWe can type text in fileBNavigate with in the fileCNone of these✓Both $(A)$ and $(B)$AnswerCorrect option: D. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 711 MarkWhen a new file is opened in Vim the cursor appears in the top ……….. of the screen.✓left cornerBcenter Cright cornerDnone of theseAnswerCorrect option: A. left corner left cornerView full question & answer→
MCQ 721 MarkWhen a new file is opened in vim ………….. symbol indicates that the lines are yet to be used by the editor.A@B#✓~(tilde)D$AnswerCorrect option: C. ~(tilde) ~ (tilde)View full question & answer→
MCQ 731 MarkWhen a new file is opened in Vim it is filled with ….. tildes (~) on the left side of the screen.A@B#✓~(tilde) D$AnswerCorrect option: C. ~(tilde) ~ (tilde)View full question & answer→
MCQ 741 MarkIn how many ways can Vim editor be opened ?✓TwoBThreeCFourDFiveAnswerCorrect option: A. TwoTwoView full question & answer→
MCQ 751 MarkWhich command is to be issued to insert the text in the file ?AInsert$(i)$BAppend$(a)$COpen$(o)$✓Any of theseAnswerCorrect option: D. Any of theseAny of theseView full question & answer→
MCQ 761 MarkWhich are the modes available in Vim editor ?ACommandBInsertCLastline✓All of theseAnswerCorrect option: D. All of theseAll of theseView full question & answer→
MCQ 771 MarkHow many modes are there in Vim editor ?✓three BTwo CFourDOneAnswerCorrect option: A. three threeView full question & answer→
MCQ 781 MarkTo work with the Vim editor, we will have to ………….. it first.✓initiateBcompileCinterpreteDNone of theseAnswerCorrect option: A. initiate initiateView full question & answer→
MCQ 791 MarkWhere is the name of the file along with the information about the total number of lines and column within the file displayed ?✓Command lineBcommand promptCShellDNone of theseAnswerCorrect option: A. Command line Command lineView full question & answer→
MCQ 801 MarkWhat is the last line of a new file opened in Vim known as ?✓Command line Bcommand promptCShell DNone of theseAnswerCorrect option: A. Command line Command lineView full question & answer→
MCQ 811 MarkIn Linux , the output of the command in displayed on the …………..AeditorBgraph✓screenDshell scriptAnswerCorrect option: C. screen screenView full question & answer→
MCQ 821 MarkIn how many modes Vim editor works ?AFour✓ThreeCTwoDOneAnswerCorrect option: B. Three ThreeView full question & answer→
MCQ 831 MarkWhich type of graphical editor available to serve the purpose of writing shell scripts ?AGeditBKwriter✓Both $(A)$ and $(B)$DNone of theseAnswerCorrect option: C. Both $(A)$ and $(B)$Both $(A)$ and $(B)$View full question & answer→
MCQ 841 MarkWhich Editor is available with almost all Unix and Linux flavors ?AeditBpeeCnona ✓VimAnswerCorrect option: D. Vim VimView full question & answer→
MCQ 851 MarkWhich editor can be used from both a command line interface and as a standalone in a graphical user interface ?AedBpicoCnano✓VimAnswerCorrect option: D. Vim VimView full question & answer→
MCQ 861 MarkWhich is a highly configurable text editor built to enable efficient text editing ?AedBpicoCnano✓VimAnswerCorrect option: D. VimD. VimView full question & answer→
MCQ 871 MarkWhen was Vim publicly released ?A$1992$B$1994 $C$1995$✓$1991$AnswerCorrect option: D. $1991$$ 1991$View full question & answer→
MCQ 881 MarkWhat is full form of Vim ?✓ViImproved BVirtual important MachineCViIndependentDVery ImprovedAnswerCorrect option: A. ViImproved ViImprovedView full question & answer→
MCQ 891 MarkWhich desktop environment provides Gedit graphical editor ?A$KDE$B$DEK$C$NOMEG$✓$GNOME$AnswerCorrect option: D. $GNOME$ $GNOME$View full question & answer→
MCQ 901 MarkWhich graphical editor is available with $GNOME$ desktop environment ?✓Gedit BKwriteCeditG DwriteKAnswerCorrect option: A. Gedit GeditView full question & answer→
MCQ 911 Mark…………. Assists us in writing the shell script.ATerminalBApplication✓EditorDBoth $(A)$ and $(B)$AnswerCorrect option: C. Editor EditorView full question & answer→
MCQ 921 MarkAfter typing the sequence of commands ina text file, this text file should be given ……. Execution.Akernel✓linuxshellCinterpreterDcompilerAnswerCorrect option: B. linuxshell linux shellView full question & answer→
MCQ 931 MarkThe ………….. command although it allows us to create a file is not a ……. Option to use when creating a shell script .✓goodBworthyCpossibleDpracticleAnswerCorrect option: A. good goodView full question & answer→
MCQ 941 MarkWhat is the use of cat command ?✓Create a fileBCreate directoryCChange directory DNone of theseAnswerCorrect option: A. Create a fileCreate a fileView full question & answer→
MCQ 951 MarkThe process of executing multiple commands using pipes is ……………Asmart work✓tediousCperfect workDnone of theseAnswerCorrect option: B. tedious tediousView full question & answer→
MCQ 961 Mark………… command is used to create a file .✓CatBMan CEchoDPwdAnswerCorrect option: A. Cat CatView full question & answer→
MCQ 971 MarkThe shell scripts are commonly used by the users to perform………….Acreating usersBroutine individual tasksCsystem administration✓Both $(B)$ and $(C)$AnswerCorrect option: D. Both $(B)$ and $(C)$Both $(B)$ and $(C)$View full question & answer→
MCQ 981 MarkIn Ubuntu Linux multiple commands can be executed by using ………….✓pipesBconditionsCfilterDalloftheseAnswerCorrect option: A. pipes pipesView full question & answer→
MCQ 991 MarkThe ………… are commonly used by the users to perform routine individual tasks and system administration.APipeBEditor✓ShellscriptDKernelAnswerCorrect option: C. Shellscript Shell scriptView full question & answer→
MCQ 1001 Mark……….. can be defined as series of commands written in a plain text file.APipeBEditor✓ShellscriptDKernelAnswerCorrect option: C. Shellscript Shell scriptView full question & answer→
MCQ 1011 MarkUbuntu Linux commands are executed………..✓one at a timeBtwo at a timeCmany at a timeDnone of theseAnswerCorrect option: A. one at a time one at a timeView full question & answer→
MCQ 1021 MarkWhich is the example of text editor ?APicoBNanoCViorVim✓All of theseAnswerCorrect option: D. All of theseAll of theseView full question & answer→