[ कंप्यूटर Linux Basics MCQ ]
कंप्यूटर Linux Basics से संबंधित महत्वपूर्ण
बहुविकल्पीय प्रश्न। ये प्रश्न JSSC, JPSC,
SSC, रेलवे, बैंकिंग, JTET, पुलिस एवं अन्य
प्रतियोगी परीक्षाओं के लिए उपयोगी हैं।
[ Computer Linux Basics MCQ ]
Important multiple-choice questions related
to Computer Linux Basics. These questions are
useful for JSSC, JPSC, SSC, Railway, Banking,
JTET, Police and other competitive examinations.
प्रश्न 301
301.
Linux में file की आखिरी कुछ lines देखने के लिए कौन-सी command प्रयोग होती है?
[A]
tail
[B]
end
[C]
last
[D]
foot
Question 301
301.
Which command is used to view the last few lines of a file in Linux?
[A]
tail
[B]
end
[C]
last
[D]
foot
सही उत्तर:
tail
व्याख्या:
tail command file की अंतिम lines को display करती है.
Correct Answer:
tail
Explanation:
The tail command displays the last lines of a file.
प्रश्न 302
302.
Linux में किसी file की lines की संख्या गिनने के लिए कौन-सी command उपयोग की जा सकती है?
[A]
wc -l
[B]
count -l
[C]
linecount
[D]
lines
Question 302
302.
Which command can be used to count the number of lines in a file in Linux?
[A]
wc -l
[B]
count -l
[C]
linecount
[D]
lines
सही उत्तर:
wc -l
व्याख्या:
wc -l file में मौजूद lines की संख्या बताती है.
Correct Answer:
wc -l
Explanation:
wc -l counts the number of lines in a file.
प्रश्न 303
303.
Linux में file के words की संख्या गिनने के लिए कौन-सा command option प्रयोग होता है?
[A]
wc -w
[B]
wc -words
[C]
count -w
[D]
words
Question 303
303.
Which command option is used to count words in a file in Linux?
[A]
wc -w
[B]
wc -words
[C]
count -w
[D]
words
सही उत्तर:
wc -w
व्याख्या:
wc -w file में मौजूद words की संख्या गिनता है.
Correct Answer:
wc -w
Explanation:
wc -w counts the number of words in a file.
प्रश्न 304
304.
Linux में file के characters की संख्या गिनने के लिए कौन-सा option प्रयोग किया जाता है?
[A]
wc -m
[B]
wc -c
[C]
count -m
[D]
chars
Question 304
304.
Which option can be used to count characters in a file in Linux?
[A]
wc -m
[B]
wc -c
[C]
count -m
[D]
chars
सही उत्तर:
wc -m
व्याख्या:
wc -m characters की संख्या count करने के लिए उपयोग किया जा सकता है.
Correct Answer:
wc -m
Explanation:
wc -m can be used to count characters in a file.
प्रश्न 305
305.
Linux में file के bytes की संख्या देखने के लिए कौन-सा command उपयोगी है?
[A]
wc -c
[B]
wc -b
[C]
bytes
[D]
countbyte
Question 305
305.
Which command is useful for counting bytes in a file in Linux?
[A]
wc -c
[B]
wc -b
[C]
bytes
[D]
countbyte
सही उत्तर:
wc -c
व्याख्या:
wc -c file में bytes की संख्या दिखाता है.
Correct Answer:
wc -c
Explanation:
wc -c displays the number of bytes in a file.
प्रश्न 306
306.
Linux में text को search करने के लिए commonly कौन-सी command प्रयोग होती है?
[A]
grep
[B]
findtext
[C]
search
[D]
look
Question 306
306.
Which command is commonly used to search text in Linux?
[A]
grep
[B]
findtext
[C]
search
[D]
look
सही उत्तर:
grep
व्याख्या:
grep command text pattern को files में search करने के लिए प्रयोग होती है.
Correct Answer:
grep
Explanation:
The grep command is commonly used to search for text patterns in files.
प्रश्न 307
307.
Linux में grep command case-insensitive search के लिए कौन-सा option उपयोग करती है?
[A]
-i
[B]
-c
[C]
-n
[D]
-r
Question 307
307.
Which option is used for a case-insensitive search with grep in Linux?
[A]
-i
[B]
-c
[C]
-n
[D]
-r
सही उत्तर:
-i
व्याख्या:
grep -i uppercase और lowercase के बीच अंतर किए बिना search करता है.
Correct Answer:
-i
Explanation:
grep -i performs a case-insensitive search.
प्रश्न 308
308.
Linux में grep के साथ matching lines की line number दिखाने के लिए कौन-सा option प्रयोग होता है?
[A]
-n
[B]
-l
[C]
-v
[D]
-m
Question 308
308.
Which grep option displays line numbers of matching lines in Linux?
[A]
-n
[B]
-l
[C]
-v
[D]
-m
सही उत्तर:
-n
व्याख्या:
grep -n matching text वाली lines के line numbers भी दिखाता है.
Correct Answer:
-n
Explanation:
grep -n displays the line numbers of matching lines.
प्रश्न 309
309.
Linux में grep के साथ केवल matching file names दिखाने के लिए कौन-सा option उपयोग होता है?
[A]
-l
[B]
-n
[C]
-f
[D]
-d
Question 309
309.
Which grep option displays only the names of files containing a match?
[A]
-l
[B]
-n
[C]
-f
[D]
-d
सही उत्तर:
-l
व्याख्या:
grep -l उन files के names दिखाता है जिनमें pattern match होता है.
Correct Answer:
-l
Explanation:
grep -l displays the names of files containing a matching pattern.
प्रश्न 310
310.
Linux में grep के साथ matching lines को छोड़कर बाकी lines देखने के लिए कौन-सा option प्रयोग होता है?
[A]
-v
[B]
-x
[C]
-r
[D]
-q
Question 310
310.
Which grep option displays lines that do not match the pattern?
[A]
-v
[B]
-x
[C]
-r
[D]
-q
सही उत्तर:
-v
व्याख्या:
grep -v pattern से match नहीं होने वाली lines को display करता है.
Correct Answer:
-v
Explanation:
grep -v displays lines that do not match the specified pattern.
प्रश्न 311
311.
Linux में directories और files को recursively search करने के लिए grep के साथ कौन-सा option प्रयोग किया जाता है?
[A]
-r
[B]
-a
[C]
-d
[D]
-s
Question 311
311.
Which grep option is used to search recursively through directories?
[A]
-r
[B]
-a
[C]
-d
[D]
-s
सही उत्तर:
-r
व्याख्या:
grep -r directories के अंदर recursively files में pattern search कर सकता है.
Correct Answer:
-r
Explanation:
grep -r searches recursively through files in directories.
प्रश्न 312
312.
Linux में file खोजने के लिए कौन-सी command commonly प्रयोग होती है?
[A]
find
[B]
searchfile
[C]
locatefile
[D]
seek
Question 312
312.
Which command is commonly used to find files in Linux?
[A]
find
[B]
searchfile
[C]
locatefile
[D]
seek
सही उत्तर:
find
व्याख्या:
find command specified conditions के आधार पर files और directories खोजती है.
Correct Answer:
find
Explanation:
The find command searches for files and directories based on specified conditions.
प्रश्न 313
313.
Linux में filename के आधार पर file खोजने के लिए find के साथ कौन-सा option प्रयोग किया जाता है?
[A]
-name
[B]
-file
[C]
-n
[D]
-search
Question 313
313.
Which find option is used to search by filename in Linux?
[A]
-name
[B]
-file
[C]
-n
[D]
-search
सही उत्तर:
-name
व्याख्या:
find -name filename के नाम या pattern के आधार पर files खोजता है.
Correct Answer:
-name
Explanation:
find -name searches for files based on their names or patterns.
प्रश्न 314
314.
Linux में locate command का मुख्य उद्देश्य क्या है?
[A]
Files जल्दी खोजना
[B]
Files delete करना
[C]
Files edit करना
[D]
Users बनाना
Question 314
314.
What is the main purpose of the locate command in Linux?
[A]
Search for files quickly
[B]
Delete files
[C]
Edit files
[D]
Create users
सही उत्तर:
Files जल्दी खोजना
व्याख्या:
locate database का उपयोग करके files के paths को जल्दी खोज सकती है.
Correct Answer:
Search for files quickly
Explanation:
The locate command can quickly search file paths using a database.
प्रश्न 315
315.
Linux में किसी command की manual page देखने के लिए कौन-सी command प्रयोग होती है?
[A]
man
[B]
manual
[C]
helpdoc
[D]
doc
Question 315
315.
Which command is used to view the manual page of a command in Linux?
[A]
man
[B]
manual
[C]
helpdoc
[D]
doc
सही उत्तर:
man
व्याख्या:
man command किसी command की detailed manual documentation दिखाती है.
Correct Answer:
man
Explanation:
The man command displays detailed manual documentation for a command.
प्रश्न 316
316.
Linux में किसी command के सामान्य usage और options की जानकारी के लिए कौन-सा option अक्सर प्रयोग होता है?
[A]
--help
[B]
--info
[C]
--manual
[D]
--usage-only
Question 316
316.
Which option is commonly used to get basic usage and options of a Linux command?
[A]
--help
[B]
--info
[C]
--manual
[D]
--usage-only
सही उत्तर:
--help
व्याख्या:
कई Linux commands --help option से basic usage और options की जानकारी देती हैं.
Correct Answer:
--help
Explanation:
Many Linux commands provide basic usage and options with the --help option.
प्रश्न 317
317.
Linux shell में command history देखने के लिए कौन-सी command प्रयोग होती है?
[A]
history
[B]
hist
[C]
commands
[D]
previous
Question 317
317.
Which command is used to view command history in a Linux shell?
[A]
history
[B]
hist
[C]
commands
[D]
previous
सही उत्तर:
history
व्याख्या:
history command पहले execute की गई commands की सूची दिखाती है.
Correct Answer:
history
Explanation:
The history command displays previously executed commands.
प्रश्न 318
318.
Linux terminal में पिछले command को फिर से execute करने के लिए कौन-सा shortcut commonly उपयोग होता है?
[A]
Up Arrow
[B]
Down Arrow
[C]
Ctrl + P
[D]
Alt + R
Question 318
318.
Which shortcut is commonly used to recall the previous command in a Linux terminal?
[A]
Up Arrow
[B]
Down Arrow
[C]
Ctrl + P
[D]
Alt + R
सही उत्तर:
Up Arrow
व्याख्या:
Up Arrow दबाने पर shell history से पिछली command लाई जा सकती है.
Correct Answer:
Up Arrow
Explanation:
Pressing Up Arrow can recall the previous command from shell history.
प्रश्न 319
319.
Linux shell में command line को साफ करने के लिए कौन-सी command प्रयोग होती है?
[A]
clear
[B]
clean
[C]
cls
[D]
resetline
Question 319
319.
Which command is used to clear the Linux terminal screen?
[A]
clear
[B]
clean
[C]
cls
[D]
resetline
सही उत्तर:
clear
व्याख्या:
clear command terminal screen को साफ करती है.
Correct Answer:
clear
Explanation:
The clear command clears the terminal screen.
प्रश्न 320
320.
Linux में file type की basic information देखने के लिए कौन-सी command प्रयोग होती है?
[A]
file
[B]
type
[C]
fileinfo
[D]
checkfile
Question 320
320.
Which command is used to determine the basic type of a file in Linux?
[A]
file
[B]
type
[C]
fileinfo
[D]
checkfile
सही उत्तर:
file
व्याख्या:
file command किसी file के प्रकार की पहचान करने में मदद करती है.
Correct Answer:
file
Explanation:
The file command helps identify the type of a file.
प्रश्न 321
321.
Linux में disk space usage देखने के लिए कौन-सी command प्रयोग होती है?
[A]
df
[B]
disk
[C]
space
[D]
du
Question 321
321.
Which command is used to view disk space usage in Linux?
[A]
df
[B]
disk
[C]
space
[D]
du
सही उत्तर:
df
व्याख्या:
df command mounted filesystems का available और used disk space दिखाती है.
Correct Answer:
df
Explanation:
The df command displays available and used disk space on mounted filesystems.
प्रश्न 322
322.
Linux में किसी directory द्वारा उपयोग किए गए disk space को देखने के लिए कौन-सी command उपयोगी है?
[A]
du
[B]
df
[C]
dirsize
[D]
spacecheck
Question 322
322.
Which command is useful for viewing disk space used by a directory in Linux?
[A]
du
[B]
df
[C]
dirsize
[D]
spacecheck
सही उत्तर:
du
व्याख्या:
du command files और directories द्वारा उपयोग किए गए disk space का अनुमान दिखाती है.
Correct Answer:
du
Explanation:
The du command displays estimated disk space usage by files and directories.
प्रश्न 323
323.
Linux में mounted filesystem की disk usage को human-readable format में देखने के लिए कौन-सा command उपयोग किया जा सकता है?
[A]
df -h
[B]
df -l
[C]
du -h
[D]
disk -h
Question 323
323.
Which command can display mounted filesystem disk usage in human-readable format?
[A]
df -h
[B]
df -l
[C]
du -h
[D]
disk -h
सही उत्तर:
df -h
व्याख्या:
df -h disk space को KB, MB और GB जैसे readable units में दिखाता है.
Correct Answer:
df -h
Explanation:
df -h displays disk usage using human-readable units such as KB, MB and GB.
प्रश्न 324
324.
Linux में directory size को human-readable format में देखने के लिए कौन-सा command उपयोगी है?
[A]
du -h
[B]
df -h
[C]
dir -h
[D]
size -h
Question 324
324.
Which command is useful for viewing directory size in human-readable format in Linux?
[A]
du -h
[B]
df -h
[C]
dir -h
[D]
size -h
सही उत्तर:
du -h
व्याख्या:
du -h directories और files के disk usage को readable units में दिखाता है.
Correct Answer:
du -h
Explanation:
du -h displays disk usage in human-readable units.
प्रश्न 325
325.
Linux में process की सूची देखने के लिए कौन-सी command प्रयोग होती है?
[A]
ps
[B]
process
[C]
plist
[D]
proc
Question 325
325.
Which command is used to display a list of processes in Linux?
[A]
ps
[B]
process
[C]
plist
[D]
proc
सही उत्तर:
ps
व्याख्या:
ps command वर्तमान processes की जानकारी दिखाने के लिए प्रयोग होती है.
Correct Answer:
ps
Explanation:
The ps command is used to display information about processes.
प्रश्न 326
326.
Linux में सभी users के processes देखने के लिए ps के साथ कौन-सा option उपयोग किया जाता है?
[A]
ps aux
[B]
ps all
[C]
ps users
[D]
ps -users
Question 326
326.
Which command can be used to view processes of all users in Linux?
[A]
ps aux
[B]
ps all
[C]
ps users
[D]
ps -users
सही उत्तर:
ps aux
व्याख्या:
ps aux system पर सभी users के processes की विस्तृत जानकारी दिखा सकता है.
Correct Answer:
ps aux
Explanation:
ps aux can display detailed information about processes from all users.
प्रश्न 327
327.
Linux में किसी process को उसके PID द्वारा समाप्त करने के लिए कौन-सी command प्रयोग होती है?
[A]
kill
[B]
stop
[C]
end
[D]
terminate
Question 327
327.
Which command is used to terminate a process by its PID in Linux?
[A]
kill
[B]
stop
[C]
end
[D]
terminate
सही उत्तर:
kill
व्याख्या:
kill command process ID का उपयोग करके process को signal भेजती है.
Correct Answer:
kill
Explanation:
The kill command sends a signal to a process using its process ID.
प्रश्न 328
328.
Linux में किसी process को pause या suspend करने के लिए कौन-सा signal प्रयोग किया जा सकता है?
[A]
SIGSTOP
[B]
SIGRUN
[C]
SIGPAUSE
[D]
SIGWAIT
Question 328
328.
Which signal can be used to suspend a process in Linux?
[A]
SIGSTOP
[B]
SIGRUN
[C]
SIGPAUSE
[D]
SIGWAIT
सही उत्तर:
SIGSTOP
व्याख्या:
SIGSTOP process को suspend करने के लिए प्रयोग किया जा सकता है.
Correct Answer:
SIGSTOP
Explanation:
SIGSTOP can be used to suspend a process.
प्रश्न 329
329.
Linux में process को continue करने के लिए कौन-सा signal प्रयोग होता है?
[A]
SIGCONT
[B]
SIGSTART
[C]
SIGRUN
[D]
SIGGO
Question 329
329.
Which signal is used to continue a stopped process in Linux?
[A]
SIGCONT
[B]
SIGSTART
[C]
SIGRUN
[D]
SIGGO
सही उत्तर:
SIGCONT
व्याख्या:
SIGCONT stopped process को continue करने के लिए प्रयोग किया जाता है.
Correct Answer:
SIGCONT
Explanation:
SIGCONT is used to continue a stopped process.
प्रश्न 330
330.
Linux में process का PID क्या दर्शाता है?
[A]
Process ID
[B]
Program Index Data
[C]
Process Input Device
[D]
Program ID Directory
Question 330
330.
What does PID represent in Linux?
[A]
Process ID
[B]
Program Index Data
[C]
Process Input Device
[D]
Program ID Directory
सही उत्तर:
Process ID
व्याख्या:
PID का पूरा नाम Process ID है और यह प्रत्येक process की पहचान करता है.
Correct Answer:
Process ID
Explanation:
PID stands for Process ID and identifies a process.
प्रश्न 331
331.
Linux में parent process का PID किससे संबंधित होता है?
[A]
PPID
[B]
PIDP
[C]
PARENT
[D]
PPROCESS
Question 331
331.
Which value represents the parent process ID in Linux?
[A]
PPID
[B]
PIDP
[C]
PARENT
[D]
PPROCESS
सही उत्तर:
PPID
व्याख्या:
PPID का अर्थ Parent Process ID है.
Correct Answer:
PPID
Explanation:
PPID stands for Parent Process ID.
प्रश्न 332
332.
Linux में kernel name और अन्य system information देखने के लिए कौन-सा option उपयोग किया जाता है?
[A]
uname -a
[B]
uname -all
[C]
uname -info
[D]
uname -system
Question 332
332.
Which option can be used to display detailed system information with uname?
[A]
uname -a
[B]
uname -all
[C]
uname -info
[D]
uname -system
सही उत्तर:
uname -a
व्याख्या:
uname -a system की विस्तृत जानकारी display कर सकता है.
Correct Answer:
uname -a
Explanation:
uname -a displays detailed system information.
प्रश्न 333
333.
Linux में system को shutdown करने के लिए कौन-सी command commonly प्रयोग होती है?
[A]
shutdown
[B]
stop
[C]
poweroffsystem
[D]
close
Question 333
333.
Which command is commonly used to shut down a Linux system?
[A]
shutdown
[B]
stop
[C]
poweroffsystem
[D]
close
सही उत्तर:
shutdown
व्याख्या:
shutdown command system को निर्धारित समय पर shutdown करने के लिए प्रयोग होती है.
Correct Answer:
shutdown
Explanation:
The shutdown command is used to shut down a Linux system.
प्रश्न 334
334.
Linux में system को तुरंत बंद करने के लिए कौन-सी command प्रयोग की जा सकती है?
[A]
poweroff
[B]
stopnow
[C]
closepc
[D]
off
Question 334
334.
Which command can be used to immediately power off a Linux system?
[A]
poweroff
[B]
stopnow
[C]
closepc
[D]
off
सही उत्तर:
poweroff
व्याख्या:
poweroff command system को power off करने के लिए प्रयोग की जाती है.
Correct Answer:
poweroff
Explanation:
The poweroff command is used to power off a Linux system.
प्रश्न 335
335.
Linux में system को reboot करने के लिए कौन-सी command प्रयोग होती है?
[A]
reboot
[B]
restartpc
[C]
reload
[D]
bootagain
Question 335
335.
Which command is used to reboot a Linux system?
[A]
reboot
[B]
restartpc
[C]
reload
[D]
bootagain
सही उत्तर:
reboot
व्याख्या:
reboot command system को restart करने के लिए प्रयोग होती है.
Correct Answer:
reboot
Explanation:
The reboot command restarts a Linux system.
प्रश्न 336
336.
Linux में वर्तमान date और time देखने के लिए कौन-सी command प्रयोग होती है?
[A]
date
[B]
time
[C]
datetime
[D]
clock
Question 336
336.
Which command is used to display the current date and time in Linux?
[A]
date
[B]
time
[C]
datetime
[D]
clock
सही उत्तर:
date
व्याख्या:
date command current system date और time दिखाती है.
Correct Answer:
date
Explanation:
The date command displays the current system date and time.
प्रश्न 337
337.
Linux में command execution का समय जानने के लिए कौन-सी utility उपयोगी है?
[A]
time
[B]
execute
[C]
commandtime
[D]
measure
Question 337
337.
Which utility is useful for measuring command execution time in Linux?
[A]
time
[B]
execute
[C]
commandtime
[D]
measure
सही उत्तर:
time
व्याख्या:
time utility किसी command को execute करने में लगा समय दिखा सकती है.
Correct Answer:
time
Explanation:
The time utility can show how long a command takes to execute.
प्रश्न 338
338.
Linux में sleep command का मुख्य उद्देश्य क्या है?
[A]
कुछ समय के लिए execution रोकना
[B]
System shutdown करना
[C]
File delete करना
[D]
User create करना
Question 338
338.
What is the main purpose of the sleep command in Linux?
[A]
Pause execution for a specified time
[B]
Shut down the system
[C]
Delete a file
[D]
Create a user
सही उत्तर:
कुछ समय के लिए execution रोकना
व्याख्या:
sleep command specified समय तक process को wait कराती है.
Correct Answer:
Pause execution for a specified time
Explanation:
The sleep command pauses execution for a specified amount of time.
प्रश्न 339
339.
Linux में echo command का उपयोग मुख्यतः किसके लिए होता है?
[A]
Text या variables display करना
[B]
Files delete करना
[C]
Processes terminate करना
[D]
Disk format करना
Question 339
339.
What is the main use of the echo command in Linux?
[A]
Display text or variables
[B]
Delete files
[C]
Terminate processes
[D]
Format disks
सही उत्तर:
Text या variables display करना
व्याख्या:
echo command terminal पर text और variable values display करने के लिए commonly प्रयोग होती है.
Correct Answer:
Display text or variables
Explanation:
The echo command is commonly used to display text and variable values.
प्रश्न 340
340.
Linux में environment variable set करने के लिए कौन-सी command commonly प्रयोग होती है?
[A]
export
[B]
setenvfile
[C]
envset
[D]
variable
Question 340
340.
Which command is commonly used to set an environment variable in Linux?
[A]
export
[B]
setenvfile
[C]
envset
[D]
variable
सही उत्तर:
export
व्याख्या:
export command variable को environment में उपलब्ध कराने के लिए प्रयोग होती है.
Correct Answer:
export
Explanation:
The export command makes a variable available in the environment.
प्रश्न 341
341.
Linux में shell variable का value देखने के लिए variable के आगे सामान्यतः कौन-सा symbol लगाया जाता है?
[A]
$
[B]
#
[C]
@
[D]
%
Question 341
341.
Which symbol is generally placed before a variable name to reference its value in a Linux shell?
[A]
$
[B]
#
[C]
@
[D]
%
सही उत्तर:
$
व्याख्या:
Shell variable को reference करने के लिए variable name के आगे $ लगाया जाता है.
Correct Answer:
$
Explanation:
The $ symbol is placed before a variable name to reference its value in the shell.
प्रश्न 342
342.
Linux में standard output को file में redirect करने के लिए कौन-सा operator प्रयोग होता है?
[A]
>
[B]
<
[C]
>>
[D]
|
Question 342
342.
Which operator is used to redirect standard output to a file in Linux?
[A]
>
[B]
<
[C]
>>
[D]
|
सही उत्तर:
>
व्याख्या:
> operator command के standard output को file में redirect करता है और existing content overwrite कर सकता है.
Correct Answer:
>
Explanation:
The > operator redirects standard output to a file and can overwrite existing content.
प्रश्न 343
343.
Linux में output को existing file के अंत में जोड़ने के लिए कौन-सा operator प्रयोग होता है?
[A]
>>
[B]
>
[C]
<<
[D]
|
Question 343
343.
Which operator is used to append output to the end of an existing file in Linux?
[A]
>>
[B]
>
[C]
<<
[D]
|
सही उत्तर:
>>
व्याख्या:
>> operator output को file के end में append करता है.
Correct Answer:
>>
Explanation:
The >> operator appends output to the end of an existing file.
प्रश्न 344
344.
Linux में input redirection के लिए कौन-सा operator प्रयोग होता है?
[A]
<
[B]
>
[C]
>>
[D]
|
Question 344
344.
Which operator is used for input redirection in Linux?
[A]
<
[B]
>
[C]
>>
[D]
|
सही उत्तर:
<
व्याख्या:
< operator file से command के standard input को redirect करता है.
Correct Answer:
<
Explanation:
The < operator redirects standard input from a file.
प्रश्न 345
345.
Linux में pipe operator का symbol क्या है?
[A]
|
[B]
>
[C]
<
[D]
&
Question 345
345.
What is the symbol of the pipe operator in Linux?
[A]
|
[B]
>
[C]
<
[D]
&
सही उत्तर:
|
व्याख्या:
Pipe operator एक command के output को दूसरी command के input के रूप में भेजता है.
Correct Answer:
|
Explanation:
The pipe operator sends the output of one command as input to another command.
प्रश्न 346
346.
Linux में दो commands को एक साथ execute करने के लिए कौन-सा operator प्रयोग किया जा सकता है?
[A]
&&
[B]
++
[C]
==
[D]
##
Question 346
346.
Which operator can be used to execute two commands conditionally in Linux?
[A]
&&
[B]
++
[C]
==
[D]
##
सही उत्तर:
&&
व्याख्या:
&& operator पहली command के सफल होने पर दूसरी command execute करता है.
Correct Answer:
&&
Explanation:
The && operator executes the second command if the first command succeeds.
प्रश्न 347
347.
Linux shell में commands को sequentially execute करने के लिए कौन-सा separator प्रयोग किया जाता है?
[A]
;
[B]
:
[C]
,
[D]
|
Question 347
347.
Which separator is used to execute commands sequentially in a Linux shell?
[A]
;
[B]
:
[C]
,
[D]
|
सही उत्तर:
;
व्याख्या:
Semicolon से अलग की गई commands सामान्यतः क्रम से execute होती हैं.
Correct Answer:
;
Explanation:
Commands separated by a semicolon are generally executed sequentially.
प्रश्न 348
348.
Linux में command को background में चलाने के लिए command के अंत में क्या लगाया जाता है?
[A]
&
[B]
@
[C]
#
[D]
%
Question 348
348.
What is placed at the end of a command to run it in the background in Linux?
[A]
&
[B]
@
[C]
#
[D]
%
सही उत्तर:
&
व्याख्या:
& operator command को background में चलाने के लिए प्रयोग होता है.
Correct Answer:
&
Explanation:
The & operator is used to run a command in the background.
प्रश्न 349
349.
Linux में stopped या background job को foreground में लाने के लिए कौन-सी command प्रयोग होती है?
[A]
fg
[B]
front
[C]
foreground
[D]
resume
Question 349
349.
Which command is used to bring a background or stopped job to the foreground in Linux?
[A]
fg
[B]
front
[C]
foreground
[D]
resume
सही उत्तर:
fg
व्याख्या:
fg command किसी background या stopped job को foreground में लाती है.
Correct Answer:
fg
Explanation:
The fg command brings a background or stopped job to the foreground.
प्रश्न 350
350.
Linux में foreground job को background में भेजने के लिए कौन-सी command उपयोगी है?
[A]
bg
[B]
back
[C]
background
[D]
sendbg
Question 350
350.
Which command is useful for continuing a stopped job in the background in Linux?
[A]
bg
[B]
back
[C]
background
[D]
sendbg
सही उत्तर:
bg
व्याख्या:
bg command stopped job को background में continue करने के लिए उपयोग की जाती है.
Correct Answer:
bg
Explanation:
The bg command continues a stopped job in the background.
प्रश्न 351
351.
Linux में terminal session बंद होने के बाद भी process चलाने के लिए कौन-सी utility उपयोगी है?
[A]
nohup
[B]
keep
[C]
persist
[D]
stay
Question 351
351.
Which utility is useful for running a process even after a terminal session ends?
[A]
nohup
[B]
keep
[C]
persist
[D]
stay
सही उत्तर:
nohup
व्याख्या:
nohup command terminal logout के बाद भी command को चलाने में मदद करती है.
Correct Answer:
nohup
Explanation:
The nohup utility helps a command continue running after the terminal session ends.
प्रश्न 352
352.
Linux में command के output को दूसरी command में भेजने के लिए किसका उपयोग किया जाता है?
[A]
Pipe
[B]
Redirect
[C]
Loop
[D]
Variable
Question 352
352.
What is used to send the output of one command to another command in Linux?
[A]
Pipe
[B]
Redirect
[C]
Loop
[D]
Variable
सही उत्तर:
Pipe
व्याख्या:
Pipe एक command के standard output को दूसरी command के standard input से जोड़ता है.
Correct Answer:
Pipe
Explanation:
A pipe connects the standard output of one command to the standard input of another.
प्रश्न 353
353.
Linux में sort command का मुख्य उद्देश्य क्या है?
[A]
Lines को क्रम में व्यवस्थित करना
[B]
File delete करना
[C]
User create करना
[D]
Process रोकना
Question 353
353.
What is the main purpose of the sort command in Linux?
[A]
Arrange lines in order
[B]
Delete a file
[C]
Create a user
[D]
Stop a process
सही उत्तर:
Lines को क्रम में व्यवस्थित करना
व्याख्या:
sort command input की lines को sorting order में व्यवस्थित करती है.
Correct Answer:
Arrange lines in order
Explanation:
The sort command arranges input lines in sorted order.
प्रश्न 354
354.
Linux में unique या duplicate lines को handle करने के लिए कौन-सी command उपयोग होती है?
[A]
uniq
[B]
unique
[C]
dedup
[D]
remove
Question 354
354.
Which command is used to handle duplicate lines in Linux?
[A]
uniq
[B]
unique
[C]
dedup
[D]
remove
सही उत्तर:
uniq
व्याख्या:
uniq command adjacent duplicate lines को remove या identify करने के लिए प्रयोग होती है.
Correct Answer:
uniq
Explanation:
The uniq command is used to remove or identify adjacent duplicate lines.
प्रश्न 355
355.
Linux में text की selected columns या fields निकालने के लिए कौन-सी command उपयोगी है?
[A]
cut
[B]
column
[C]
extract
[D]
field
Question 355
355.
Which command is useful for extracting selected fields or columns from text in Linux?
[A]
cut
[B]
column
[C]
extract
[D]
field
सही उत्तर:
cut
व्याख्या:
cut command lines से selected sections या fields निकाल सकती है.
Correct Answer:
cut
Explanation:
The cut command can extract selected sections or fields from lines of text.
प्रश्न 356
356.
Linux में text processing और pattern scanning के लिए कौन-सी powerful utility प्रयोग होती है?
[A]
awk
[B]
textproc
[C]
scan
[D]
pattern
Question 356
356.
Which powerful utility is used for text processing and pattern scanning in Linux?
[A]
awk
[B]
textproc
[C]
scan
[D]
pattern
सही उत्तर:
awk
व्याख्या:
awk text processing, pattern matching और reporting के लिए powerful utility है.
Correct Answer:
awk
Explanation:
awk is a powerful utility for text processing, pattern matching and reporting.
प्रश्न 357
357.
Linux में stream editor के रूप में कौन-सी command प्रसिद्ध है?
[A]
sed
[B]
edit
[C]
streamedit
[D]
modify
Question 357
357.
Which command is known as a stream editor in Linux?
[A]
sed
[B]
edit
[C]
streamedit
[D]
modify
सही उत्तर:
sed
व्याख्या:
sed का पूरा नाम stream editor है और यह text transformation के लिए उपयोगी है.
Correct Answer:
sed
Explanation:
sed is a stream editor commonly used for text transformations.
प्रश्न 358
358.
Linux में text file की शुरुआत की lines देखने के लिए कौन-सी command प्रयोग होती है?
[A]
head
[B]
start
[C]
toplines
[D]
first
Question 358
358.
Which command is used to view the beginning lines of a text file in Linux?
[A]
head
[B]
start
[C]
toplines
[D]
first
सही उत्तर:
head
व्याख्या:
head command file की शुरुआती lines display करती है.
Correct Answer:
head
Explanation:
The head command displays the beginning lines of a file.
प्रश्न 359
359.
Linux में head command default रूप से सामान्यतः कितनी lines दिखाती है?
[A]
10
[B]
5
[C]
20
[D]
15
Question 359
359.
How many lines does the head command normally display by default in Linux?
[A]
10
[B]
5
[C]
20
[D]
15
सही उत्तर:
10
व्याख्या:
head command सामान्यतः default रूप से पहली 10 lines दिखाती है.
Correct Answer:
10
Explanation:
The head command normally displays the first 10 lines by default.
प्रश्न 360
360.
Linux में tail command default रूप से सामान्यतः कितनी lines दिखाती है?
[A]
10
[B]
5
[C]
20
[D]
15
Question 360
360.
How many lines does the tail command normally display by default in Linux?
[A]
10
[B]
5
[C]
20
[D]
15
सही उत्तर:
10
व्याख्या:
tail command सामान्यतः file की अंतिम 10 lines display करती है.
Correct Answer:
10
Explanation:
The tail command normally displays the last 10 lines by default.
प्रश्न 361
361.
Linux में tail command को लगातार बदलती file को monitor करने के लिए कौन-सा option प्रयोग होता है?
[A]
-f
[B]
-c
[C]
-r
[D]
-m
Question 361
361.
Which option is used with tail to continuously monitor a changing file?
[A]
-f
[B]
-c
[C]
-r
[D]
-m
सही उत्तर:
-f
व्याख्या:
tail -f file में नए data को लगातार monitor करने के लिए उपयोग किया जाता है.
Correct Answer:
-f
Explanation:
tail -f is used to continuously monitor new data added to a file.
प्रश्न 362
362.
Linux में command output को alphabetically sort करने के लिए कौन-सी command प्रयोग की जाती है?
[A]
sort
[B]
order
[C]
alphabet
[D]
arrange
Question 362
362.
Which command is used to sort command output alphabetically in Linux?
[A]
sort
[B]
order
[C]
alphabet
[D]
arrange
सही उत्तर:
sort
व्याख्या:
sort command lines को sorting order में arrange करती है.
Correct Answer:
sort
Explanation:
The sort command arranges lines in sorted order.
प्रश्न 363
363.
Linux में किसी file की शुरुआत में data जोड़ने के लिए कौन-सी command सीधे dedicated command नहीं है?
[A]
cat
[B]
prepend
[C]
insert
[D]
addstart
Question 363
363.
Which of the following is not a dedicated command for directly prepending data to a file in Linux?
[A]
cat
[B]
prepend
[C]
insert
[D]
addstart
सही उत्तर:
cat
व्याख्या:
Linux में prepend के लिए सामान्यतः अलग dedicated command नहीं होती; text processing tools का उपयोग किया जाता है.
Correct Answer:
cat
Explanation:
Linux does not normally provide a dedicated prepend command; text-processing tools can be used.
प्रश्न 364
364.
Linux में file contents को terminal पर display करने के लिए कौन-सी command प्रयोग होती है?
[A]
cat
[B]
view
[C]
show
[D]
display
Question 364
364.
Which command is used to display file contents in the terminal in Linux?
[A]
cat
[B]
view
[C]
show
[D]
display
सही उत्तर:
cat
व्याख्या:
cat command file की contents को standard output पर display करती है.
Correct Answer:
cat
Explanation:
The cat command displays file contents on standard output.
प्रश्न 365
365.
Linux में multiple files को concatenate करने के लिए कौन-सी command commonly प्रयोग होती है?
[A]
cat
[B]
joinfile
[C]
merge
[D]
combine
Question 365
365.
Which command is commonly used to concatenate multiple files in Linux?
[A]
cat
[B]
joinfile
[C]
merge
[D]
combine
सही उत्तर:
cat
व्याख्या:
cat command multiple files के contents को concatenate कर सकती है.
Correct Answer:
cat
Explanation:
The cat command can concatenate the contents of multiple files.
प्रश्न 366
366.
Linux में file को line numbers के साथ display करने के लिए कौन-सी command उपयोगी है?
[A]
nl
[B]
number
[C]
lines
[D]
catnum
Question 366
366.
Which command is useful for displaying a file with line numbers in Linux?
[A]
nl
[B]
number
[C]
lines
[D]
catnum
सही उत्तर:
nl
व्याख्या:
nl command text की lines को line numbers के साथ display कर सकती है.
Correct Answer:
nl
Explanation:
The nl command can display text with line numbers.
प्रश्न 367
367.
Linux में command output को दूसरी command के input में भेजने के लिए कौन-सा symbol प्रयोग होता है?
[A]
|
[B]
>
[C]
>>
[D]
<
Question 367
367.
Which symbol sends the output of one command as input to another command in Linux?
[A]
|
[B]
>
[C]
>>
[D]
<
सही उत्तर:
|
व्याख्या:
| pipe symbol एक command के output को दूसरी command के input में भेजता है.
Correct Answer:
|
Explanation:
The | pipe symbol sends the output of one command as input to another command.
प्रश्न 368
368.
Linux में file का group बदलने के लिए कौन-सी command प्रयोग होती है?
[A]
chgrp
[B]
group
[C]
chgroup
[D]
grpchange
Question 368
368.
Which command is used to change the group of a file in Linux?
[A]
chgrp
[B]
group
[C]
chgroup
[D]
grpchange
सही उत्तर:
chgrp
व्याख्या:
chgrp command file या directory का group ownership बदलती है.
Correct Answer:
chgrp
Explanation:
The chgrp command changes the group ownership of a file or directory.
प्रश्न 369
369.
Linux file permission में r का अर्थ क्या है?
[A]
Read
[B]
Run
[C]
Root
[D]
Rename
Question 369
369.
What does r mean in Linux file permissions?
[A]
Read
[B]
Run
[C]
Root
[D]
Rename
सही उत्तर:
Read
व्याख्या:
r permission file को पढ़ने की अनुमति दर्शाती है.
Correct Answer:
Read
Explanation:
The r permission represents read access.
प्रश्न 370
370.
Linux file permission में w का अर्थ क्या है?
[A]
Write
[B]
Watch
[C]
Work
[D]
Web
Question 370
370.
What does w mean in Linux file permissions?
[A]
Write
[B]
Watch
[C]
Work
[D]
Web
सही उत्तर:
Write
व्याख्या:
w permission file में data modify या write करने की अनुमति दर्शाती है.
Correct Answer:
Write
Explanation:
The w permission represents write access.
प्रश्न 371
371.
Linux file permission में x का अर्थ क्या है?
[A]
Execute
[B]
Exit
[C]
Extract
[D]
Expand
Question 371
371.
What does x mean in Linux file permissions?
[A]
Execute
[B]
Exit
[C]
Extract
[D]
Expand
सही उत्तर:
Execute
व्याख्या:
x permission file को execute करने की अनुमति दर्शाती है.
Correct Answer:
Execute
Explanation:
The x permission represents execute access.
प्रश्न 372
372.
Linux में chmod 755 का सामान्य अर्थ क्या है?
[A]
Owner को rwx और बाकी को r-x
[B]
सभी को केवल read
[C]
Owner को केवल write
[D]
सभी को पूर्ण permission
Question 372
372.
What does chmod 755 generally mean in Linux?
[A]
Owner has rwx and others have r-x
[B]
Everyone has read only
[C]
Owner has write only
[D]
Everyone has full permission
सही उत्तर:
Owner को rwx और बाकी को r-x
व्याख्या:
chmod 755 में owner के पास read, write, execute और group तथा others के पास read, execute permission होती है.
Correct Answer:
Owner has rwx and others have r-x
Explanation:
With chmod 755, the owner has read, write and execute permissions while group and others have read and execute permissions.
प्रश्न 373
373.
Linux में chmod 644 का सामान्य अर्थ क्या है?
[A]
Owner rw और बाकी r
[B]
सभी rwx
[C]
Owner केवल x
[D]
सभी केवल x
Question 373
373.
What does chmod 644 generally mean in Linux?
[A]
Owner has rw and others have r
[B]
Everyone has rwx
[C]
Owner has only x
[D]
Everyone has only x
सही उत्तर:
Owner rw और बाकी r
व्याख्या:
chmod 644 में owner के पास read/write और group तथा others के पास read permission होती है.
Correct Answer:
Owner has rw and others have r
Explanation:
With chmod 644, the owner has read/write permissions and group and others have read permission.
प्रश्न 374
374.
Linux में numeric permission 777 का क्या अर्थ है?
[A]
सभी को rwx
[B]
सभी को केवल r
[C]
Owner को rw
[D]
सभी को केवल x
Question 374
374.
What does numeric permission 777 mean in Linux?
[A]
Everyone has rwx
[B]
Everyone has only r
[C]
Owner has rw
[D]
Everyone has only x
सही उत्तर:
सभी को rwx
व्याख्या:
777 permission में owner, group और others सभी को read, write और execute permission मिलती है.
Correct Answer:
Everyone has rwx
Explanation:
Permission 777 gives read, write and execute permissions to owner, group and others.
प्रश्न 375
375.
Linux में umask का उपयोग किसके लिए होता है?
[A]
Default permissions को प्रभावित करने के लिए
[B]
Files delete करने के लिए
[C]
Users remove करने के लिए
[D]
Processes start करने के लिए
Question 375
375.
What is umask used for in Linux?
[A]
To affect default permissions
[B]
To delete files
[C]
To remove users
[D]
To start processes
सही उत्तर:
Default permissions को प्रभावित करने के लिए
व्याख्या:
umask नई files और directories की default permission bits को प्रभावित करता है.
Correct Answer:
To affect default permissions
Explanation:
umask affects the default permission bits assigned to new files and directories.
प्रश्न 376
376.
Linux में current user का username देखने के लिए कौन-सी command प्रयोग होती है?
[A]
whoami
[B]
username
[C]
user
[D]
who
Question 376
376.
Which command is used to display the current username in Linux?
[A]
whoami
[B]
username
[C]
user
[D]
who
सही उत्तर:
whoami
व्याख्या:
whoami command वर्तमान logged-in user का username दिखाती है.
Correct Answer:
whoami
Explanation:
The whoami command displays the username of the current user.
प्रश्न 377
377.
Linux में वर्तमान user की identity और groups की जानकारी देखने के लिए कौन-सी command उपयोगी है?
[A]
id
[B]
identity
[C]
userdetails
[D]
uidinfo
Question 377
377.
Which command is useful for displaying the current user identity and group information in Linux?
[A]
id
[B]
identity
[C]
userdetails
[D]
uidinfo
सही उत्तर:
id
व्याख्या:
id command user ID, group ID और संबंधित groups की जानकारी दिखा सकती है.
Correct Answer:
id
Explanation:
The id command can display user ID, group ID and group membership information.
प्रश्न 378
378.
Linux में नया user account बनाने के लिए कौन-सी command commonly प्रयोग होती है?
[A]
useradd
[B]
newuser
[C]
adduserfile
[D]
mkuser
Question 378
378.
Which command is commonly used to create a new user account in Linux?
[A]
useradd
[B]
newuser
[C]
adduserfile
[D]
mkuser
सही उत्तर:
useradd
व्याख्या:
useradd command नया user account बनाने के लिए commonly प्रयोग होती है.
Correct Answer:
useradd
Explanation:
The useradd command is commonly used to create a new user account.
प्रश्न 379
379.
Linux में user account हटाने के लिए कौन-सी command प्रयोग होती है?
[A]
userdel
[B]
deluserfile
[C]
rmuser
[D]
removeuser
Question 379
379.
Which command is used to delete a user account in Linux?
[A]
userdel
[B]
deluserfile
[C]
rmuser
[D]
removeuser
सही उत्तर:
userdel
व्याख्या:
userdel command user account को delete करने के लिए प्रयोग होती है.
Correct Answer:
userdel
Explanation:
The userdel command is used to delete a user account.
प्रश्न 380
380.
Linux में group हटाने के लिए कौन-सी command प्रयोग होती है?
[A]
groupdel
[B]
delgroupfile
[C]
rmgroup
[D]
removegrp
Question 380
380.
Which command is used to delete a group in Linux?
[A]
groupdel
[B]
delgroupfile
[C]
rmgroup
[D]
removegrp
सही उत्तर:
groupdel
व्याख्या:
groupdel command group account को delete करने के लिए प्रयोग होती है.
Correct Answer:
groupdel
Explanation:
The groupdel command is used to delete a group.
प्रश्न 381
381.
Linux में किसी user को supplementary group में जोड़ने के लिए कौन-सी command उपयोगी है?
[A]
usermod
[B]
usergroup
[C]
groupuser
[D]
addtogroup
Question 381
381.
Which command is useful for adding a user to a supplementary group in Linux?
[A]
usermod
[B]
usergroup
[C]
groupuser
[D]
addtogroup
सही उत्तर:
usermod
व्याख्या:
usermod command user account की properties और group membership बदलने के लिए उपयोगी है.
Correct Answer:
usermod
Explanation:
The usermod command can modify user account properties and group membership.
प्रश्न 382
382.
Linux में superuser account को सामान्यतः किस नाम से जाना जाता है?
[A]
root
[B]
admin
[C]
super
[D]
kernel
Question 382
382.
What is the superuser account commonly called in Linux?
[A]
root
[B]
admin
[C]
super
[D]
kernel
सही उत्तर:
root
व्याख्या:
Linux में root सबसे अधिक privileges वाला superuser account है.
Correct Answer:
root
Explanation:
The root account is the superuser account with extensive privileges in Linux.
प्रश्न 383
383.
Linux में root privileges के साथ command चलाने के लिए कौन-सी command commonly प्रयोग होती है?
[A]
sudo
[B]
rootrun
[C]
admin
[D]
superuser
Question 383
383.
Which command is commonly used to run a command with elevated privileges in Linux?
[A]
sudo
[B]
rootrun
[C]
admin
[D]
superuser
सही उत्तर:
sudo
व्याख्या:
sudo authorized users को elevated privileges के साथ command चलाने की अनुमति देता है.
Correct Answer:
sudo
Explanation:
sudo allows authorized users to run commands with elevated privileges.
प्रश्न 384
384.
Linux में वर्तमान working directory का path देखने के लिए कौन-सी command प्रयोग होती है?
[A]
pwd
[B]
path
[C]
where
[D]
current
Question 384
384.
Which command is used to display the current working directory path in Linux?
[A]
pwd
[B]
path
[C]
where
[D]
current
सही उत्तर:
pwd
व्याख्या:
pwd command current working directory का absolute path दिखाती है.
Correct Answer:
pwd
Explanation:
The pwd command displays the absolute path of the current working directory.
प्रश्न 385
385.
Linux में home directory में जाने के लिए कौन-सी command commonly प्रयोग की जाती है?
[A]
cd ~
[B]
home
[C]
cd home
[D]
goto home
Question 385
385.
Which command is commonly used to go to the home directory in Linux?
[A]
cd ~
[B]
home
[C]
cd home
[D]
goto home
सही उत्तर:
cd ~
व्याख्या:
cd ~ current user की home directory में जाने के लिए प्रयोग किया जाता है.
Correct Answer:
cd ~
Explanation:
cd ~ is commonly used to move to the current user home directory.
प्रश्न 386
386.
Linux में एक directory ऊपर जाने के लिए कौन-सी command प्रयोग होती है?
[A]
cd ..
[B]
cd /
[C]
cd up
[D]
cd parent
Question 386
386.
Which command is used to move one directory level up in Linux?
[A]
cd ..
[B]
cd /
[C]
cd up
[D]
cd parent
सही उत्तर:
cd ..
व्याख्या:
cd .. current directory की parent directory में ले जाती है.
Correct Answer:
cd ..
Explanation:
cd .. moves to the parent directory of the current directory.