distinguish between user mode and kernel mode?

Answer Posted / sachin tyagi

user mode is an area that is used to execute userlevel
commands .

But in kernel mode all the commands like device driver etc.
executes.

Is This Answer Correct ?    21 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is grep called grep?

783


How to find $ai_serual resolved path by using unix

1030


What command is used to check the current users?

598


What does pipe () return?

599


What is the use of the command 'ls -x chapter[1-5]' ?

665






Why is awk called awk?

581


Who command in unix?

579


Which command will print your home directory on screen?

548


What does this command do,"$more readme.txt“?

693


Write a command to display a file’s contents in various formats?

630


What is the first character of the output in ls l command?

637


What is grep command in unix with examples?

614


What is the general format of unix command syntax?

698


What happens when we execute a unix command?

601


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:

1766