logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Structures See What Others Are Saying!
  • Question
  • When would a structure variable get destroyed?


  • Options
  • A. When no reference refers to it, it will get garbage collected.
  • B. Depends upon whether it is created using new or without using new.
  • C. When it goes out of scope.
  • D. Depends upon the Project Settings made in Visual Studio.NET.
  • E. Depends upon whether we free it's memory using free() or delete().

  • Correct Answer
  • When it goes out of scope. 


  • More questions

    • 1. Which of the following statements are correct about enum used in C#.NET?

      1. Every enum is derived from an Object class.
      2. Every enum is a value type.
      3. There does not exist a way to print an element of an enum as a string.
      4. Every enum is a reference type.
      5. The default underlying datatype of an enum is int.

    • Options
    • A. 1, 2, 5
    • B. 1, 4
    • C. 3, 5
    • D. 2, 3, 4
    • Discuss
    • 2. Which of the following statements are correct about the delegate declaration given below?

          delegate void del(int i);
      1. On declaring the delegate a class called del will get created.
      2. The signature of del need not be same as the signature of the method that we intend to call using it.
      3. The del class will be derived from the MulticastDelegate class.
      4. The method that can be called using del should not be a static method.
      5. The del class will contain a one-argument constructor and an lnvoke() method.

    • Options
    • A. 1, 2 and 3 only
    • B. 1, 3 and 5 only
    • C. 2 and 4 only
    • D. 4 only
    • E. All of the above
    • Discuss
    • 3. Can static procedures access instance data?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 4. Which of the following are parts of the .NET Framework?

      1. The Common Language Runtime (CLR)
      2. The Framework Class Libraries (FCL)
      3. Microsoft Published Web Services
      4. Applications deployed on IIS
      5. Mobile Applications

    • Options
    • A. Only 1, 2, 3
    • B. Only 1, 2
    • C. Only 1, 2, 4
    • D. Only 4, 5
    • E. All of the above
    • Discuss
    • 5. For the code snippet given below, which of the following statements is valid?

      public class Generic<T>
      {
          public T Field;
      }
      class Program
      {
          static void Main(string[ ] args)
          {
              Generic<String> g = new Generic<String>();
              g.Field = "Hello";
              Console.WriteLine(g.Field);
          }
      }

    • Options
    • A. It will print string "Hello" on the console.
    • B. Name Generic cannot be used as a class name because it's a keyword.
    • C. Compiler will give an error.
    • D. Member Field of class Generic is not accessible directly.
    • E. None of the above.
    • Discuss
    • 6. Which of the following statements are correct about a delegate?

      1. Inheritance is a prerequisite for using delegates.
      2. Delegates are type-safe.
      3. Delegates provide wrappers for function pointers.
      4. The declaration of a delegate must match the signature of the method that we intend to call using it.
      5. Functions called using delegates are always late-bound.

    • Options
    • A. 1 and 2 only
    • B. 1, 2 and 3 only
    • C. 2, 3 and 4 only
    • D. All of the above
    • E. None of the above
    • Discuss
    • 7. For the code snippet given below, which of the following statements are valid?

      public class MyContainer<T> where T: class, IComparable
      {
          //Insert code here
      }
      1. Class MyContainer requires that it's type argument must implement IComparable interface.
      2. Compiler will report an error for this block of code.
      3. There are multiple constraints on type argument to MyContainer class.
      4. Class MyContainer requires that its type argument must be a reference type and it must implement IComparable interface.

    • Options
    • A. 1 and 2 Only
    • B. 3 and 4 Only
    • C. 2 and 3 Only
    • D. All of the above
    • E. None of the above
    • Discuss
    • 8. Which of the following will be the correct output for the C#.NET program given below?

      namespace CuriousTabConsoleApplication
      { 
          class SampleProgram
          { 
              static void Main(string[] args)
              {
                  int a = 5; 
                  int s = 0, c = 0;
                  Proc(a, ref s, ref c);
                  Console.WriteLine(s + " " + c);
              }
              static void Proc(int x, ref int ss, ref int cc)
              {
                  ss = x * x;
                  cc = x * x * x;
              } 
          } 
      }

    • Options
    • A. 0 0
    • B. 25 25
    • C. 125 125
    • D. 25 125
    • E. None of the above
    • Discuss
    • 9. Which of the following jobs are done by Common Language Runtime?

      1. It provides core services such as memory management, thread management, and remoting.
      2. It enforces strict type safety.
      3. It provides Code Access Security.
      4. It provides Garbage Collection Services.

    • Options
    • A. Only 1 and 2
    • B. Only 3, 4
    • C. Only 1, 3 and 4
    • D. Only 2, 3 and 4
    • E. All of the above
    • Discuss
    • 10. Which of the following statements are correct about the C#.NET code snippet given below?

      if (age > 18 && no < 11)
          a = 25;
      1. The condition no < 11 will be evaluated only if age > 18 evaluates to True.
      2. The statement a = 25 will get executed if any one condition is True.
      3. The condition no < 11 will be evaluated only if age > 18 evaluates to False.
      4. The statement a = 25 will get executed if both the conditions are True.
      5. && is known as a short circuiting logical operator.

    • Options
    • A. 1, 3
    • B. 2, 5
    • C. 1, 4, 5
    • D. 3, 4, 5
    • E. None of these
    • Discuss


    Comments

    There are no comments.

Enter a new Comment