nerdexam
Microsoft

98-372 · Question #109

Which of the following comprises a name consisting of an assembly's identity, public key, and digital signature?

The correct answer is B. Strong name. Strong name is a name consisting of an assembly's identity, public key, and digital signature. It includes the assembly's name, version number, and other related information (if any). Assemblies are identical, if they have the same strong name. Answer: A is incorrect. The…

Understanding .NET Framework Concepts

Question

Which of the following comprises a name consisting of an assembly's identity, public key, and digital signature?

Options

  • AAssembly version attribute
  • BStrong name
  • CPrimary interop assembly
  • DGlobal assembly cache

How the community answered

(17 responses)
  • A
    6% (1)
  • B
    76% (13)
  • C
    12% (2)
  • D
    6% (1)

Explanation

Strong name is a name consisting of an assembly's identity, public key, and digital signature. It includes the assembly's name, version number, and other related information (if any). Assemblies are identical, if they have the same strong name. Answer: A is incorrect. The AssemblyVersionAttribute class specifies the version of the assembly being attributed. The version number is part of an assembly's identity and plays a vital role in binding to the assembly and in version policy. The default version policy for the runtime is that applications run only with the versions they were built and tested with, unless overridden by explicit version policy in configuration files. The version number has four parts, which are as follows: Note: Version checking only occurs with strong-named assemblies. Answer: D is incorrect. Global assembly cache (GAC) is a machine-wide cache. It stores assemblies that are designed to be shared amongst multiple applications on a computer. All assemblies stored in the global assembly cache must have strong names. Answer: C is incorrect. A primary interop assembly is an exclusive assembly that is supplied by a vendor. It holds type definitions (as metadata) of types implemented with COM.

Topics

#strong name#assembly identity#public key#digital signature

Community Discussion

No community discussion yet for this question.

Full 98-372 Practice