getcertified4sure.com

All About 101-400 practice question Apr 2021




A fiercer level of competition from the This market makes it harder for the This people to find adequate employment. LPI is often a tool which could be sure a comfortable position. LPI Documentation 101-400 Exam is surely an indispensable tests from the 101-400 Hardcopy. As long as you began to prepare for that LPI assessment, does youI fully grasp any complicated it is. These days, the analysis stuffs because of it checkups are too many seem to pick out. It will cost lots of time when choosing the right stuffs. Due to this fact, candidates bought misplaced to find a really good one. Classes a great number of LPI resources today, it will become more and more difficult regarding candidates to find the ideal one.

2021 Apr 101-400 exam cost

Q51. - (Topic 3) 

In the vi editor, how can commands such as moving the cursor or copying lines into the buffer be issued multiple times or applied to multiple rows? 

A. By using the command :repeat followed by the number and the command. 

B. By specifying the number right in front of a command such as 4l or 2yj. 

C. By selecting all affected lines using the shift and cursor keys before applying the command. 

D. By issuing a command such as :set repetition=4 which repeats every subsequent command 4 times. 

Answer:


Q52. - (Topic 4) 

Which of the following commands shows the definition of a given shell command? 

A. where 

B. stat 

C. type 

D. case 

Answer:


Q53. - (Topic 3) 

Which of the following commands prints all files and directories within the /tmp directory or its subdirectories which are also owned by the user root? (Choose TWO correct answers.) 

A. find /tmp -uid root -print 

B. find -path /tmp -uid root 

C. find /tmp -user root -print 

D. find /tmp -user root 

E. find -path /tmp -user root –print 

Answer: C,D 


Q54. - (Topic 4) 

What is the purpose of the Filesystem Hierarchy Standard? 

A. It is a security model used to ensure files are organized according to their permissions and accessibility. 

B. It provides unified tools to create, maintain and manage multiple filesystems in a common way. 

C. It defines a common internal structure of inodes for all compliant filesystems. 

D. It is a distribution neutral description of locations of files and directories. 

Answer:


Q55. - (Topic 4) 

Which of the following settings for umask ensures that new files have the default permissions -rw-r----- ? 

A. 0017 

B. 0640 

C. 0038 

D. 0027 

Answer:


Most recent 101-400 free question:

Q56. - (Topic 3) 

Which of the following signals is sent to a process when the key combination CTRL+C is pressed on the keyboard? 

A. SIGTERM 

B. SIGINT 

C. SIGSTOP 

D. SIGKILL 

Answer:


Q57. CORRECT TEXT - (Topic 2) 

Which option to the yum command will update the entire system? (Specify ONLY the option name without any additional parameters.) 

Answer: update, upgrade 


Q58. - (Topic 2) 

Which of the following commands can be used to download the RPM package kernel without installing it? 

A. yum download --no-install kernel 

B. yumdownloader kernel 

C. rpm --download --package kernel 

D. rpmdownload kernel 

Answer:


Q59. - (Topic 3) 

Which of the following commands moves and resumes in the background the last stopped shell job? 

A. run 

B. bg 

C. fg 

D. back 

Answer:


Q60. - (Topic 3) 

Which of the following commands replaces each occurrence of 'bob' in the file letter with 'Bob' and writes the result to the file newletter? 

A. sed '/bob/Bob' letter > newletter 

B. sed s/bob/Bob/ letter < newletter 

C. sed 's/bob/Bob' letter > newletter 

D. sed 's/bob/Bob/g' letter > newletter 

E. sed 's/bob, Bob/' letter > newletter 

Answer: