what are background threads? give ex?

Answers were Sorted based on User's Feedback



what are background threads? give ex? ..

Answer / petchiappan

All pooled threads are background threads.
Background threads Terminate automatically when the
application's foreground thread(s) end

Is This Answer Correct ?    1 Yes 3 No

what are background threads? give ex? ..

Answer / koushh

Garbage Collector is a background thread.
It run until .Net code is running else idle.

Is This Answer Correct ?    1 Yes 3 No

what are background threads? give ex? ..

Answer / bharani

A background thread is a thread that does not interact with
the user. We can say it is basically a while loop.
ex
while(true)
{
if (condition == fail)
break
}

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More Dot Net Framework Interview Questions

what is entity data model?

0 Answers   Microsoft,


How does servicing work for the .net framework 3.0? If I install the .net framework 3.0, can I get service updates for the .net framework 2.0?

0 Answers  


How can I stop my code being reverse-engineered from IL

1 Answers  


What is MSIL, IL, CTS and, CLR

1 Answers  


How does .net framework works?

0 Answers  






What is associationset? : Entity framework

0 Answers  


How can Bitwise OR operator reresents in .Net?? To which alias name a variable points to if it is declared as "int" variable??

1 Answers  


What is the meaning of unobtrusive javascript? Explain us by any practical example.

0 Answers  


What is the domain object?

0 Answers  


What is the difference between entity framework and mvc?

0 Answers  


what is Thread Priority?

2 Answers  


Can you Write the GC(Garbage Collector) Algoritham in .NET? (But not Explination of Working of GC).

0 Answers  


Categories