What is the basic difference between unix and windows
operating systems?

Answer Posted / shubh

Unix Window

* It is hierachile model. It is a flat model.
* It is CUI. It is a GUI.
* It is command base. It is menu base.
* It is not event driven. It is event driven.
* It is multi-processor. It is not multiprocessor
* Free sourced OS. Licensed OS.
* It doesn't have registry It is having registry
concept. concept.

Is This Answer Correct ?    19 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain mount and unmount command.

607


what is the advaantage of each user having its own copy of the shell?

2022


What do chmod, chown, chgrp commands do?

624


What difference between cmp and diff commands?

713


Which command will print your home directory on screen?

536






How do I search for text in vi?

575


Is there any method to erase all files in the current directory, along with its all sub-directories, by using only one command?

580


What are reported commands?

556


How can we use grep command in unix?

606


What is the size of time_t?

635


How do I clear my terminal history?

573


What is in grep command?

636


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:

1749


What is the difference between cat and more command?

618


What does 'mkdir' command do in UNIX?

649