Unix/Linux and Windows Operating Systems Quiz
Quiz covering Unix/Linux commands, file systems, shells, and Windows XP operating system concepts
Questions
XP supports IP Version 6?
- True
- False
In XP ClearType — Microsoft’s anti-aliasing font display technology is enabled by default.
- True
- False
How to shutdown a computer?
- shutdown -s -t 30 -c “ “
- syskill command
- system32/shutdown.bat
- windowskey + S
How can we create a fake virus and threaten our loved ones? :) Which of the following while converted into a bat file really threatens??
- @echo off echo You want to delete windows? dir /s echo all files deleted msg * windows got deleted and needs to close.
- del windows echo all files have been deleted. You have been cheated
- shutdown -a
- echo Hey Dont get afraid I wont eat your computer
The word XP in Windows XP stands for..
- Expertise
- Experience
- Excellency
- Exclusive
Which name cannot be given to a folder in windows?
- NUL
- CON1
- AUX1
- REG
BSD is a standard used for unix system
- True
- False
What is/are true aboiut shell
- • Piece of software that handles all the communictions
- Command interpreter
- • Considered the primary interaction with the user
- • Interface between os nand user
Which one of the followings is the default hp-unix shell?
- Korn
- Bourne
- Posix
- Key
Which one is the oldest and most used shell
- korn
- Bourne
- Bash
- C
Which one is the superuser prompt?
- %
- $
- >
- #
what is the location of the .profile file?
- Home/.profile
- Etc/.profile
- User/Bin/.profile
- Non of the above
- Any one from first three
I need the list of files in a csv format(comma separated values format).What will be my command?
- ls -m
- ls -mlrt
- ls -mrt
- Both A(ls -m) and C(ls -mrt)
What is the default parameter that attaches to ls?
- ls -l
- ls -C
- ls -x
- ls -A
There are 10 dot files (i,e files starting with .).What will be the output of ls command?
- dot files will not be listed
- Last dot file only be listed
- only latest dot file be listed
- dot files will be listed
There are 10 dot files (i,e files starting with .).What will be the output of ls command executed by root?
- dot files will not be listed
- Last dot file only be listed
- only latest dot file be listed
- dot files will be listed
What is the ls command to view subdirectories recursively?
- ls -R
- ls -l
- ls -r
- ls -A
Which variable determines the number of character positions in the output line for ls command?
- COLUMNS
- If COLUMNS is not set,current column value of the display
- default value of 80
- Both A and B
can you decipher the file type by its ls -lrt --> "prwxrwxr-x-" ?
- The entry is a local socket
- The entry is a first-in,first-out (FIFO) special file
- The entry is an ordinary file
- Purged Permissions
1 How to send signals to other processes?
- 1 Use sigsend()
- 2 use kill()
- 3 use signal()
- 4 Only init can send signals