QUIZ 1 # OOP

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

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:03 PM on 10/17/23
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Objects

Specific instances created from a class, inheriting characteristics defined by the class with unique attribute values.

2
New cards

While

A looping construct that repeats a block of code while a condition is true.

3
New cards

Source code

Human-readable instructions written in a programming language, such as C#.

4
New cards

Classes

Blueprints from which individual objects are created.

5
New cards

Default constructor

Initializes attributes to default values (0 for numeric types, null for reference types).

6
New cards

Private

An access modifier limited to the same class, hiding data from external access.

7
New cards

IDE

Software suite for coding, testing, and debugging.

8
New cards

Properties

Special methods to read, write, or compute the value of a private field in a controlled manner.

9
New cards

Static constructor

Special constructor initializing static members of a class.

10
New cards

Programming

Writing instructions for computers to perform specific tasks.

11
New cards

Variables

Named memory locations to temporarily store data.

12
New cards

Protected

Access modifier accessible within the same class and derived classes.

13
New cards

Getters

Retrieve the value of a property, used for reading the value.

14
New cards

Constructor

Special method in a class to initialize object attributes upon creation.

15
New cards

Encapsulation

OOP principle bundling data and methods into a single unit, a class.

16
New cards

Statements

Individual instructions forming a complete action in programming.

17
New cards

OOP

Programming paradigm revolving around objects containing data and code.

18
New cards

Namespace

Organizational unit in C# to group related classes, interfaces, enumerations, and types.

19
New cards

Methods

Defined within a class, performing specific tasks or operations on object data (attributes).