The .NET Framework provides a runtime environment called..... ?
In ASP.NET in form page the object which contains the user name is ______ ?
Find the term: The .NET framework which provides automatic memory management using a technique called ______________ ?
Which of the following denote ways to manage state in an ASP.Net Application?
What is the base class from which all Web forms inherit?
Which of the following must be done in order to connect data from some data resource to Repeater control?
Which of the following transfer execution directly to another page?
In .NET the operation of reading metadata and using its contents is known as ______?
Which of the following is used to send email message from my ASP.NET page?
In my .NET Framework I have threads. Which of the following denote the possible priority level for the threads?
In ASP.NET the < authorization > section contain which of the following elements?
The actual work process of ASP.NET is taken care by _____________?
Suppose one wants to modify a SOAP message in a SOAP extension then how this can be achieved. Choose the correct option from below:
The technique that allow code to make function calls to .NET applications on other processes and on other machines is?
Suppose a .NET programmer wants to convert an object into a stream of bytes then the process is called ______________ ?
Which one of the following is NOT one of the types of deployment projects?
Dim A As Integer = 10
Dim B As Integer = 8
Dim C As Integer = 6
Dim myCheck As Boolean
Given the code above, what expression sets myCheck to true?
Protected Sub TestSub ()
Dim NewClass as New TestClass()
NewClass.ThisProperty = 15
MsgBox (NewClass.ThisProperty)
End Sub
Public Class TestClass
Public ThisField as Integer
Private var1 = 0
Public Property ThisProperty() as Integer
Get
return var1
End Get
Set (ByVal var2 as Integer)
If var2 < 15 then var1 = var2
End Set
End Property
End Class
What is the value of NewClass.ThisProperty in the above code?
Which one of the following is NOT one of the public methods for the Request Object?
Which one of the following standard dialog boxes is valid?
1. Private Sub MyFunction(ByRef intCounter As Integer)
2. intCounter += 2
3.
4. End Sub
Given the code above, what line of code do you place in Line 3 to display a message "intCounter is Greater than 3" only when intCounter is at a value 4 or higher?
What object does SQL Connection use to make security demands?
Public MustInherit Class Shape
Public Sub New()
Console.WriteLine("Creating a Shape Objects")
End Sub
Public Overridable-?Blank1 Sub Draw()
Console.WriteLine("I am a Shape")
End Sub
End Class
Public Class Circle
Inherits-?Blank2 Shape
Public Sub New()
Console.WriteLine("Creating a Circle Objects")
End Sub
Public Overrides-?Blank3 Sub Draw()
Console.WriteLine("I am a Circle")
MyBase.Draw()-?Blank4
End Sub
End Class
Module Module1
Sub Main()
Dim c As New Circle()
c.Draw()
Console.ReadLine()
End Sub
End Module
Within the Command Window, what is the difference between the purpose of Command Mode and Immediate Mode?
What type of declarative notation does DataBinding use?
What is the Global Assembly Cache?
What interface and associated method pair must a class implement in order to allow standard sorting in an Array?
In which one of the following is a function NOT defined?
What must be in place before a control can be created dynamically?
What is a satellite Assembly?