CS2400 [Midterm Flashcards]

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

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:17 PM on 2/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

Object-Oriented Programming (OPP) - The Three Design Concepts

1) Encapsulation

2) Inheritance

3) Polymorphism

2
New cards

Class

A programming construct that describes a group of objects, thereby defining the objects’ data type

3
New cards

Method

A Java construct that is a part of a class and performs an action.

Defined either a behavior of an object of the class or an action of the class itself

4
New cards

Behavior

An action that an object can take

5
New cards

Encapsulation

One of the design principles of object oriented programming.

Encloses data and methods within a class, thereby hiding the details of the class’s implementation

  • Hides “fine details”

  • Also called Information Hiding


6
New cards

Information Hiding

A technique that involves hiding a class’s implementation details from its client

7
New cards

Class Definition

The Java statements that define a class, including data fields and methods

8
New cards

Abstraction

A process that focuses on what a class or method should do instead of how it will accomplish it

9
New cards

Data Abstraction

A design principle that separates the operations that can be performed on a collection of data from the implementation of the operations

10
New cards

Interface

(Client Interface)


(Java Interface)

11
New cards

Implementation

A class definition or a method definition

12
New cards

Client

The code that uses a class