Interview Questions and Answers
Interview Questions and Answers
Name and explain some of the exclusive features which are present in VB?
Answer :: Some of the features which are exclusive to VB are as follows: -
1)<span class="Apple-tab-span" style="white-space:pre">Name space can be hidden which can be disabled.
2)<span class="Apple-tab-span" style="white-space:pre"> Certain project files can be hidden and a user can
show them if he intends to do.
3)<span class="Apple-tab-span" style="white-space:pre">Lots and lots of shortcuts are present which ease the
development of programs.
4)<span class="Apple-tab-span" style="white-space:pre">Using the AddressOf myObject function a delegate
can be made. .... Read More
b. MSIL: Microsoft Intermediate Language is considered to be the lowest form of human readable language. It
is CPU independent and includes instructions of how to load, store, initialize objects. JIT converts this MSIL into
native code which is dependent on the CPU.
d. Garbage Collector: The .NET garbage collector enables high-speed allocation and release of memory for the
objects in managed code. Its main aim is proper memory management.
f. Type Checker: It enforces the constraints of types. It enforces strictness in type checking.
i. Base class library: It provides all the types that an application need at runtime.
j. Exception manager: Handles all the exception for an application during runtime.
k. COM Marshaller: It provides an option for interoperability for an application .... Read More
b. Type Safety: Is referred as the strongly typed feature. It allows to access memory only in authorized ways
makes sure that it is within the bounds. It ensures that code cannot perform operations that are invalid for an
object.
c. Managed Code execution: It is the process followed by the CLR from loading MSIL, converting it into
machine code, memory management. Managed code execution also handles JIT compilation, handles
exceptions, and confirms type safety and security issues.