.Net Assemblies Interview Questions and Answers - 3

Question: 11

What is the use of evidence and permission class?

The Evidence class is a collection that holds the evidence objects.

Permission classes grant access to a resource or the right to perform some action.

Question: 12

How the assemblies are viewed?

Assemblies can be viewed using the command line utility ildasm, the MSIL disassemble.

Question: 13

Define digital signature?

Encryption is done with private key, and anyone can decrypt it by public key is called digital signature.

Question: 14

Define digital certificate?

It contains the identify information that is used to authenticate the certificate.

Question: 15

What is the general format for the version number?

A version number for the assembly is like this: 1: 0: 2203: 20

The first two numbers (1:0) are major and minor versions.

The third number (2203) is the build.

The fourth (20) is the version.

Related Questions