VB.Net Interview Question and Answers

6. What is Commom Language Runtime?
  CLR also known as Common Language Run time provides a environment in which program are executed, it activate object, perform security check on them, lay them out in the memory, execute them and garbage collect them.
 
Your Name Your Email-ID
Your Answer
7. What is Common Type System?
  The common type system is a rich type system, built into the common language runtime, which supports the types and operations found in most programming languages.
 
Your Name Your Email-ID
Your Answer
8. What is Common Language Specification?
  The Common Language Specification is a set of constructs and constraints that serves as a guide for library writers and compiler writers.
 
Isak ,says November 29, 2018
CLS stands for a Common Language Specification and it is a Subset oif CTS. It defines set of rules and restrictions that every language must follow which runs under .NET Framework. the languages which follows these set of rules are said to be CTS Compliant. In simple words, CLS enables cross-language integration.
Your Name Your Email-ID
Your Answer
9. What’s the difference between private and shared assembly?
  Private assembly is used inside an application only and does not have to be identified by a strong name.
Shared assembly can be used by multiple applications and has to have a strong name.
 
Kousar ,says Feb 09, 2018
Private assembly is normally used by single application and is store in the application directory and subdirectory. Shared assembly is normally stored global assembly cache which is repository of assemblies maintained .net runtime.
Your Name Your Email-ID
Your Answer
10. What are the technology areas that Microsoft.Net contains?
 
  • .Net Framework
  • .Net Enterprise Servers
  • .Net Languages and language tools
 
Your Name Your Email-ID
Your Answer