Consider the following pieces of C# code:
a. interface I1 {/*......*/}
interface I2 {/*......*/}
struct Point : I1,I2 {/* ..... */}
b. struct Book{
int bookId;
struct Book b;
}
c. using M=Mystruct;
struct MyStruct{
int id;
}
class MyClass{
static void Main(string[] args){
M m = new M();
}
}
d. struct Sample{
Sample ref x;
}
Which of the above are correct?
Choose one of the options below.
a, c and d are right
a only right
a and c are right
d only wrong
None of the listed options
Answer Posted / niloy roy
Only a is the right
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why does dllimport not work for me?
Why do we need to call CG.SupressFinalize?
Tell me the difference between value passing and address passing?
Why do you need boxing in c#?
Explain the steps to create satellite assembly?
What is difference between destructor and finalize?
What are floating point numbers?
What is data annotation in c#?
How do I create multifile assembly?
How do you convert byte array to hexadecimal string, and vice versa?
Any problem found in vs.et
What is the difference between method parameters and method arguments. Give an example?
What is Named parameter in C#?
Can we inherit private class in c#?
What are the 2 broad classifications of fields in c#?