FeedBack Form

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

VB.NET INTERVIEW QUESTION & ANSWERS

46. How does CAS work?
  The CAS security policy revolves around two key concepts – code groups and permissions. Each .NET assembly is a member of a particular code group, and each code group is granted the permissions specified in a named permission set.
Your Name Your Email-ID
Your Answer
 
47. What is serialization in .NET?
  Serialization is the process of converting an object into a stream of bytes.
Your Name Your Email-ID
Your Answer
 
48. What does an assembly contain?
 
  • Manifest - The metadata describing the information below.
  • Assembly name - Aids in versioning and visibility scope.
  • Version information - The version number is integrated into the assembly's identity.
  • Types - Boundaries and scopes of methods, classes, properties, events and attributes.
  • Locale - Information describing language/culture.
  • Cryptographic Hash - Public key encoded hash acting as version/security check.
  • Security Permissions - The permissions within the assembly determine the permissions that can be granted for all aspects of the assembly contents.
Your Name Your Email-ID
Your Answer
 
49. What is a Windows process?
  Windows process is an application that's running and had been allocated memory.
Your Name Your Email-ID
Your Answer
 
50. Can one DLL file contains the compiled code of more than one .NET language?
  No, a DLL file can contain the compiled code of only one programming language.
Your Name Your Email-ID
Your Answer