Quiz_Index

Add Question

Question Option1 Option2 Option3 Option4 Option5 Answer
What is IIS Internet Information Services International Information Services Information Internet Solution Information Internet Security A Edit | Details | Delete
__________________ directive informs the compiler of any custom server control added to the page. Register Repository IIS A Edit | Details | Delete
Where do we store connection string in ASP.NET? Global.aspx MasterPage Web.config C Edit | Details | Delete
From which class global.asax file derived? HTTP Application class Web Config Global.aspx A Edit | Details | Delete
ASP.NET doesn’t run by itself, it runs inside the process of IIS False True B Edit | Details | Delete
Which of these data source controls do not implement Caching? LinqDataSource SqlDataSource OracleDataSource MysqlDataSource None Above a Edit | Details | Delete
How to find out what version of ASP.NET I am using on my machine? Response.Read(System.Environment.Version.ToString() ); Response.Write(System.Environment.Version.ToString() ); Response.Write(System.Version.ToString() ); Response.Write(System.Data.Environment.Version.ToString() ); None Above b Edit | Details | Delete
While creating a Web site with the help of Visual Studio 2005 on a remote computer that does not have Front Page Server Extensions installed, which Web site type will you create in Visual Studio 2005? HTTP Html IIS ASP None Above b Edit | Details | Delete
The ASP.NET pages directives are 1. @ Page,@ Control,@ Import,@ Register 2. @ Assembly, @ OutputCache 3. System.Web.UI.HtmlControls,System. Web.UI.WebControls 1,2 1,2,3 2,3 1,3 None Above a Edit | Details | Delete
What is the best way to store the connection strings? Config files Webconfig Global.aspx MasterPage None Above a Edit | Details | Delete
From performance point of view which is the fastest: Datagrid Repeater DataReader DataAdapter None Above b Edit | Details | Delete
Which one of the following has a parameter called as preserveForm? Response.redirect Server.transfer Server.Grid Server.form None Above b Edit | Details | Delete
In case of _______________, there is a round trip and hence puts a load on server. response.redirect server.transfer Server.Grid Server.Form None Above a Edit | Details | Delete
Which one of the class contains the objects that we use to connect to a data source via an OLE-DB provider? System.Data System.Data.OLEDB System.Data.ODB System.Data.SQL None Above b Edit | Details | Delete
How can we force all the validation control to run? Page.Validate Page.IsValid() Page.Validation Page.Validate() None Above a Edit | Details | Delete