ASP.Net Interview Question and Answers

61. What are all the types of data types available in ASP.NET?
 
    There are two types of data types availabel in Asp.Net are :
  • Framework specific data type
  • Language specific data type
 
Your Name Your Email-ID
Your Answer
62. What is the difference between System.String and System.StringBuilder classes?
 
  • System.String is immutable.
  • System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed.
 
Your Name Your Email-ID
Your Answer
63. What is the differences between Server-side and Clientside code?
 
  • Server side code is executed at the server side on IIS in ASP.NET framework.
  • while client side code is executed on the browser.
 
Your Name Your Email-ID
Your Answer
64. What is the difference between Server-side scripting and Client-side scripting?
  Server side scripting :
means that all the script will be executed by the server and interpreted as needed. ASP doesn't have some of the functionality like sockets, uploading, etc.
Client side scripting :
means that the script will be executed immediately in the browser such as form field validation, clock, email validation, etc. Client side scripting is usually done in VBScript or JavaScript.
 
Your Name Your Email-ID
Your Answer
65. What is a formatter?
  A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and decoding messages into data on the other end.
 
Your Name Your Email-ID
Your Answer