distinguish between user mode and kernel mode?

Answer Posted / harsha

kernal mode has higher priority while user mode has lower
priority.
kernal mode has ability to read user mode but user mode has
not priority to interfare in kernal mode.

Is This Answer Correct ?    9 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

633


What does sed command do in unix?

570


What does the “echo” command do?

629


What is command statement?

545


Which command is used to create a directory?

577






What is used to type command?

552


What is the difference between cat and more command?

630


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:

1769


What does find command return in unix?

604


How to find $ai_serual resolved path by using unix

1034


Which command is used to restrict incoming messages?

597


Who wrote grep?

589


Why is awk called awk?

581


Why is it called grep?

565


What do chmod, chown, chgrp commands do?

645