Multiple choice technology programming languages

The different types of assemblies are private, public, shared, unshared, satellite.

  1. True

  2. False

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

Assembly types are private, shared, and satellite. The statement incorrectly includes 'public' (not a standard assembly type - assemblies are private or shared) and 'unshared' (redundant with private). Therefore, the statement as written is false.

AI explanation

False is correct. In .NET, assemblies are broadly categorized as either private (deployed in an application's own folder, used only by that app) or shared (given a strong name and placed in the GAC so multiple applications can reference the same assembly), plus satellite assemblies (which hold only localized resources for a specific culture, referenced by a main assembly). 'Public' and 'unshared' are not standard, distinct .NET assembly-type terms — 'public' is effectively what 'shared' already covers, and 'unshared' isn't a recognized category at all. So listing five types (private, public, shared, unshared, satellite) as if they were all distinct is inaccurate, making the statement false.