200+ Advanced VB.Net Interview Questions 2020-2021 - 2

Question: 6

What are the different ways to host a remote object?

A remote object can be hosted in any one of the following hosts:

   Managed executable or Windows service

   IIS

  .NET component services

Question: 7

Which configuration file contains all the supported channels?

The Machine.config file.

Question: 8

What languages does the .NET Framework support?

The four core languages supported by .NET Framework are, Visual Basic. Net, Visual C# .Net, Visual J# .Net and Jscript .Net.

Besides this, the .NET framework supports all major programming languages too.

Few of them are: Visual Basic, c#, C++, python, COBOL, Jscript, Eiffel, Java, Haskell, Pascal, APL, Perl, Small Talk, Oberon, Scheme, Mercury, Oz, RPG, etc.

Question: 9

What is the difference between .Net 3.5 and .Net 4?

.NET framework 3.5 and 4.0 are two versions of the Microsoft .NET framework. The .NET 3.5 was released in year 2007 and .NET 4.0 was released in the year 2010.

.NET 3.5 Framework

Few of the features of .NET 3.5 Framework

It supports ASP.NET AJAX where AJAX is a technology that helps in creating highly responsive web application by making asynchronous calls to the server. It is much easier for developers to develop AJAX applications in .NET 3.5.

It supports LINQ (Language Integrated Query). LINQ makes it possible to merge SQL statements in the programming language and access data from the data base through any of the .NET compliant languages.

It supports WCF (Windows Communication Foundation) that is used in creating web services

.NET 4.0 Framework:

The .NET 4.0 Framework is backward compatible i.e. the applications developed in .NET 3.5 can run in .NET 4.0 too.

Few new features have been introduced in .NET 4.0 that includes, new query filters, validation techniques, new numeric types, in built features for data access etc.

Besides this, several existing features have been improved like, data accessing, WPF (Windows Presentation Foundation), CLR (Common Language Runtime), BCL (Base class Library), etc.

Question: 10

Which class do we inherit while making an object remotable?

The MarshalByRefObject class.

Related Questions