logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Properties See What Others Are Saying!
  • Question
  • If Sample class has a Length property with get and set accessors then which of the following statements will work correctly?

    1. Sample.Length = 20;
    2. Sample m = new Sample(); 
      m.Length = 10;
    3. Console.WriteLine(Sample.Length);
    4. Sample m = new Sample(); 
      int len;
      len = m.Length;
    5. Sample m = new Sample(); 
      m.Length = m.Length + 20;


  • Options
  • A. 1, 3
  • B. 2, 4, 5
  • C. 4 only
  • D. 3, 5

  • Correct Answer
  • 2, 4, 5 


  • More questions

    • 1. Which of the following statement is correct about a String in C#.NET?

    • Options
    • A. A String is mutable because it can be modified once it has been created.
    • B. Methods of the String class can be used to modify the string.
    • C. A number CANNOT be represented in the form of a String.
    • D. A String has a zero-based index.
    • E. The System.Array class is used to represent a string.
    • Discuss
    • 2. Which of the following can be facilitated by the Inheritance mechanism?

      1. Use the existing functionality of base class.
      2. Overrride the existing functionality of base class.
      3. Implement new functionality in the derived class.
      4. Implement polymorphic behaviour.
      5. Implement containership.

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

      1. We can assign values of any type to variables of type object.
      2. When a variable of a value type is converted to object, it is said to be unboxed.
      3. When a variable of type object is converted to a value type, it is said to be boxed.
      4. Boolean variable cannot have a value of null.
      5. When a value type is boxed, an entirely new object must be allocated and constructed.

    • Options
    • A. 2, 5
    • B. 1, 5
    • C. 3, 4
    • D. 2, 3
    • Discuss
    • 4. Which of the following loop correctly prints the elements of the array?

      char[ ] arr = new char[ ] {'k', 'i','C', 'i','t'} ;

    • Options
    • A.
      do
      {
          Console.WriteLine((char) i); 
      } 
      while (int i = 0; i < arr; i++);
    • B.
      foreach (int i in arr)
      {
          Console.WriteLine((char) i);
      }
    • C.
      for (int i = 0; i < arr; i++)
      {
          Console.WriteLine((char) i);
      }
    • D.
      while (int i = 0; i < arr; i++)
      {
          Console.WriteLine((char) i);
      }
    • E.
      do
      {
          Console.WriteLine((char) i); 
      } 
      until (int i = 0; i < arr; i++);
    • Discuss
    • 5. Which of the following statements are correct?

      1. The switch statement is a control statement that handles multiple selections and enumerations by passing control to one of the case statements within its body.
      2. The goto statement passes control to the next iteration of the enclosing iteration statement in which it appears.
      3. Branching is performed using jump statements which cause an immediate transfer of the program control.
      4. A common use of continue is to transfer control to a specific switch-case label or the default label in a switch statement.
      5. The do statement executes a statement or a block of statements enclosed in {} repeatedly until a specified expression evaluates to false.

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

      struct Book
      {
          private String name; 
          protected int totalpages; 
          public Single price; 
          public void Showdata()
          {
              Console.WriteLine(name + " " + totalpages + " " + price);
          } 
          Book()
          {
              name = " "; 
              totalpages = 0;
              price = 0.0f; 
          } 
      } 
      Book b = new Book();
      1. We cannot declare the access modifier of totalpages as protected.
      2. We cannot declare the access modifier of name as private.
      3. We cannot define a zero-argument constructor inside a structure.
      4. We cannot declare the access modifier of price as public.
      5. We can define a Showdata() method inside a structure.

    • Options
    • A. 1, 2
    • B. 1, 3, 5
    • C. 2, 4
    • D. 3, 4, 5
    • Discuss
    • 7. If a class Student has an indexer, then which of the following is the correct way to declare this indexer to make the C#.NET code snippet given below work successfully?

      Student s = new Student(); 
      s[1, 2] = 35;

    • Options
    • A.
      class Student
      { 
          int[ ] a = new int[5, 5]; 
          public property WriteOnly int this[int i, int j]
          { 
              set
              { 
                  a[i, j] = value;
              } 
          }
      }
    • B.
      class Student
      { 
          int[ , ] a = new int[5, 5]; 
          public int property WriteOnly
          { 
              set
              { 
                  a[i, j] = value;
              } 
          } 
      }
    • C.
      class Student
      { 
          int[ , ] a = new int[5, 5];
          public int this[int i, int j] 
          {
              set
              { 
                  a[i, j] = value;
              } 
          } 
      }
    • D.
      class Student
      { 
          int[ , ] a = new int[5, 5];
          int i, j; 
          public int this
          { 
              set
              { 
                  a[i, j] = value;
              } 
          } 
      }
    • Discuss
    • 8. Suppose a Student class has an indexed property. This property is used to set or retrieve values to/from an array of 5 integers called scores[]. We want the property to report "Invalid Index" message if the user attempts to exceed the bounds of the array. Which of the following is the correct way to implement this property?

    • Options
    • A.
      class Student
      {
          int[] scores = new int[5] {3, 2, 4,1, 5}; 
          public int this[ int index ]
          { 
              set
              { 
                  if (index < 5)
                      scores[index] = value; 
                  else
                      Console.WriteLine("Invalid Index");
              } 
          } 
      }
    • B.
      class Student
      {
          int[] scores = new int[5] {3, 2, 4, 1, 5};
          public int this[ int index ]
          { 
              get
              { 
                  if (index < 5)
                      return scores[ index ]; 
                  else
                  { 
                      Console.WriteLine("Invalid Index"); return 0; 
                  } 
              } 
              set
              { 
                  if (index < 5)
                      scores[ index ] = value;
                  else 
                      Console.WriteLine("Invalid Index"); 
              } 
          } 
      }
    • C.
      class Student
      {
          int[] scores = new int[5] {3, 2, 4, 1, 5}; 
          public int this[ int index ]
          { 
              get
              { 
                  if (index < 5)
                      return scores[ index ]; 
                      else
                      { 
                          Console.WriteLine("Invalid Index"); 
                          return 0; 
                      } 
              } 
          } 
      }
    • D.
      class Student
      {
          int[] scores = new int[5] {3, 2, 4, 1, 5}; 
          public int this[ int index ]
          { 
              get
              {
                  if (index < 5)
                      scores[ index ] = value; 
                  else
                  { 
                      Console.WriteLine("Invalid Index");
                  } 
              }
              set
              { 
                  if (index < 5)
                      return scores[ index ];
                  else
                  { 
                      Console.WriteLine("Invalid Index");
                      return 0;
                  }
              }
          }
      }
    • Discuss
    • 9. Which of the following statements are correct about an interface used in C#.NET?

      1. An interface can contain properties, methods and events.
      2. The keyword must implement forces implementation of an interface.
      3. Interfaces can be overloaded.
      4. Interfaces can be implemented by a class or a struct.
      5. Enhanced implementations of an interface can be developed without breaking existing code.

    • Options
    • A. 1, 2
    • B. 1, 4, 5
    • C. 3, 4
    • D. 3 only
    • Discuss
    • 10. Suppose n is a variable of the type Byte and we wish, to check whether its fourth bit (from right) is ON or OFF. Which of the following statements will do this correctly?

    • Options
    • A.
      if ((n&16) == 16)
      Console.WriteLine("Fourth bit is ON");
    • B.
      if ((n&8) == 8)
      Console.WriteLine("Fourth bit is ON");
    • C.
      if ((n ! 8) == 8)
      Console.WriteLine("Fourth bit is ON");
    • D.
      if ((n ^ 8) == 8)
      Console.WriteLine("Fourth bit is ON");
    • E.
      if ((n ~ 8) == 8)
      Console. WriteLine("Fourth bit is ON");
    • Discuss


    Comments

    There are no comments.

Enter a new Comment