1. Question:What is the use of Sortedset<T>? 

    Answer
    SortedSet  mainftains the order of items as they are added. If a duplicate item is added to a sorted set, it will be ignored and a value of false is returned from the SortedSet's Add () method.

    1. Report
  2. Question:What loops are used when parallelize your application? 

    Answer
    Two loops parallel. For () and Parallel. ForEach () are used at the time of parallelized our application.

    1. Report
  3. Question:What are the functions Task wait () and Task wait all () methods? 

    Answer
    Task. Wait () and Task. WaitAll () methods allow us to pause the flow of execution until the tasks have completed their work.

    1. Report
  4. Question:What is PLINQ? 

    Answer
    PLINQ is the parallelized version of LINQ to objects and supports all existing LINQ operators and functionality with a few new options for fine-grained control of parallelization functionality.

    1. Report
  5. Question:What is the function of Barrier class? 

    Answer
    The Barrier class allows us to synchronize threads at a specific point.

    1. Report
  6. Question:When will you use SpinLock? 

    Answer
    SpinLock forces program to loop until it can obtain and lock access to particular resource.

    1. Report
  7. Question:Show the WF activity hierarchy. 

    Answer
    WF Activity: CodeActivity, AsyncCodeActivity, NativeActivity, And Dynamic Activity.

    1. Report
  8. Question:What is the function of WCF? 

    Answer
    WCF Workflow Service applications are a new type of project in VS2010 that make it very easy to create workflows for sending and receiving data

    1. Report
  9. Question:What is the usefulness of HTTP Caching? 

    Answer
    One of the biggest advantages to using Restful services is that you can take advantage of HTTP caching features to improve performance and reduce load on the service.

    1. Report
  10. Question:what are the benefits of using EF (Entity framework)? 

    Answer
    EF (entity Framework) provides an abstraction above the database layer and a number of enhancements that make it superior to LINQ to SQL.

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