Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is the difference between thread and process
What is the difference between thread and process?
✍: Guest
A thread is a path of execution that run on CPU, a process is a collection of threads that
share the same virtual memory. A process has at least one thread of execution, and a
thread always run in a process context.
Note:- Its difficult to cover threading interview question in this small chapter. These
questions can take only to a basic level. If you are attending interviews where people are
looking for threading specialist, try to get deeper in to synchronization issues as that's the
important point they will stress.
2007-10-22, 4612👍, 0💬
Popular Posts:
What's the output of the following program? And why? #include main() { typedef union { int a; char b...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
What are the different storage classes in C? C has three types of storage: automatic, static and all...
How To Select an Oracle System ID (SID)? - Oracle DBA FAQ - Creating New Database Instance Manually ...
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...