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

Answers were Sorted based on User's Feedback



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

Answer / prasanth verkot-accel frontlin

Unix is an free s/w but windows is not.

Is This Answer Correct ?    70 Yes 21 No

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

Answer / rakesh

unix has a interface between user and kernal(hardware)
called as shell . Which is very important and this is why
we dont here any virus attacks on unix but in windows we
dont have any shell user can directly communicate to
hardware and hence virus occurs

Is This Answer Correct ?    57 Yes 12 No

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

Answer / quadri

windows supports multi threading concept

Is This Answer Correct ?    50 Yes 14 No

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

Answer / muthu

In Unix, a shared object (.so) file contains code to be used
by the program, and also the names of functions and data
that it expects to find in the program. When the file is
joined to the program, all references to those functions and
data in the file's code are changed to point to the actual
locations in the program where the functions and data are
placed in memory. This is basically a link operation.

In Windows, a dynamic-link library (.dll) file has no
dangling references. Instead, an access to functions or data
goes through a lookup table. So the DLL code does not have
to be fixed up at runtime to refer to the program's memory;
instead, the code already uses the DLL's lookup table, and
the lookup table is modified at runtime to point to the
functions and data.

In Unix, there is only one type of library file (.a) which
contains code from several object files (.o). During the
link step to create a shared object file (.so), the linker
may find that it doesn't know where an identifier is
defined. The linker will look for it in the object files in
the libraries; if it finds it, it will include all the code
from that object file.

In Windows, there are two types of library, a static library
and an import library (both called .lib). A static library
is like a Unix .a file; it contains code to be included as
necessary. An import library is basically used only to
reassure the linker that a certain identifier is legal, and
will be present in the program when the DLL is loaded. So
the linker uses the information from the import library to
build the lookup table for using identifiers that are not
included in the DLL. When an application or a DLL is linked,
an import library may be generated, which will need to be
used for all future DLLs that depend on the symbols in the
application or DLL.

Is This Answer Correct ?    43 Yes 11 No

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

Answer / s.radhika

commands syntax is different

Is This Answer Correct ?    45 Yes 14 No

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

Answer / nazneen

Unix is more secure as compared to windows. Unix uses File
encrytion FAP and login with a password

Is This Answer Correct ?    32 Yes 7 No

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

Answer / simrati sharma

unix supports multithreading.where as wincows doesnot
supports multithreading.

Is This Answer Correct ?    96 Yes 72 No

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

Answer / vishal

Unix is hierarchical relationship . each process becomes
child of other process.

UNIX uses daemons, Windows has service processes

Is This Answer Correct ?    24 Yes 5 No

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

Answer / 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

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

Answer / akshita

1. unix has inbuilt mail subroutine called " sendmail"
whereas there is no such inbuilt utility in windows
environment..

2. it is little difficult for a novice user to work in unix
environment as it requires its user to learn commands
but if we see it in case of windows,even a layman can
operate easily..as it is more user friendly...

Is This Answer Correct ?    21 Yes 4 No

Post New Answer

More Unix Commands Interview Questions

Give a regular expression that finds two things, try to come up with regular expressions that find each individually using "egrep" command?

5 Answers  


Give command that will make the file "run.sh" executable?

10 Answers   IBM,


How to setup Disk space as well as memory in solaris10?

4 Answers  


What difference between cmp and diff commands?

0 Answers  


How to find and replace the below command?

2 Answers   HCL,






What is nr in awk command?

0 Answers  


How to find $ai_serual resolved path by using unix

0 Answers  


What is {} in find command?

0 Answers  


Are you in or at the office?

0 Answers  


Who wrote grep?

0 Answers  


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<stdlib.h> # include <stdio.h> 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:

0 Answers  


What is the difference between awk and grep?

0 Answers  


Categories