logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Properties Comments

  • Question
  • If Sample class has a Length property with get accessor then which of the following statements will work correctly?


  • Options
  • A.
    Sample m = new Sample(); 
    m.Length = 10;
  • B.
    Sample m = new Sample(); 
    m.Length = m.Length + 20;
  • C.
    Sample m = new Sample(); 
    int l;
    l = m.Length;
  • D.
    Sample.Length = 20;
  • E.
    Console.WriteLine(Sample.Length);

  • Correct Answer
  • Sample m = new Sample(); 
    int l;
    l = m.Length;
     


  • Properties problems


    Search Results


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

    • Options
    • A. A property can simultaneously be read only or write only.
    • B. A property can be either read only or write only.
    • C. A write only property will have only get accessor.
    • D. A write only property will always return a value.
    • Discuss
    • 2. Which of the following statements are correct?

      1. The signature of an indexer consists of the number and types of its formal parameters.
      2. Indexers are similar to properties except that their accessors take parameters.
      3. Accessors of interface indexers use modifiers.
      4. The type of an indexer and the type of its parameters must be at least as accessible as the indexer itself.
      5. An interface accessor contains a body.

    • Options
    • A. 1, 3, 5
    • B. 1, 2, 4
    • C. 3, 5
    • D. 2, 4
    • Discuss
    • 3. A Student class has a property called rollNo and stu is a reference to a Student object and we want the statement stu.RollNo = 28 to fail. Which of the following options will ensure this functionality?

    • Options
    • A. Declare rollNo property with both get and set accessors.
    • B. Declare rollNo property with only set accessor.
    • C. Declare rollNo property with get, set and normal accessors.
    • D. Declare rollNo property with only get accessor.
    • E. None of the above
    • Discuss
    • 4. Which of the folowing does an indexer allow to index in the same way as an array?

      1. A class
      2. A property
      3. A struct
      4. A function
      5. An interface

    • Options
    • A. 1, 3, 5
    • B. 2, 4
    • C. 3, 5
    • D. 3, 4, 5
    • Discuss
    • 5. An Account class has a property called accountNo and acc is a reference to a bank object and we want the C#.NET code snippet given below to work. Which of the following options will ensure this functionality?

      acc.accountNo = 10; 
      Console.WriteLine(acc.accountNo);

    • Options
    • A. Declare accountNo property with both get and set accessors.
    • B. Declare accountNo property with only get accessor.
    • C. Declare accountNo property with get, set and normal accessors.
    • D. Declare accountNo property with only set accessor.
    • E. None of the above
    • Discuss
    • 6. An Employee class has a property called age and emp is reference to a Employee object and we want the statement Console.WriteLine(emp.age) to fail. Which of the following options will ensure this functionality?

    • Options
    • A. Declare age property with only get accessor.
    • B. Declare age property with only set accessor.
    • C. Declare age property with both get and set accessors.
    • D. Declare age property with get, set and normal accessors.
    • E. None of the above
    • Discuss
    • 7. 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
    • Discuss
    • 8. A property can be declared inside a class, struct, Interface.

    • Options
    • A. True
    • B. False
    • Discuss
    • 9. Which of the following statements is correct about properties used in C#.NET?

    • Options
    • A. Every property must have a set accessor and a get accessor.
    • B. Properties cannot be overloaded.
    • C. Properties of a class are actually methods that work like data members.
    • D. A property has to be either read only or a write only.
    • Discuss
    • 10. A property can be declared inside a namespace or a procedure.

    • Options
    • A. True
    • B. False
    • Discuss


    Comments

    There are no comments.

Enter a new Comment