quiz oop

1. It is a suite of tools for creating software, from the planning phase through UI design, coding, testing, debugging, analyzing code quality and performance, deploying to customers, and gathering telemetry on usage. - Microsoft Visual Studio

2. It is an elegant and type - safe object oriented language that enables developers to build a variety of secure and robust application - C#

3. It is a component of .Net Framework that runs the code and provides services that make the development process easier. - Common Language Runtime

4. It is a component of .Net Framework that is a library of classes, interfaces, and value types that provide access to system functionality. - .Net Framework class library

5. It is a container for storing data values - Variables

6. It is a type of variable declaration that means the type of the variable is declared before or when the variable is set. - Explicit

7. It is a type of variable declaration that means the type of the variable is assumed by the operators, but any data can be put in it. - Implicit

8. It is used by .Net Framework to organize its many classes and are heavily used in C# programming. - Namespaces

9. It is suitable for representing values whose memory requirements are small. - Structures 10. It is like a blueprint. It defines the data and behavior of a type. - Classes

11. It is a variable of any type that is declared in a class or struct. It can be read or set directly. - Fields

12. It is a member that provides a flexible mechanism to read, write, or compute the value of a private field. - Property

13. These are immutable values which are known at compile time and do not change for the life of 1 the program.- Constants

14. It is a code block that contains a series of statements. Also, it is an action that an object can perform. - Methods

15. These are class methods that are executed automatically when an object of a given type is created. - Constructors