Multiple choice technology programming languages

Considering that applications are running in different application domains how does a running application communicate or share data with other application?

  1. using Exceptions

  2. using attributes

  3. using .NET remoting services

  4. using IO

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

.NET Remoting is the framework for communication between application domains in different processes or machines. It allows objects to interact across boundaries. Exceptions are for error handling, attributes are for metadata, and IO is for file operations - none are for cross-domain communication.