1. Question:What is Intellisense?  

    Answer
    Intelllisense performs partial partial string matching. When we were type word in Visual Studio than it displays matched word.

    1. Report
  2. Question:What is the purpose of MEF (Managed Extensibility Framework)? 

    Answer
    MEF (Managed Extensibility Framework) is a new framework for creating customizable applications that can be used by any. NET compatible language.

    1. Report
  3. Question:What is the function of IComparer interface? 

    Answer
    IComparer interface accepts two parameters and will return an integer representing whether one object is greater, equal, or less than the other.

    1. Report
  4. Question:Write the differences between statically and dynamically types languages. 

    Answer
    In a statically typed language, such as C#, or C, the compiler checks we are using types correctly at compile time. Dynamic languages, such as javaScript, Python, Lisp, and Ruby, do not perform type checks on code until runtime.

    1. Report
  5. Question:In which situations dynamic types are applicable? 

    Answer
    (a)When working with COM.
    (b)When interacting with dynamic language.
    (c)When working with objects that have changing structures.

    1. Report
  6. Question:What is Garbage Collection? 

    Answer
    This is process when needed in order to clean up unused resources.

    1. Report
  7. Question:When garbage collection will be performed? 

    Answer
    (a)When a threshold is exceeded.
    (b)When a user specifically calls the garbage collector.
    (c)When a low system memory condition occurs.

    1. Report
  8. Question:What is safe Critical code? 

    Answer
    Safe critical code acts as a middle man/gatekeeper between transparent and critical code verifying each result.

    1. Report
  9. Question:What is the benefit of using NGens? 

    Answer
    NGen (Native Image Generator) creates processor optimized machine code (images) of our application that is cached.

    1. Report
  10. Question:What are Memory Mapping Files? 

    Answer
    Memory mapping files maps the contents of a file into memory, allowing us to work with a very efficient manner.

    1. Report
Copyright © 2024. Powered by Intellect Software Ltd