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

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

Which of the following operators has the highest precedence?
Which of the following operators has the highest precedence? * Pre Increment (++x) * Shift bits left: &lt;&lt; * Bitwise Or: | * Post Increment (x++) Shift bits left
2014-03-19, 1802👍, 0💬

In C#, which character is used to indicate a verbatim string literal?
In C#, which character is used to indicate a verbatim string literal? In C#, which character is used to indicate a verbatim string literal? * @ * ! * " * # @
2014-03-18, 1891👍, 0💬

The object that contains all the properties and methods for every ASP.NET page, that is built is ..
The object that contains all the properties and methods for every ASP.NET page, that is built is .. The object that contains all the properties and methods for every ASP.NET page, that is built is * Page Object * HTTPPage Object * WebPage Object * System.Web.UI.Page Page Object
2014-03-18, 11021👍, 0💬

You need to generate a public/private key pair for using in creating a shared assembly. Given the above scenario, which .NET SDK
You need to generate a public/private key pair for using in creating a shared assembly. Given the above scenario, which .NET SDK utility should be used? You need to generate a public/private key pair for using in creating a shared assembly. Given the above scenario, which .NET SDK utility should be ...
2014-03-17, 1937👍, 0💬

Which of the following DOT.NET tools manages certificates, certificate trust lists (CTLs), and certificate revocation lists (CRL
Which of the following DOT.NET tools manages certificates, certificate trust lists (CTLs), and certificate revocation lists (CRLs)? Which of the following DOT.NET tools manages certificates, certificate trust lists (CTLs), and certificate revocation lists (CRLs)? * sn.exe * certnet.exe * certmgr.exe...
2014-03-17, 1803👍, 0💬

Can you have two applications on the same machine one which is using .NET Framework 1.1 and the other using 2.0 ?
Can you have two applications on the same machine one which is using .NET Framework 1.1 and the other using 2.0 ? Can you have two applications on the same machine one which is using .NET Framework 1.1 and the other using 2.0 ? * Yes * No * Depends on System configuration Yes
2014-03-14, 1587👍, 0💬

The code used to turn off buffering is * Buffering = false...
The code used to turn off buffering is * Buffering = false... The code used to turn off buffering is * Buffering = false * OutputBuffer = false * BufferOutput = false * Buffer = Off Answer1: Buffer=true Answer2: Buffer=false
2014-03-14, 2166👍, 0💬

The number of objects in ASP.NET is ...
The number of objects in ASP.NET is ... The number of objects in ASP.NET is * 6 * 7 * 9 * 10 Answer1: 7 Answer2: 10
2014-03-13, 1625👍, 0💬

Which one of the following best describes “Type-Safe”< ...
Which one of the following best describes “Type-Safe”< ... Which one of the following best describes “Type-Safe” * It ensures that the data type are safely handled * It ensures that types are not mismatched when they are called so uses a typecasting before referencing any data object...
2014-03-13, 1709👍, 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, 2710👍, 0💬

State True or False: A single .NET dll can contain unlimited classes: * True or * False?
State True or False: A single .NET dll can contain unlimited classes: * True or * False? True
2014-03-12, 2262👍, 0💬

What tool is used to manage the GAC?
What tool is used to manage the GAC? What tool is used to manage the GAC? * GacMgr.exe * GacSvr32.exe * GacUtil.exe * RegSvr.exe GacUtil.exe
2014-03-11, 2346👍, 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, 2832👍, 0💬

What are the different types of serialization supported in .NET Framework...
What are the different types of serialization supported in .NET Framework... What are the different types of serialization supported in .NET Framework * XmlSerializer * SoapFormatter * XPathNavigator * HttpFormatter xmlserializer
2014-03-10, 1604👍, 0💬

Which of the following languages is NOT included in the default .NET Framework installation?
Which of the following languages is NOT included in the default .NET Framework installation? Which of the following languages is NOT included in the default .NET Framework installation? * C# * VB.NET * JScript.NET * VBScript.NET VBScript.NET
2014-03-10, 1486👍, 0💬

What data type does the RangeValidator control support?
What data type does the RangeValidator control support? Integer,String and Date.
2014-03-07, 1583👍, 0💬

Suppose you want a certain ASP.NET function executed on MouseOver overa certain button. Where do you add an event handler?
Suppose you want a certain ASP.NET function executed on MouseOver overa certain button. Where do you add an event handler? It’s the Attributesproperty, the Add function inside that property. So btnSubmit.Attributes.Add("onMo useOver","someClientCode();")A simple”Javascript:ClientCode ();”i...
2014-03-07, 1725👍, 0💬

What’s a bubbled event?
What’s a bubbled event? When you have a complex control, likeDataGrid, writing an event processing routine for each object (cell, button,row, etc.) is quite tedious. The controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of itsconstituents.
2014-03-06, 1541👍, 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💬

Where do you store the information about the user’s locale?
Where do you store the information about the user’s locale? System.Web.UI.Page.Culture
2014-03-05, 1520👍, 0💬

Where does the Web page belong in the .NET Framework class hierarchy?
Where does the Web page belong in the .NET Framework class hierarchy? System.Web.UI.Page
2014-03-05, 1632👍, 0💬

What methods are fired during the page load?
What methods are fired during the page load? Init() - when the pageis instantiated, Load() - when the page is loaded into server memory,PreRender() - the brief moment before the page is displayed to the user asHTML, Unload() - when page finishes loading.
2014-03-04, 1553👍, 0💬

What’s the difference between Response.Write() andResponse.Output.Write()?
What’s the difference between Response.Write() andResponse.Output.Write()? The latter one allows you to write formattedoutput.
2014-03-04, 1588👍, 0💬

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