For duration can you view the history on the Internet explorer?
3 Weeks ago
4 Weeks ago
5 Weeks ago
1 Weeks ago
How do you search for Files or Folders on desktop?
My Documents
My Computer
Start: Search
Start: Run
If you want to check your IP on PC how do you do that?
a. Start: Programmes: Accessories: Command prompt
Agent drive (G)
My documents
Supervisory drive (Z)
How do you set the Screen Saver on your PC ?
a. Start: Accessories: Screen
My Computer: G drive
Right click on Desktop: Properties: Screen Saver
Network
For duration,how many weeks can you view the history on the Internet explorer?
"You have created a executable file and the current access mode of the file is: -rw-r--r-- Now, you want to give execute permission only to the owner of this file, without altering any other access. What command you will issue?"
chmod 700 filename
chmod 755 filename
chmod 644 filename
chmod 744 filename
What of the below commands will rename a file from its oldname to newname?
rm oldname newname
rename oldname newname
ren oldname newname
mv oldname newname
What command we can use to determine a file type?
type filename
file filename
desc filename
.filename
In vi if we want to replace any string e.g. "NAME" with "name" from line number 1 to 10 only, what command we can use?
:%s/NAME/name/
:1-10s/NAME/name/
:1,10s/NAME/name/
:s/NAME/name/
How to check the exit status of the previous command?
$?
$$
$#
$@