why unix operating system provides more security than other
operating systems?

Answer Posted / lakshmi

it provides much security.it canot show strenth of passward

Is This Answer Correct ?    3 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does pipe () work?

597


What is command statement?

543


Can you enlist some commonly used network commands?

603


How do you grep recursively?

557


Explain command to show the space allocation of files?

633






What is ctrl d?

596


Which command should you use to find the remaining disk space in unix server?

714


How do I delete files from command prompt?

555


What is the command to view process running?

578


What does the command '$ls | wc –l > file1' do?

684


Why is shebang used?

599


What is the difference between grep and grep?

569


What is the pipe command?

580


Which command is used to find whether the system is 32 bit or 64 bit?

633


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1764