VB.Net Interview Questions and Answers - 7

Question: 31

What is the difference between //comments, /**/comments and ///comments?

Single-line comments,

Multi-line comments and

XML documentation comments.

Question: 32

What is a formatter?

A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and decoding messages into data on the other hand.

Question: 33

What are channels in .NET remoting?

Channels represent the objects that transfer the other serialized objects from one application domain to another and from one compute to another, as well as one process to another on the same box.

A channel must exist before an object can be transferred.

Question: 34

What is the smallest unit of execution in .NET?

An Assembly

Question: 35

How big is the datatype int in .NET?

32 bits

Related Questions