<< < 1 2 3 4 5 6 7 8 9 10 11 > >>   Sort: Rank

What are dependencies in cache and what are the different types of dependencies ?
.NET INTERVIEW QUESTIONS - What are dependencies in cache and what are the different types of dependencies ? When you add an item to the cache, you can define dependency relationships that can force that item to be removed from the cache under specific activities of dependencies. Example if the cach...
2009-05-05, 4309👍, 0💬

SQA - How to prove that the server in a network ....
How to prove that the server in a network can handle 1,000,000 HTTP requests in a span of a month, how to design a test? Thanks, Sasha
2009-04-28, 4983👍, 0💬

How can we get access to cache object ?
.NET INTERVIEW QUESTIONS - How can we get access to cache object ? The Cache object is defined in the System.Web.Caching namespace. You can get a reference to the Cache object by using the Cache property of the HttpContext class in the System.Web namespace or by using the Cache property of the Page ...
2009-04-28, 4327👍, 0💬

What is the difference between Cache object and application object ?
.NET INTERVIEW QUESTIONS - What is the difference between Cache object and application object ? The main difference between the Cache and Application objects is that the Cache object provides cache-specific features, such as dependencies and expiration policies.
2009-04-28, 4398👍, 0💬

What is an application object ?
.NET INTERVIEW QUESTIONS - What is an application object ? Application object can be used in situation where we want data to be shared across users globally.
2009-04-21, 4092👍, 0💬

How can i trap the arrow keys inside the timer program?
How can i trap the arrow keys inside the timer program? How do you trap arrow keys in a regular program? What makes a timer program special?
2009-04-19, 4526👍, 0💬

fork()
main() { int i = 2; int ret_val; while(i > 0) { ret_val = fork(); if (ret_val==0) { printf(“In child %d. \n”, i); } else{ printf(“In parent %d. \n”, i);} i=i-1; } } } The logic of this code looks clear. But what is the question?
2009-04-19, 5430👍, 0💬

What is Platform Invoke or pinvoke?
Managed Code and Unmanaged Code related ASP.NET- What is Platform Invoke or pinvoke? The process of executing native code from within a .NET assembly is called platform invoke, or pinvoke for short. You use platform invoke to call the Win32 API directly, to access existing (legacy) DLLs your company...
2009-03-30, 4346👍, 0💬

What is Serialization Formatters in .NET Remoting ?
What is Serialization Formatters in .NET Remoting ? When any object is to be sent across the transport channel, it must be serialized and packed into a data format that can be transmitted with the wire. On the other end of the wire, this serialized data is read and deserialized back to the actual ob...
2009-03-27, 4163👍, 0💬

.NET Remoting Overview ?
.NET Remoting Overview ? .NET Remoting is very flexible. You have a wide range of communications options and activation methods, as well as full control over a distributed object's lifecycle. You can choose TCP or HTTP communications protocols on any port, using text or binary formatting. The .NET R...
2009-03-27, 4381👍, 0💬

Some Important Notes about .NET
Some Important Notes about .NET The dependence on assembly metadata implies that client applications must understand .NET concepts. As a result, applications that make use of .NET Remoting are not interoperable with other systems. Although it's possible to write an XML Web service using .NET Remotin...
2009-03-26, 4187👍, 0💬

What is Abstract ?
What is Abstract ? NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Jav...
2009-03-26, 4060👍, 0💬

Advantage of Remoting over Web Services ?
Advantage of Remoting over Web Services ? .NET Remoting is a distributed objects infrastructure. It allows processes to share objects—to call methods on and access properties of objects that are hosted in different application domains within the same process, different processes executing on the sam...
2009-03-24, 4151👍, 0💬

Security in Remoting ?
Security in Remoting ? Security is of paramount importance to any distributed application. Although the .NET Remoting infrastructure does not define any security features itself, because distributed applications are managed code they have full access to all of the .NET security features. In addition...
2009-03-24, 4577👍, 0💬

How will you freeze the requirement in this case?
How will you freeze the requirement in this case? What will be your requirement satisfaction criteria? To get the answer, ask this question to stakeholders: How much response time is ok for you? If they say, we will accept the response if it’s within 2 seconds, then this is your requirement measure....
2009-03-23, 8471👍, 0💬

Performance Testing
What are major factors to consider when doing performance testing What is Performance Testing? Testing conducted to evaluate the compliance of a system or component with specified performance requirements. Often this is performed using an automated test tool to simulate large number of users. Also k...
2009-03-23, 5494👍, 0💬

How to measure functional software requirement specification (SRS) documents?
How to measure functional software requirement specification (SRS) documents? Well, we need to define some standard tests to measure the requirements. Once each requirement is passed through these tests you can evaluate and freeze the functional requirements. Let’s take an example. You are working o...
2009-03-20, 7435👍, 0💬

How to test software requirements specification (SRS)?
How to test software requirements specification (SRS)? Do you know “Most of the bugs in software are due to incomplete or inaccurate functional requirements?” The software code, doesn’t matter how well it’s written, can’t do anything if there are ambiguities in requirements. It’s better to catch t...
2009-03-20, 5706👍, 0💬

Which is the best place to store ConnectionString in Dot Net Projects?
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first ASP.NET project. But, I was used to store my variables, such as connection strings, in the global.asa file, in an application. However, these variables are different on my development and production ...
2009-03-18, 7237👍, 0💬

Give me the example of SRS and FRS
Give me the example of SRS and FRS SRS :- Software Requirement Specification BRS :- Basic Requirement Specification FRS :- Functional requirment specification FRS mainly says the particular functionality. FRS mainly used for change request, enchancements, additional functionalites. BRD contain Basic...
2009-03-17, 17879👍, 0💬

What is dot Net Remoting?
What is dot Net Remoting? NET Remoting is an enabler for application communication. It is a generic system for different applications to use to communicate with one another. .NET objects are exposed to remote processes, thus allowing interprocess communication. The applications can be located on the...
2009-03-11, 4672👍, 0💬

I want to use the Win32 API function .....
When we use windows API in Dot Net? I want to use the Win32 API function : SendMessageToDescendants I want to use it in a VB.Net app, but I have a few questions..... 1) Can one use Win32 API functions in VB.Net 2) Is doing so a "no no" 3) are VB.Net windows, underneath the covers, Win32 windows? and...
2009-03-06, 4899👍, 0💬

What is a thread? How to use and create a thread in .NET?
What is a thread? How to use and create a thread in .NET? Can we use events with threading? Threads - When we want to run one or more instances of a method, we make use of threading. Suppose we have a method like this... Private Sub OnGoingProcess() Dim i As Integer = 1 Do While True ListBox1.Items....
2009-03-06, 5313👍, 0💬

What is the difference between System.String and System.StringBuilder classes?
Difference between System.String & System.StringBuilder Classes? System.String is immutable; System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed. prefer System.StringBuilder when you are doing lot of string manuplation oper...
2009-03-06, 4728👍, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 11 > >>   Sort: Rank