Q. Differentiate strong typing and weak typing ?
A. In strong typing, the data types of variable are checked at compile time. On the other hand, in case of weak typing the variable data types are checked at runtime. In case of strong typing, there is no chance of compilation error. Scripts use weak typing and hence issues arises at runtime.
Q. What is the appSettings Section in the web.config file ?
A. The appSettings block in web config file sets the user-defined values for the whole application.
For example, in the following code snippet, the specified ConnectionString section is used throughout the project for database connection:
Q. Which data type does the RangeValidator control support?
A. The data types supported by the RangeValidator control are Integer, Double, String, Currency, and Date.
Q. Which namespaces are necessary to create a localized application?
A. System.Globalization
System.Resources.
Q. What is Maximum pool size in web config in asp.net ?
A. SQL Server allows a maximum of 32,767 user connections. You can setmax pool size up to 32767.
Q. What are the components of ADO.NET?
A. The components of ADO.Net are Dataset, Data Reader, Data Adaptor, Command, connection.