Explain what is an abstract class?
Explain weak typing and strong typing.
What is boxing and unboxing?
What definition correctly defines a label server control with the name set to lblHoop? a) <asp:Label name=?lblHoop? runat=?server? /> b) <Label id=?lblHoop? runat=?server? /> c) <asp:Label id=?lblHoop? runat=?server? /> d) <server label name=?lblHoop? runat=?asp? />
what is client-server architecture in .net? and what is 3-tier architecture?
How does viewstate work?
What is postback in asp net?
What is Pre-Render event in ASP.NET?
How many modelpopup extender we frequire when we want more than one model popup on same page ?
Below is a code extract from an ASP.Net application. The code basically reads data from the “name” field in the “members” table and prints them onto the webpage. Using the assumptions provided, fill in the 4 blanks below so that the code will run correctly. ‘Assumptions: ‘conn_str is a variable that holds the connection string to the database ‘Objects dbcomm and dbread are already declared earlier dbcomm = New OleDbCommand("SELECT name FROM members", conn_str) dbread = dbcomm._______________ _____________________ response.write(_______________) _____________________ dbread.Close()
To call a Web service SOAP which transport protocol you use?
How is a session stored and maintained in asp.net?
Describe the difference between a Thread and a Process?