• +91 9723535972
  • info@interviewmaterial.com

DotNet Interview Questions and Answers

DotNet Interview Questions and Answers

Question - 131 : - How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?

Answer - 131 : -   The using() pattern is useful because it ensures that Dispose() will always be called when a disposable object (defined as one that implements IDisposable, and thus the Dispose() method) goes out of scope, even if it does so by an exception being thrown, and thus that resources are always released.

Question - 132 : - What does this useful command line do? tasklist /m "mscor*"

Answer - 132 : -   Lists all the applications and associated tasks/process currently  running on the system with a module whose name begins "mscor" loaded into them; which in nearly all cases means "all the .NET processes".

Question - 133 : - What’s wrong with a line like this? DateTime.Parse(myString);?.

Answer - 133 : -   Therez nothing wrong with this declaration.Converts the specified string representation of a date and time to its DateTime equivalent.But If the string is not a valid DateTime,It throws an exception.

Question - 134 : - What are PDBs? Where must they be located for debugging to work?

Answer - 134 : -   A program database (PDB) files holds debugging and project state information that allows incremental linking of debug configuration of your program.There are several different types of symbolic debugging information. The default type for Microsoft compiler is the so-called PDB file. The compiler setting for creating this file is /Zi, or /ZI for C/C++(which creates a PDB file with additional information that enables a feature called ""Edit and Continue"") or a Visual Basic/C#/JScript .NET program with /debug. A PDB file is a separate file, placed by default in the Debug project subdirectory, that has the same name as the executable file with the extension .pdb. Note that the Visual C++ compiler by default creates an additional PDB file called VC60.pdb for VisulaC++6.0 and VC70.PDB file for VisulaC++7.0. The compiler creates this file during compilation of the source code, when the compiler isn't aware of the final name of the executable. The linker can merge this temporary PDB file into the main one if you tell it to, but it won't do it by default. The PDB file can be useful to display the detailed stack trace with source files and line numbers.

Question - 135 : - What is FullTrust? Do GAC’ed assemblies have FullTrust?

Answer - 135 : -   Before the .NET Framework existed, Windows had two levels of trust for downloaded code. This old model was a binary trust model. You only had two choices: Full Trust, and No Trust. The code could either do anything you could do, or it wouldn't run at all.   The permission sets in .NET include FullTrust, SkipVerification, Execution, Nothing, LocalIntranet, Internet and Everything. Full Trust Grants unrestricted permissions to system resources. Fully trusted code run by a normal, nonprivileged user cannot do administrative tasks

Question - 136 : - What does this do? gacutil /l | find /i "Corillian"

Answer - 136 : - The Global Assembly Cache tool allows you to view and manipulate the contents of the global assembly cache and download cache.The tool comes with various optional params to do that. ""/l"" option Lists the contents of the global assembly cache. If you specify the assemblyName parameter(/l [assemblyName]), the tool lists only the assemblies matching that name

Question - 137 : -   What does this do .. sn -t foo.dll ?

Answer - 137 : -   Sn -t option displays the token for the public key stored in infile. The contents of infile must be previously generated using -p. Sn.exe computes the token using a hash function from the public key. To save space, the common language runtime stores public key tokens in the manifest as part of a reference to another assembly when it records a dependency to an assembly that has a strong name. The -tp option displays the public key in addition to the token.

Question - 138 : - How do you generate a strong name?

Answer - 138 : -   .NET provides an utility called strong name tool. You can run this toolfrom the VS.NET command prompt to generate a strong name with an option "-k" and providing the strong key file name. i.e. sn- -k < file-name > What is the difference between a Debug and Release build? Is there a significant speed difference? Why or why not? The Debug build is the program compiled with full symbolic debug information and no optimization. The Release build is the program compiled employing  optimization and contains no symbolic debug information. These settings can be changed as per need from Project Configuration properties. The release runs faster since it does not have any debug symbols and is optimized.

Question - 139 : - Explain the importance and use of each, Version, Culture and PublicKeyToken for an assembly.

Answer - 139 : -   This three alongwith name of the assembly provide a strong name or fully qualified name to the assembly. When a assebly is referenced with all three. PublicKeyToken: Each assembly can have a public key embedded in its manifest that identifies the developer. This ensures that once the assembly ships, no one can modify the code or other resources contained in the assembly. Culture: Specifies which culture the assembly supports   Version: The version number of the assembly.It is of the following form major.minor.build.revision. Explain the differences between public, protected, private and internal. These all are access modifier and they governs the access level. They can be applied to class, methods, fields. Public: Allows class, methods, fields to be accessible from anywhere i.e. within and outside an assembly. Private: When applied to field and method allows to be accessible within a class. Protected: Similar to private but can be accessed by members of derived class also. Internal: They are public within the assembly i.e. they can be accessed by anyone within an assembly but outside assembly they are not visible.

Question - 140 : - What is the difference between typeof(foo) and myFoo.GetType()?

Answer - 140 : -   Typeof is operator which applied to a object returns System.Type object. Typeof cannot be overloaded white GetType has lot of overloads.GetType is a method which also returns System.Type of an object. GetType is used to get the runtime type of the object. Example from MSDN showing Gettype used to retrive type at untime:- public class MyBaseClass: Object { } public class MyDerivedClass: MyBaseClass { } public class Test {    public static void Main() {       MyBaseClass myBase = new MyBaseClass();       MyDerivedClass myDerived = new MyDerivedClass();       object o = myDerived;       MyBaseClass b = myDerived;       Console.WriteLine("mybase: Type is {0}", myBase.GetType());       Console.WriteLine("myDerived: Type is {0}", myDerived.GetType());       Console.WriteLine("object o = myDerived: Type is {0}", o.GetType());       Console.WriteLine("MyBaseClass b = myDerived: Type is {0}", b.GetType());    } } /* This code produces the following output.


NCERT Solutions

 

Share your email for latest updates

Name:
Email:

Our partners