<< < 31 32 33 34 35 36 37 38 39 40 41 > >>   Sort: Date

Can you explain what inheritance is and an example of when you might use it?
Can you explain what inheritance is and an example of when you might use it? Inheritance is a fundamental feature of an object oriented system and it is simply the ability to inherit data and functionality from a parent object. Rather than developing new objects from scratch, new code can be based o...
2014-01-22, 1583👍, 0💬

What is the comment syntax for C#’s XML-based documentation?
What is the comment syntax for C#’s XML-based documentation? What is the comment syntax for C#’s XML-based documentation? * /** and **/ * //# * /// * //* ///
2014-08-04, 1582👍, 0💬

What does WSDL stand for?
What does WSDL stand for? Web Services Description Language
2014-02-06, 1582👍, 0💬

Name atleast three methods of response object other than Redirect.
Name atleast three methods of response object other than Redirect. Answer1 a) Response.Clear( ) Clears the content of the current output stream. b) Response.Close( ) Closes the network socket for the current response. c) Response.End( ) Stops processing the current request and sends all buffered con...
2014-09-29, 1580👍, 0💬

What are remotable objects in .NET Remoting?
What are remotable objects in .NET Remoting? Remotable objects are the objects that can be marshaled across the application domains. You can marshal by value, where a deep copy of the object is created and then passed to the receiver. You can also marshal by reference, where just a reference to an e...
2013-11-12, 1579👍, 0💬

What is the transport protocol you use to call a Web service?
What is the transport protocol you use to call a Web service? Answer1: SOAP. Transport Protocols: It is essential for the acceptance of Web Services that they are based on established Internet infrastructure. This in fact imposes the usage of of the HTTP, SMTP and FTP protocols based on the TCP/IP f...
2014-02-05, 1578👍, 0💬

Which method do you invoke on the DataAdapter control to load your generated dataset with data?
Which method do you invoke on the DataAdapter control to load your generated dataset with data? System.Data.Common.DataAdapter .Fill(System.Data.DataSet);If my DataAdapter is sqlDataAdapter and my DataSet is dsUsers then it is called this way: sqlDataAdapter.Fill(dsUsers);
2014-01-28, 1576👍, 0💬

Explain assemblies.
Explain assemblies. Answer 1: Assemblies are similar to dll files. Both has the reusable pieces of code in the form of classes/ functions. Dll needs to be registered but assemblies have its own metadata. Answer 2: Assembly is a single deployable unit that contains information about the implementatio...
2013-12-09, 1576👍, 0💬

What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?
What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"? CodeBehind is relevant to Visual Studio.NET only.
2014-03-06, 1574👍, 0💬

Can you configure a .NET Remoting object via XML file?
Can you configure a .NET Remoting object via XML file? Yes, via machine.config and application level .config file (or web.config in ASP.NET). Application-level XML settings take precedence over machine.config.
2013-11-18, 1574👍, 0💬

What’s Singleton activation mode?
What’s Singleton activation mode? A single object is instantiated regardless of the number of clients accessing it. Lifetime of this object is determined by lifetime lease.
2013-11-15, 1574👍, 0💬

What’s a proxy of the server object in .NET Remoting?
What’s a proxy of the server object in .NET Remoting? It’s a fake copy of the server object that resides on the client side and behaves as if it was the server. It handles the communication between real server object and the client object. This process is also known as marshaling.
2013-11-11, 1573👍, 0💬

What is the difference between boxing and unboxing?
What is the difference between boxing and unboxing? Boxing allows us to convert value types to reference types. Basically, the runtime creates a temporary reference-type box for the object on heap. Eg: int i=20; object o=i;
2014-02-13, 1572👍, 0💬

True or False: To test a Web service you must create a windows application or Web application to consume this service?
True or False: To test a Web service you must create a windows application or Web application to consume this service? Set the sessionState mode in the web.config file to “StateServer”. StateServer mode uses an out-of-process Windows NT Server to store state information. It solves the session ...
2014-02-10, 1572👍, 0💬

Whats an assembly?
Whats an assembly? Assemblies are the building blocks of .NET Framework applications; they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logi...
2014-01-23, 1572👍, 0💬

What is assembly?
What is assembly? It is a single deployable unit that contains all the information abt the implimentation of classes , stuctures and interfaces
2013-12-05, 1572👍, 0💬

What’s the use of System.Diagnostics.Process class?
What’s the use of System.Diagnostics.Process class? By using System.Diagnostics.Process class, we can provide access to the files which are presented in the local and remote system. Example: System.Diagnostics.Process(” c:\mlaks\example.txt”)— local file System.Diagnostics.Process(” ...
2013-12-02, 1572👍, 0💬

Specify the best ways to store variables so that we can access them in various pages of ASP.NET application?
Specify the best ways to store variables so that we can access them in various pages of ASP.NET application? Declare the variables in Global.aspx
2014-09-24, 1570👍, 0💬

To test a Web Service you must create a windows application or web application to consume this service? It is True/False?
To test a Web Service you must create a windows application or web application to consume this service? It is True/False? FALSE
2014-09-04, 1570👍, 0💬

How do you turn off cookies for one page in your site?
How do you turn off cookies for one page in your site? Use the Cookie.Discard Property which Gets or sets the discard flag set by the server. When true, this property instructs the client application not to save the Cookie on the user’s hard disk when a session ends.
2014-02-03, 1570👍, 0💬

What is referential integrity and how can we achieve it?
What is referential integrity and how can we achieve it? Referential integrity preserves the defined relationships between tables when records are entered or deleted. In SQL Server, referential integrity is based on relationships between foreign keys and primary keys or between foreign keys and uniq...
2014-10-20, 1569👍, 0💬

The Equivalent Html Control for the &lt;select> tag is ...
The Equivalent Html Control for the &lt;select> tag is ... The Equivalent Html Control for the &lt;select> tag is * &lt;HtmlSelectInput> * &lt;HtmlSelect> * &lt;HtmlInputSelect> * &lt;HtmlSelectControl> &lt;HtmlSelect>
2014-06-25, 1569👍, 0💬

A structure in C# can be derived from one or more ...
A structure in C# can be derived from one or more ... A structure in C# can be derived from one or more * class * interface * both * none interface.
2014-06-18, 1569👍, 0💬

Before in my VB app I would just load the icons from DLL. How can I load the icons provided by .NET dynamically?
Before in my VB app I would just load the icons from DLL. How can I load the icons provided by .NET dynamically? By using System.Drawing.SystemIcons class, for example System.Drawing.SystemIcons.War ningproduces an Icon with a warning sign in it.
2013-11-25, 1569👍, 0💬

<< < 31 32 33 34 35 36 37 38 39 40 41 > >>   Sort: Date