pltw vocab

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

incremental approach

an approach to programming where the programmer adds and tests code in small chunks at a time to make sure it behaves the way they want it to, before adding more code.

2
New cards

program

A set of instructions that a computer executes (or uses) to achieve a particular objective.Code that performs tasks.

3
New cards

end user

A representative consumer (or customer) for whom a hardware or software product is designed.

4
New cards

user interface (UI)

The visual part of a computer app or operating system, through which an end user interacts with the computing device or software.

5
New cards

view layer

The layer of an app that the user sees and interacts with.

6
New cards

controller layer

The layer of an app that contains the program that tells the app how to behave.It acts as an intermediary between the user interface and the data layer, managing user inputs and application logic.

7
New cards

event

An action or occurrence that happens during runtime that will trigger a response or behavior by the software. 

Ex: user-initiated events, such as clicking a button, or external events, such as the device receiving an SMS text message.

8
New cards

runtime

The period when a program is running. Runtime begins when a program is opened (or executed) and ends when the program is closed.

9
New cards

event-driven programming

Type of computer programming where the program responds to an input (or trigger). EX: mouse clicks or a video game that responds to user inputs.

10
New cards

event handlers

A block of code that is triggered when a certain event happens.

11
New cards

user-initiated event

In a program, an event that is triggered by user interaction with the user interface.This includes actions like clicks, key presses, and mouse movements that initiate responses from the program.