C# Programming - .NET Framework - Discussion

Discussion Forum : .NET Framework - General Questions (Q.No. 18)
18.
Which of the following statements are correct about a .NET Assembly?
  1. It is the smallest deployable unit.
  2. Each assembly has only one entry point - Main(), WinMain() or DLLMain().
  3. An assembly can be a Shared assembly or a Private assembly.
  4. An assembly can contain only code and data.
  5. An assembly is always in the form of an EXE file.
1, 2, 3
2, 4, 5
1, 3, 5
1, 2
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
4 comments Page 1 of 1.

Paru said:   1 decade ago
Assembly can be private or shared.

Ashwani Saxena said:   1 decade ago
As I know in .Net assembly is private or shared. Then why this is not correct? please tell me.

Monalisa Sarangi said:   1 decade ago
An assembly is always in the form which file ?

Bikash said:   1 decade ago
If it contains main(), then it is in .exe file and if it doesn't contain main() then it is a .dll file.

Post your comments here:

Your comments will be displayed after verification.