logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • Mention the two major categories that distinctly classify the variables of C# programs.


  • Correct Answer
  • Variables that are defined in a C# program belong to two major categories: value type and reference type The variables that are based on value type contain a value that is either allocated on a stack or allocated in-line in a structure The variables that are based on reference types store the memory address of a variable, which in turn stores the value and are allocated on the heap The variables that are based on value types have their own copy of data and therefore operations done on one variable do not affect other variables The reference-type variables reflect the changes made in the referring variables 


  • Technology problems


    Search Results


    • 1. How can you deploy an ASP.NET Web application?
    • Discuss
    • 2. List different ways of deployment that are supported by .NET Framework 4.0.
    • Discuss
    • 3. Explain why workflows are based on Extensible Models.
    • Discuss
    • 4. What are the different types of workflow in WF?
    • Discuss
    • 5. What is Windows Workflow Foundation (WF)?
    • Discuss
    • 6. What is Language Integrated Query (LINQ)?
    • Discuss
    • 7. Write the basic syntax of a LINQ query in Visual Basic as well as in C#.
    • Discuss
    • 8. What is the DataContext class and how is it related to LINQ?
    • Discuss
    • 9. What are standard query operators in LINQ?
    • Discuss
    • 10. Which interface implements the standard query operators in LINQ?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment