exam questions

Exam 70-483 All Questions

View all questions & answers for the 70-483 exam

Exam 70-483 topic 2 question 8 discussion

Actual exam question from Microsoft's 70-483
Question #: 8
Topic #: 2
[All 70-483 Questions]

You are developing an application that will be deployed to multiple computers. You set the assembly name.
You need to create a unique identity for the application assembly.
Which two assembly identity attributes should you include in the source code? (Each correct answer presents part of the solution. Choose two.)

  • A. AssemblyTitleAttribute
  • B. AssemblyCultureAttribute
  • C. AssemblyVersionAttribute
  • D. AssemblyKeyNameAttribute
  • E. AssemblyFileVersion
Show Suggested Answer Hide Answer
Suggested Answer: BC 🗳️
The AssemblyName object contains information about an assembly, which you can use to bind to that assembly. An assembly's identity consists of the following:
✑ Simple name
✑ Version number

Cryptographic key pair -

✑ Supported culture

B: AssemblyCultureAttribute -
Specifies which culture the assembly supports.
The attribute is used by compilers to distinguish between a main assembly and a satellite assembly. A main assembly contains code and the neutral culture's resources. A satellite assembly contains only resources for a particular culture, as in [assembly:AssemblyCultureAttribute("de")]

C: AssemblyVersionAttribute -
Specifies the version of the assembly being attributed.
The assembly version number is part of an assembly's identity and plays a key part in binding to the assembly and in version policy.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
CNTPD1
4 years, 11 months ago
BC Correct https://docs.microsoft.com/en-us/dotnet/standard/assembly/set-attributes
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...