<< < 21 22 23 24 25 26 27 28 29 30 31 > >>   Sort: Date

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, 4383👍, 0💬

What is DISCO ?
.NET INTERVIEW QUESTIONS - What is DISCO ? DISCO is the abbreviated form of Discovery. It is basically used to club or group common services together on a server and provides links to the schema documents of the services it describes may require.
2009-10-07, 4314👍, 0💬

Scope of publication ?
Scope of publication ? .NET Remoting exposes objects to other application domains as if they are local, with a few exceptions. The two exceptions most likely to trip you up are: • Static members are never remoted. Remoting always deals with some form of object instance member. • Private methods are ...
2009-03-25, 4301👍, 0💬

What are the precautions you will take in order that SQLSERVER Mode work properly ?
.NET INTERVIEW QUESTIONS - What are the precautions you will take in order that SQLSERVER Mode work properly ? Following are the things to remember so that SQLSERVER Mode works properly :- * SQLSERVER mode session data is stored in a different process so you must ensure that your objects are seriali...
2009-06-09, 4294👍, 0💬

What are two different types of remote object creation mode in .NET ?
.NET INTERVIEW QUESTIONS - What are two different types of remote object creation mode in .NET ? There are two different ways in which object can be created using Remoting :- * SAO (Server Activated Objects) also called as Well-Known call mode. * CAO (Client Activated Objects) SAO has two modes “Sin...
2009-08-11, 4266👍, 0💬

What do you know about .NET assemblies?
What do you know about .NET assemblies? Assemblies are the smallest units of versioning and deployment in the .NET application. Assemblies are also the building blocks for programs such as Web services, Windows services, serviced components, and .NET remoting applications.
2019-02-05, 4258👍, 1💬

💬 2019-02-05 M.S.: Assemblies are the units of versioning that contains deployment instructions,metadata for application,SEO capability.

How can you reference current thread of the method ?
.NET INTERVIEW QUESTIONS - How can you reference current thread of the method ? "Thread.CurrentThread" refers to the current thread running in the method."CurrentThread" is a public static property.
2009-11-17, 4240👍, 0💬

What is the fundamental of published or pre-created objects in Remoting ?
.NET INTERVIEW QUESTIONS - What is the fundamental of published or pre-created objects in Remoting ? In scenarios of singleton or single call the objects are created dynamically. But in situations where you want to pre-create object and publish it you will use published object scenarios. Dim obj as ...
2009-08-18, 4171👍, 0💬

What is ObjRef object in remoting ?
.NET INTERVIEW QUESTIONS - What is ObjRef object in remoting ? All Marshal() methods return ObjRef object.The ObjRef is serializable because it implements the interface ISerializable, and can be marshaled by value. The ObjRef knows about :- * location of the remote object * host name * port number *...
2009-10-01, 4135👍, 0💬

What is FullTrust? Do GAC’ed assemblies have FullTrust?
What is FullTrust? Do GAC’ed assemblies have FullTrust? Your code is allowed to do anything in the framework, meaning that all (.Net) permissions are granted. The GAC has FullTrust because it’s on the local HD, and that has FullTrust by default, you can change that using caspol
2014-02-19, 3781👍, 0💬

The uniqueId that gets generated at the start of the Session is stored in ...
The uniqueId that gets generated at the start of the Session is stored in ... The uniqueId that gets generated at the start of the Session is stored in * Client computer as a cookie * Server machine * Passed to and fro on each and every request and response * Both a and b are correct Both a and b ar...
2014-03-19, 3524👍, 0💬

After capturing the SelectedIndexChanged event for a ListBox control, you find that the event handler doesn’t execute. What co
After capturing the SelectedIndexChanged event for a ListBox control, you find that the event handler doesn’t execute. What could the problem be? After capturing the SelectedIndexChanged event for a ListBox control, you find that the event handler doesn’t execute. What could the problem be? * ...
2014-08-11, 3499👍, 0💬

The keyword ‘int’ maps to one of the following .NET type ...
The keyword ‘int’ maps to one of the following .NET type ... The keyword ‘int’ maps to one of the following .NET types * System.Int16 * System.Int32 * System.Int64 * System.Int128 System.Int32
2014-06-12, 3394👍, 0💬

Which of the following operations can you NOT perform on an ADO.NET DataSet?
Which of the following operations can you NOT perform on an ADO.NET DataSet? Which of the following operations can you NOT perform on an ADO.NET DataSet? * A DataSet can be synchronised with the database. * A DataSet can be synchronised with a RecordSet. * A DataSet can be converted to XML. * You ca...
2014-07-28, 3354👍, 0💬

The CLR uses which format for assembly version numbers ...
The CLR uses which format for assembly version numbers ... The CLR uses which format for assembly version numbers * Major:Minor:Revision:Build * Major:Build:Minor:Revision * Major:Revision:Minor:Build * Major:Minor:Build:Revision Major:Minor:Build:Revision
2014-03-11, 3149👍, 0💬

State True or False: Events in Web forms are processed before the “Page Load” event: * True or * False
State True or False: Events in Web forms are processed before the “Page Load” event: * True or * False True
2014-06-25, 3047👍, 0💬

State True or False: ASP.NET can currently run only on Windows Platform: * True or * False?
State True or False: ASP.NET can currently run only on Windows Platform: * True or * False? True
2014-03-12, 3041👍, 0💬

What is used to validate complex string patterns like an e-mail address?
What is used to validate complex string patterns like an e-mail address? What is used to validate complex string patterns like an e-mail address? * Extended expressions * Regular expressions * Irregular expressions * Basic expressions Regular Expression.
2014-08-14, 2998👍, 0💬

When creating a C# Class Library project, what is the name of the supplementary file ...
When creating a C# Class Library project, what is the name of the supplementary file ... When creating a C# Class Library project, what is the name of the supplementary file that Visual Studio.NET creates that contains General Information about the assembly? * AssemblyInfo.xml * AssemblyInfo.cs * As...
2014-08-04, 2946👍, 0💬

State True or False: C# supports multiple-inheritance: * True or * False?
State True or False: C# supports multiple-inheritance: * True or * False? False
2014-03-21, 2874👍, 0💬

What’s the difference between private and shared assembly?
What’s the difference between private and shared assembly? Private assembly is used inside an application only and does not have to be identified by a strong name. Shared assembly can be used by multiple applications and has to have a strong name.
2014-12-17, 2822👍, 0💬

The Equivalent HTML Control for the &lt;input type=”button”> tag is ..
The Equivalent HTML Control for the &lt;input type=”button”> tag is .. The Equivalent HTML Control for the &lt;input type=”button”> tag is * HtmlInput * HtmlButton * HtmlPushButton * HtmlInputButton HtmlInputButton
2014-06-20, 2815👍, 0💬

Can We Multiple Script Manager in Ajax?
Can We Multiple Script Manager in Ajax? Can We have multiple content place holder in Master pages in asp.net? In Javascript While click a submit at the time a new text box will be displayed ? Give examples and their methods used
2013-10-23, 2789👍, 0💬

The Equivalent Html Control for the &lt;input type=”checkbox”> tag is
The Equivalent Html Control for the &lt;input type=”checkbox”> tag is The Equivalent Html Control for the &lt;input type=”checkbox”> tag is * HtmlCheckBox * HtmlInputChkBox * HtmlInputCheckBox * HtmlInputTypeChkBox HtmlInputCheckBox
2014-06-23, 2777👍, 0💬

<< < 21 22 23 24 25 26 27 28 29 30 31 > >>   Sort: Date