VB.Net Interview Question and Answers

46. What is Authentication and Authorization?
  Authentication is the process of identifying users. Authentication is identifying/validating the user against the credentials (username and password).
Authorization performs after authentication. Authorization is the process of granting access to those users based on identity. Authorization allowing access of specific resource to user.
 
Your Name Your Email-ID
Your Answer
47. What languages does the .Net Framework support?
 
    The four core languages supported by .NET Framework are
  • Visual Basic.Net
  • C#.Net
  • Visual J#.Net
  • Jscript.Net
 
Your Name Your Email-ID
Your Answer
48 What is a Literal Control?
  The Literal control is used to display text on a page. The text is programmable. This control does not let you apply styles to its content.
 
Your Name Your Email-ID
Your Answer
49. What are the namespace available in .net?
 
    Namespace is a logical grouping of class.
  • System
  • System.Data
  • System.IO
  • System.Drawing
  • System.Windows.Forms
  • System.Threading
 
Your Name Your Email-ID
Your Answer
50. What is Side-by-Side Execution?
  The CLR allows any versions of the same-shared DLL (shared assembly) to execute at the same time, on the same system, and even in the same process. This concept is known as side-by-side execution.
 
Your Name Your Email-ID
Your Answer