The command msinfo32 is used to open
Registry
System Properties
Control panel
System information
Your system frequently restarts unexpectedly, you may fix this issue by doing the following.
Nothing can be done
Open system properties > Advanced>Setting under startup and Recovery>UnCheck restart on system failure
open Msconfig and disable all startup items
Do a Disk Derfrgmentation
What is the full form for ARP?
Address Resolution Protocol
Address Revolution Protocol
Address Resolution Packets
Automatic Resulution Protocol
What is the Port number used for a SSL?
23
21
80
443
Windows 98 is a NT based OS
True
False
Which Operating system has Jump list features?
Windows ME
Windows 7
Windows XP
Windows 95
How do you identify the Directories and the executables alone
ls -d
ls -Fx
ls -ad
ls -ltr
in a string search, _ is used to replace a single charecter and * is used to replace multiple words
what is the significance of $@ in unix shell
The total count of positional parameters.
Name of the executed command
same as $* except when enclosed in double quotes
none of these
Predict the output of the following program code main() { fork(); fork(); fork(); printf("Am in TCS!"); }
It will get printed once
it will get printed 8times
it will not work
It wil print three times