1. Basic objects of Dot net environment?2. If you perform arithmatic operation on null value a. 0b. nullc. can't be determinedd. compilation error3. In c# keyword .net map to which .net data type.a. System.Int16b. System.Int32c. System.Int64d. System.Int1284. In sql-server give example for binary data type and non-binary data type5. page init, page load, page pre render, page unload - is this order correct otherwise give correct order.6. To redirect the page- should not round trip the page7.Expansion for ACID8. Maximum count of DataBase that can be host on Exchange 2003?9. What are the components of server2003 to install Exchange 200310. difference between custom control and user control

Showing Answers 1 - 3 of 3 Answers

balaji

  • Oct 7th, 2006
 

Hai,

1)In .NET  Every every thing is derived from System.Object  class  because in .NET every thing is an object.

2)can't determine

3)System.Int32

4)Image(binary) Integer(non-binary)

5)page init, page load, page pre render, page unload

6)use Server.Transfer() 7)A-Atomicity C-Consistenency I-Isolation D-Durability

10)Custom Control in any Web App where as User Control   can be used with in Web App.

  Was this answer useful?  Yes

PavanKumar

  • Oct 26th, 2006
 

Difference between custom control and user control?The main difference between a User-Control and a Custom Control is that : 1) A User-Control control has a visual Interface whereas a Custom Control doesn't have a Visual representation which we have to expiliicitly define by calling the OnPaint().2) A User-Control s easy to build whereas if we are building a Custom control as it has to be built from the scratch so it is diificult to build.3)User Control is formed by combining 1 or More Controls that are available in the toolBox but Custom Control are built by directly inheriiting the Control Class.Thanks & RegardsPavanKumar.SSemanticSpace Technologies

  Was this answer useful?  Yes

PavanKumar

  • Oct 26th, 2006
 

1. Basic objects of Dot net environment?I think u are asking about the major components of .Net Framework they are :CLR ( which looks after all the processes related to the Application execution in.Net Framework.Base Class Library 2. If you perform arithmatic operation on null value can't be determined3. In c# keyword .net map to which .net data type.Dim i as Integer ;int i;Above declared variables are converted to the below format so as to provide Language interoperability. System.Int324. In sql-server give example for binary data type and non-binary data typebit,numeric(Pls let me know if incorrect)5. page init, page load, page pre render, page unload - is this order correct otherwise give correct order.Page Init()Page Load()Page PreRender()Page UnLoad()6. To redirect the page- should not round trip the pageServer.Transfer()Server.Execute()7.Expansion for ACIDAtomicity Consistency Isolation DurabilityThanks & RegardsPavan Kumar SSemantiicSpace Technologiies

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.