Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

please anwsering the following C# questions. These questions are about the C# pr

ID: 3882535 • Letter: P

Question

please anwsering the following C# questions. These questions are about the C# programming language.

Behaviors of an object are the characteristics (variables/attributes) while States of an object are the actions (methods). True False The 4 access modifiers for classes are public, private, protected and external. True False A good programming practice is, when we declare fields in the class, to explicitly initialize them with some default value, even if the default value is zero. True False The task of the constructor is to initialize the memory, allocated for the object, where its fields will be stored True False

Explanation / Answer

1 answer) False

2 answer) False

Explanation:- Four access modifiers are public,private,protected,internal

3 answer) True

4 answer) False

Explanation:- The task of constructor is to initialise the member variables