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

State True or False: Any ODBC-compliant database can be accessed through ASP.NET: * True or * False
State True or False: Any ODBC-compliant database can be accessed through ASP.NET: * True or * False True
2014-07-11, 1493👍, 0💬

What is the difference between Convert.ToInt32 and int.Parse?
What is the difference between Convert.ToInt32 and int.Parse? What is the difference between Convert.ToInt32 and int.Parse? * Both are same and both can handle null value. * Convert.ToInt32 can handle null value but int.Parse throws ArgumentNullException error. * int.Parse can handle null value but ...
2014-07-09, 1655👍, 0💬

The RangeValidator control supports the following datatype ...
The RangeValidator control supports the following datatype ... The RangeValidator control supports the following datatype * Integer and String * Integer, Float, String, XMLDatatypes * Integer, String and Date * Integer, Boolean, Short, String and Date Integer, String and Date
2014-07-09, 1559👍, 0💬

The methods in C# can be overloaded in which of the following ways
The methods in C# can be overloaded in which of the following ways The methods in C# can be overloaded in which of the following ways * By having the same method name and specifying different number of parameters * By giving different method names and same number of parameters * By having the same m...
2014-07-07, 1552👍, 0💬

The parameter “clienttarget = downlevel” does one of the following ...
The parameter “clienttarget = downlevel” does one of the following ... The parameter “clienttarget = downlevel” does one of the following * Adds aliases for specific user agents to an internal collection of user agent aliases * Indicates the useragents level of validating the controls *...
2014-07-07, 2226👍, 0💬

A new server-side control can be created by implementing the class ___________
A new server-side control can be created by implementing the class ___________ A new server-side control can be created by implementing the class ___________ * System.Web.WebControl * System.Web.UI.WebControl * System.Web.UI.WebControls.WebC ontrol* Any one of the above System.Web.UI.WebControls.Web. ..
2014-06-27, 1421👍, 0💬

What namespaces are necessary to create a localized application?
What namespaces are necessary to create a localized application? What namespaces are necessary to create a localized application? * System.Globalization * System.Globalization and System.Resources. * System.Resources. * System.Array System.Resources
2014-06-27, 1483👍, 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, 2595👍, 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, 1567👍, 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, 1599👍, 0💬

Which operator is used for connecting a event with a procedure in C#?
Which operator is used for connecting a event with a procedure in C#? Which operator is used for connecting a event with a procedure in C#? * += * = * both * none +=
2014-06-23, 1938👍, 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, 2347👍, 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, 2280👍, 0💬

State True or False: Static method cannot be overridden: * True or * False
State True or False: Static method cannot be overridden: * True or * False True
2014-06-20, 1476👍, 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, 1567👍, 0💬

The method that transfers ASP.NET execution to another page, but returns to the original page when it is done is ...
The method that transfers ASP.NET execution to another page, but returns to the original page when it is done is ... The method that transfers ASP.NET execution to another page, but returns to the original page when it is done is * Server.Transfer() * Server.Redirect() * Server.Execute() * Server.Re...
2014-06-18, 1999👍, 0💬

The process that ASP.NET uses to keep track of Sessions without cookies is ..,
The process that ASP.NET uses to keep track of Sessions without cookies is .., The process that ASP.NET uses to keep track of Sessions without cookies is * Cookie Munging * Cookie Monking * Cookie Mocking * Cookie Munching Cookie munging
2014-06-16, 1873👍, 0💬

Which of the following is the correct code for setting a Session timeout of 30 minutes
Which of the following is the correct code for setting a Session timeout of 30 minutes Which of the following is the correct code for setting a Session timeout of 30 minutes * Session.Timeout = 108000 * Session.Timeout = 1800 * Session.Timeout = 300 * Session.Timeout = 30 Answer1: Session.Timeout = ...
2014-06-16, 2161👍, 0💬

What can be achieved in IL which is not possible in C# ?
What can be achieved in IL which is not possible in C# ? What can be achieved in IL which is not possible in C# ? * Creation of an ArrayList * Creation of a Dictionary * Creation of a two dimensional array * Creation of a non-zero based array Answer1: Creation of a dictionary Answer2: Creation of a ...
2014-06-12, 1677👍, 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, 3047👍, 0💬

What’s the .NET datatype that allows the retrieval of data by a unique key?
What’s the .NET datatype that allows the retrieval of data by a unique key? What’s the .NET datatype that allows the retrieval of data by a unique key? * Primary * Integer * Unique Identifier * HashTable HashTable
2014-03-24, 1878👍, 0💬

Bitwise OR operator in C# is ...
Bitwise OR operator in C# is ... Bitwise OR operator in C# is * OR * || * | * XOR Answer1: || Answer2: |
2014-03-24, 1757👍, 0💬

Bitwise AND operator in C# is ...
Bitwise AND operator in C# is ... Bitwise AND operator in C# is * &amp; * &amp;&amp; * AND * XAND Answer1: &amp;&amp; Answer2: &amp;
2014-03-21, 1771👍, 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, 2420👍, 0💬

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