Directory progs में सभी files executable बनाने का command?
(UGC NET C.S. June-2018 (Paper-II))
Correct Answer: A
Explanation (EN): chmod -R a+x recursively gives execute permission.
Explanation (HI): यह command recursively execute permission देता है।
Linux में file print करने का command?
(UGC NET C.S. December-2018 (Paper-II))
Correct Answer: B
Explanation (EN): lpr command is used for printing files.
Explanation (HI): lpr command file print करता है।
Windows XP statements
(UGC NET C.S. December-2018 (Paper-II))
Correct Answer: C
Explanation (EN): Windows XP supports both network types and dynamic protocol loading.
Explanation (HI): Windows XP दोनों network types support करता है।
i-node maximum file size
(UGC NET C.S. June-2020 (Paper-II))
Correct Answer: B
Explanation (EN): Calculation yields approx 513 MB.
Explanation (HI): Calculation के अनुसार लगभग 513 MB।
कौन-सा pipe .c और .h files की lines count करता है?
(UGC NET C.S. Exam-24 June-2019 (Paper-II))
Correct Answer: D
Explanation (EN): cat*[ch] selects .c and .h files and wc -l counts lines.
Explanation (HI): यह command .c और .h files की lines count करता है।
fork() child process को क्या return करता है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: B
Explanation (EN): Child gets 0, parent gets PID.
Explanation (HI): Child को 0 मिलता है।
Unix में arguments की संख्या कैसे पता करते हैं?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: D
Explanation (EN): $# gives number of arguments.
Explanation (HI): $# arguments की संख्या बताता है।
Unix में invalid file open mode कौन-सा है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: C
Explanation (EN): O_WRRK is invalid.
Explanation (HI): O_WRRK valid mode नहीं है।
Unix में write system call का return type क्या है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: B
Explanation (EN): write returns ssize_t.
Explanation (HI): write का return type ssize_t होता है।
head command default कितनी lines दिखाता है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: C
Explanation (EN): Default is 10 lines.
Explanation (HI): Default 10 lines होती हैं।