MCQs > IT & Programming > C# > What modifier to add instead of '....' to become a true code? public class ClassA { .... int x = 10; } public class Program : ClassA { static void Main(string[] args) { ClassA ob = new ClassA(); Program cc = new Program(); cc.x = 12; ob.x = 19; } }

C# MCQs

What modifier to add instead of "...." to become a true code? public class ClassA { .... int x = 10; } public class Program : ClassA { static void Main(string[] args) { ClassA ob = new ClassA(); Program cc = new Program(); cc.x = 12; ob.x = 19; } }

Answer

Correct Answer: internal

Explanation:

Note: This Question is unanswered, help us to find answer for this one

C# Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C# Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it