Coding for Design Flashcards

1
Q

Programming process flow

A

It illustrates the program’s operating processes through basic shapes and symbols.

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

Process specification

A

It describes the results that a program is expected to produce.

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

DOM Tree

A

Document Object Model. It represents a document with a logical tree.

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

JS Statements

A

It is a single line of code that performs a specific action or operation. They are used to make a program do something.

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

JS Input/Output

A

They allow for interaction with users, web browsers, and other programs to receive and produce data.

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

JS variables

A

They are statements used to store and manipulate data by declaring an identifier and assigning a value.

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

JS expression

A

It is a combination of values, variables, operators, and functions that returns a value.

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

JS function

A

It is a reusable block of code that performs tasks by taking in parameters and returning values.

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

JS decision

A

JS uses conditional statements to perform different actions based on different conditions.

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

JS loop

A

They are used to repeatedly execute a block of code until a certain condition is met.

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

JS algorithm

A

It is a set of statements or steps to solve a problem or perform a task.

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

Flowchart

A

It is a visual representation of the sequence of steps and decisions needed to perform a process.

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

EventListener

A

It is a function that initiates a predefined process if a specific event occurs.

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

console

A

A part of the web browser that allows you to log messages, run JavaScript code, and see errors and warnings.

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

console.log()

A

A function used to generate output to the console.

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

HTML element

A

It is defined by a start tag, some content, and an end tag.

17
Q

CSS element selector

A

It selects all elements with the specified element name

18
Q

Code block

A

It is a group of JavaScript statements enclosed within curly braces {}.

19
Q

Run

A

Action of the browser interpreting JS statements

20
Q

Syntax

A

It is tthe set of rules and guidelines that define the structure and format of valid JavaScript code

21
Q

Input/output

A

It refers to the process of interacting with the user or external systems to receive input data and produce output results.

22
Q

Property

A

It is a characteristic or attribute of an object. It consists of a name (key) and a value, and it defines the state or behavior of the object.

23
Q

Style

A

It allows you to manipulate the CSS styling of the element dynamically

24
Q

Event Handler

A

It s a function that is associated with a specific event and is triggered when that event occurs.