Operating System Essentials: UNIX/Linux Commands and Windows Shortcuts
Test your knowledge of basic operating system commands and shortcuts, including UNIX/Linux file permissions, shell commands, kernel concepts, and Windows keyboard shortcuts.
Questions
With what command you can see your user name?
- whoami
- me
- i
- pwd
Which one of the following is NOT one of the kernel subsystems in UNIX?
- Process Management
- Memory Management
- File Management
- Device Management
- Capacity Management
- Network Management
How to get the operating system's information in unix?
- pwd
- uptime
- top
- uname -a
Select all that are a type of shell in UNIX.
- sh
- csh
- ksh
- bash
The first program that runs on your terminal when you log in to your session is SHELL.
- True
- False
How do you get help on any command in UNIX?
- help/?
- help <command>
- man <command>
- <command> /?
What is the purpose of Ctrl + Esc?
- Brings up start menu
- Opens task manager
- Minimizes all applications
- Closes all applications
To refresh contents, Press
- F3
- F2
- F1
- F5
Which one of the following is used to open properties window of selected icon?
- Shift + Enter
- Alt + Enter
- Ctrl + Enter
- F2
To create screen shot for current program, Use
- F6
- Alt + Print Screen
- Print Screen
- Insert
Which key is used to rename selected icon?
- F2
- F8
- Alt + F5
- Ctrl + Enter
Which key is used to start find from desktop?
- F2
- F8
- F4
- F3
To simulate right-click on selected item, Use
- Shift + F10
- Alt + F10
- Shift + Alt + F10
- Shift + F1
Shift + Del is used to
- Delete programs/files temporarily
- Delete programs/files permanently
- Opens Recycle Bin
- Move files to Recycle Bin
What is the use of Alt + F4?
- Restores current open program
- Maximazies current open program
- Rename selected icon
- Closes current open program
To switch between applications on taskbar, Press
- Esc
- Tab
- Alt + Esc
- F10
If you want to find the exact path of your home directory which command do you use?
- echo $PWD
- pwd
- home
- echo $HOME
The sequence of directories the shell searches to look for a command is specified in its own ______________ variable.
- HOME
- JAVA
- PATH
- BIN
Which of the below options are not a part of file attributes on UNIX file system?
- File type
- Links
- Ownership
- File size
- Last modification time
- File name
A file in UNIX has -rwxr-xr-x permissions. Using which of the below commands, the permissions on the file be changed so that group and others only have read permission on the file?
- chmod 677 <filename>
- chmod u+rwx,gr+rw <filename>
- chmod a+r <filename>
- chmod 744 <filename>