16.
Which of the following statements is correct about an enum used in C#.NET?
A. enum is a reference type.
B. enum is a value type.
C. Whether it a value type or a reference type depends upon size.
D. Whether it a value type or a reference type depends upon a Project Setting made in Visual Stiiclio.NET.
E. We can programmatically control whether it is a value type or a reference type.
Answer & Explanation
Answer: Option B
Explanation:
No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
17.
Which of the following statements are correct about an enum used in C#.NET?
An enum can be declared inside a class.
An enum can take Single, Double or Decimal values.
An enum can be declared outside a class.
An enum can be declared inside/outside a namespace.
An object can be assigned to an enum variable.
A. 1, 3, 4
B. 2, 5
C. 3, 4
D. 2, 4, 5
Answer & Explanation
Answer: Option A
Explanation:
No answer description available for this question. 1.
A property can be declared inside a class, struct, Interface.
A. True B. False
Answer & Explanation
Answer: Option A
Explanation:
No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
2.
Which of the following statements is correct about properties used in C#.NET?
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.
Answer & Explanation
Answer: Option B
Explanation:
No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
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?
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
Answer & Explanation
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
4.
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;
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;
}
}
}
Answer & Explanation
Answer: Option C
Explanation:
No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
5.
Which of the following statements are correct?
The signature of an indexer consists of the number and types of its formal parameters.
Indexers are similar to properties except that their accessors take parameters.
Accessors of interface indexers use modifiers.
The type of an indexer and the type of its parameters must be at least as accessible as the indexer itself.
An interface accessor contains a body.
A. 1, 3, 5
B. 1, 2, 4
C. 3, 5
D. 2, 4
Answer & Explanation
Answer: Option B
Explanation:
No answer description available for this question.