quiz oop

0.0(0)
Studied by 2 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:17 PM on 9/11/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

A suite of tools for creating software, covering planning, UI design, coding, testing, debugging, analyzing code quality and performance, deploying, and gathering telemetry.

Microsoft Visual Studio

2
New cards

An elegant and type-safe object-oriented language for building secure and robust applications.

C#

3
New cards

A component of the .Net Framework that runs code and provides services to ease the development process.

Common Language Runtime

4
New cards

A library of classes, interfaces, and value types in the .Net Framework that provides access to system functionality.

.Net Framework class library

5
New cards

Containers for storing data values.

Variables

6
New cards

A type of variable declaration where the type is declared before or when the variable is set.

Explicit

7
New cards

A type of variable declaration where the type is assumed by the operators, allowing any data to be assigned.

Implicit

8
New cards

Organizational units used by the .Net Framework to group classes, heavily utilized in C# programming.

Namespaces

9
New cards

Suitable for representing values with small memory requirements.

Structures

10
New cards

Blueprints that define the data and behavior of a type.

Classes

11
New cards

Variables of any type declared in a class or struct that can be read or set directly.

Fields

12
New cards

A member that allows flexible access to read, write, or compute the value of a private field.

Property

13
New cards

Immutable values known at compile time that do not change during the program's life.

Constants

14
New cards

Code blocks containing a series of statements, representing actions that an object can perform.

Methods

15
New cards

Class methods that are automatically executed when an object of a given type is created.

Constructors