VISUAL BASIC

INTRODUCTION TO NET

BASICS OF NET FRAMEWORK

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
____ namespace in vb.net provides an interface to many of the protocols used on the internet.
A
System
B
System.collections
C
System.NET
D
System.Reflection
Explanation: 

Detailed explanation-1: -System.Net Namespace Provides an interface “for many of the protocols used on networks today", such as HTTP, FTP, and SMTP. Secure communication is supported by protocols such as SSL.

Detailed explanation-2: -Namespaces organize the objects defined in an assembly. Assemblies can contain multiple namespaces, which can in turn contain other namespaces. Namespaces prevent ambiguity and simplify references when using large groups of objects such as class libraries.

Detailed explanation-3: -(i) They allow to create a system to organize your code. (i) Each namespace has a name, and in order to guarantee that the names of different namespaces are different, you use a unique rule for naming them.

Detailed explanation-4: -Classes. In VB.NET, classes are reference types; that is, when you create an instance of a class in code, you work with a pointer (or reference) to the object rather than with the object itself. Structures. Enumerations. Interfaces. Delegates.

There is 1 question to complete.