Unit 1 lesson 3 Flashcards

(15 cards)

1
Q

Asynchronus

A

A type of operation that runs independently of the main progam flow, allowing additional tasks to happen without waiting for others to complete

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Bytecode

A

A low level, platform independent code that is executed by a virtual machine, typically produced by compiling source code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Case Sensitive

A

When a programing language treats uppercase and lowercase letters as different characters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Class

A

A blueprint for creating object-oriented programming that defines the properties and behaviors the objects will have

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Compiler

A

A tool that translates source code written in a high level programming language into machine code or bytecode that a computer can execute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Encapsulation

A

Bundling data and methods that opertate on the data into a single unit (a class) and restricting access to some of the object’s compnents

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Field

A

A variable associated with a class or object that represents a piece of data stored in that object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Inheritance

A

The creation of a new class based on an existing class, inheriting its properties and methods while adding new ones or modifying existing ones

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Instantiate

A

The process of creating a specific instance of a class, resulting in an object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Interpreter

A

A tool that executes source code directly and translates it into machine code in real time rather than compiling it before

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Method

A

A function defined within a class that describes the behaviors or actions an object can perform

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Object

A

An instance of a class containing data and methods defined by the class, representing a specific entity in a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Paradigm

A

A style or approach to programming—such as object-oriented, procedural, or functional programming— that dictates how code is structured and organized

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Polymorphism

A

A concept that allows objects of different classes to be treated as objects of a common superclass

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Strong Typing

A

A feature in which each variable has a specific type and you must follow strict rules about how types are used and combined, helping prevent errors in your coode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly