What is the difference between in-proc and out-of-proc?
Answer Posted / harshvardhan
An inproc is one which runs in the same process area as that of the client giving tha advantage of speed but the disadvantage of stability becoz if it crashes it takes the client application also with it.Outproc is one which works outside the clients memory thus giving stability to the client, but we have to compromise a bit on speed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Given n red balls and m blue balls and some containers, how would you distribute those balls among the containers such that the probability of picking a red ball is maximized, assuming that the user randomly chooses a container and then randomly picks a ball from that.
What is the Difference between in memory database and physical database
how do i add a column dynamically in a table by using java application?
What is the difference beween joblib and steplib statements
how we can know the funcions available in a class recording java?
what is an INI file?
Tell me the jobs for the MCA Fresher in delhi, Noida..
Diffrence between 2.0,3.0,3.5,4.0. versions of .net?
how can i create report in abap to insert data in table pa0002 using insert command
what are stubs related to foxpro?
in cobol,wat is the difference in using 'set index in occurs clause' ....and 'occurs depending-on clause'
shall we execute our java programmes in jre
What for decision coverage and modified condition decision coverage are used? Wat is the difference between them?
What is the entry point function of a DLL?
You are given a dictionary of all valid words. You have the following 3 operations permitted on a word: delete a character, insert a character, replace a character. Now given two words - word1 and word2 - find the minimum number of steps required to convert word1 to word2. (one operation counts as 1 step.)