FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

VB.NET INTERVIEW QUESTION & ANSWERS

51. What is portable executable?
  The file format used for executable programs and for files to be linked together to form executable programs.
Your Name Your Email-ID
Your Answer
 
52. What is the difference between int and int32?
  Both are the same. System.int.32 is a .NET class and int is an alias name for System. Int 32.
Your Name Your Email-ID
Your Answer
 
53. What is a Namespace? What is the use of a namespace?
 
  • Namespaces are logical grouping of classes and other types in hierarchical structure.
  • Namespaces are useful to avoid collision or ambiguity among the classes and type names.
  • Another use of the namespace is to arrange a group of classes for a specific purpose.
Your Name Your Email-ID
Your Answer
 
54. What is manifest?
  Assembly metadata is stored in Manifest.
Your Name Your Email-ID
Your Answer
 
55. Can you turn off code access security?
  Yes, as long as you are an administrator, you can turn off code access security by simply running the command caspol – a off in the Visual Studio 2008 Command Prompt.
Your Name Your Email-ID
Your Answer