• +91 9723535972
  • info@interviewmaterial.com

DotNet Interview Questions and Answers

DotNet Interview Questions and Answers

Question - 151 : - Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

Answer - 151 : -   The tracing dumps can be quite verbose.  For applications that are constantly running you run the risk of overloading the machine and the hard drive.  Five levels range from None to Verbose, allowing you to fine-tune the tracing activities.

Question - 152 : - What’s a Windows process?

Answer - 152 : - It’s an application that’s running and had been allocated memory.

Question - 153 : - What’s typical about a Windows process in regards to memory allocation?

Answer - 153 : - Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or a bunch of other applications down.

Question - 154 : - Why do you call it a process? What’s different between process and application in .NET, not common computer usage, terminology?

Answer - 154 : - A process is an instance of a running application. An application is an executable on the hard drive or network. There can be numerous processes launched of the same application (5 copies of Word running), but 1 process can run just 1 application.

Question - 155 : - What distributed process frameworks outside .NET do you know?

Answer - 155 : - Distributed Computing Environment/Remote Procedure Calls (DEC/RPC), Microsoft Distributed Component Object Model (DCOM), Common Object Request Broker Architecture (CORBA), and Java Remote Method Invocation (RMI).

Question - 156 : - What are possible implementations of distributed applications in .NET?

Answer - 156 : - .NET Remoting and ASP.NET Web Services. If we talk about the Framework Class Library, noteworthy classes are in System.Runtime.Remoting and System.Web.Services.

Question - 157 : - When would you use .NET Remoting and when Web services?

Answer - 157 : - Use remoting for more efficient exchange of information when you control both ends of the application. Use Web services for open-protocol-based information exchange when you are just a client or a server with the other end belonging to someone else.

Question - 158 : - What’s a proxy of the server object in .NET Remoting?

Answer - 158 : - It’s a fake copy of the server object that resides on the client side and behaves as if it was the server. It handles the communication between real server object and the client object. This process is also known as marshaling.

Question - 159 : - What are remotable objects in .NET Remoting?

Answer - 159 : - Remotable objects are the objects that can be marshaled across the application domains. You can marshal by value, where a deep copy of the object is created and then passed to the receiver. You can also marshal by reference, where just a reference to an existing object is passed.

Question - 160 : - What are channels in .NET Remoting?

Answer - 160 : - Channels represent the objects that transfer the other serialized objects from one application domain to another and from one computer to another, as well as one process to another on the same box. A channel must exist before an object can be transferred.


NCERT Solutions

 

Share your email for latest updates

Name:
Email:

Our partners