Created by Isaiah Parker
about 8 years ago
|
||
Question | Answer |
C# pronunciation | C Sharp |
What does ECMA-334 standard language mean? | It means that Microsoft has submitted it, for standardization, which allows it to be a cross-platform language. |
What are the 3 pillars of Object oriented programming? | - Encapsulation -Inheritance -Polymorphism |
What other programming languages have similar syntax? | C, C++, and Java |
Which platforms can you create applications for using c#? | Windows desktops, tablets, phones, and Linux platforms that support Mono. |
what are two ways to physically type new C# coding? | You can create a program using c# in notepad, but it is highly recommended to use Visual Studio. |
What is encapsulation? | Encapsulation is defined 'as the process of enclosing one or more items within a physical or logical package'. Encapsulation, in object oriented programming methodology, prevents access to implementation details. |
Class | Is a data structure that encapsulates a set of data and behaviors that belong together as a logical unit. The data and behaviors are the members of the class, and they include its methods, properties, and events, and so on, as listed later in this topic. |
Function | This is also called a sub-routine, procedure or a METHOD in Object Oriented programming. |
Method | A method is a code block that contains a series of statements that could initiate actions. Every executed action in a program should be inside of a method. They should be located inside of a class. |
Want to create your own Flashcards for free with GoConqr? Learn more.