Below is a. Net preliminary test perfectly designed to check your proficiency! NET is a framework that provides a programming guidelines that can be used to develop a wide range of applications while making use of different computer languages. By taking the quiz you will get to see if you might need a refresher so as to understand everything about this framework. All the best as you tackle.
IEnumerable
IEnumerator
ICollection
IList
RMT
RCT
CLS
CLR
Serialization
Assemblies
Garbage Collection
Overriding
Reflection
Enumeration
Serialization
Binding
One
Two
Many
None
Object
System.Net
System
System.Object
Static
Private
Instance
Local
Both Private and Instance
Int[,] myArray;
Int[][] myArray;
Int[2] myArray
Int myArray[2];
System.Strings namespace
System.Chars namespace
System.Text namespace
System namespace
String = string.ToLower(string);
String.ToLower(string);
ToLower(string);
String.ToLower();
They represent the same memory location
If one changes, so will the other
They are two different objects
None of the above
Formal parameters
ReturnType
Name
No Errors
Do
Static
This
Sealed
Override the parent class methods but maintain the same implementation
Maintain the same return type and arguments as the parent class, but implement it differently
Have different return types and arguments than the parent class
Are Virtual
Inline Page Technique
Code Behind
Exception
Code Separation
Master
Page
Form
WebPage
CompareValidator
GridView
TextBox
ListView
Response.Write()
Response.Output.Write()
Both
None
Text
ControlToValidate
ErrorMessage
All of the above
Use a DELETE statement to remove the data from the table.
Use a TRUNCATE TABLE statement to remove the data from the table.
Use a DROP TABLE statement to remove the data from the table.
Use an updateable cursor to access and remove each row of data from the table.
SELECT TOP 20 PERCENT LastName, FirstName, SUM (OrderAmount) AS ytd FROM sales GROUP BY LastName, FirstName ORDER BY 3 DESC
SELECT TOP 20 PERCENT LastName, FirstName, MAX (OrderAmount) AS ytd FROM sales GROUP BY LastName, FirstName ORDER BY 3 DESC
SELECT TOP 20 LastName, FirstName, SUM (OrderAmount) AS ytd FROM sales GROUP BY LastName, FirstName ORDER BY 3 DESC
SELECT TOP 20 LastName, FirstName, MAX (OrderAmount) AS ytd FROM sales GROUP BY LastName, FirstName ORDER BY 3 DESC
SqlCommand cmd = new SqlCommand(); cmd.CommandText = "DELETE FROM MyTable"; cmd.Connection=ConObj; int rowcount = cmd.ExecuteScalar();
SqlCommand cmd = new SqlCommand(); cmd.CommandText = "DELETE FROM MyTable"; cmd.Connection=ConObj; int rowcount = cmd.ExecuteNonQuery();
SqlCommand cmd = new SqlCommand(); cmd.CommandText = "DELETE FROM MyTable"; cmd.Connection=ConObj; SqlDataReader dr = cmd.ExecuteReader();
SqlCommand cmd = new SqlCommand(); cmd.CommandText = "DELETE FROM MyTable"; cmd.Connection=ConObj; int rowcount; cmd.ExecuteNonQuery(out rowcount);
DataTable.Columns.Add(new DataColumn("TotalPrice", typeof(Double), "Quantity" * "UnitPrice"));
DataTable.Columns.Add(new DataColumn("TotalPrice", typeof(Double), Quantity * UnitPrice));
DataTable.Columns.Add(new DataColumn("TotalPrice", typeof(Double), "Quantity * UnitPrice"));
DataTable.Columns.Add(new DataColumn("TotalPrice", typeof(Double), "Quantity", "UnitPrice"));
Set AutoGenerateColumns Property to false on the gridview tag
Set AutoGenerateColumns Property to true on the gridview tag
Set AutoManualColumns Property to true on the gridview tag
It is not possible to do that operation
LoadData()
GetData()
FillData()
Fill()
Wait!
Here's an interesting quiz for you.