fun web prefinals

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/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:16 AM on 5/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

Function

a reusable block of code designed to perform a specific task

2
New cards

Function Declaration

defining a function using the function keyword, name, parameters, and code block

3
New cards

Function Call

executing a function by writing its name followed by parentheses

4
New cards

Return Statement

ends function execution and optionally sends a value back to where it was called

5
New cards

Local Variable

a variable declared inside a function and only accessible within it

6
New cards

Global Variable

a variable declared outside functions and accessible throughout the program

7
New cards

Parameter

a variable listed inside a function’s parentheses used to accept input values

8
New cards

Argument

the actual value passed to a function when it is called

9
New cards

Syntax

the set of rules that defines the structure of a programming language

10
New cards

SyntaxError

an error that occurs when code violates language rules or structure

11
New cards

ReferenceError

an error when trying to use a variable or function that does not exist

12
New cards

TypeError

an error when a value is not of the expected data type

13
New cards

RangeError

an error when a value is outside the allowed range

14
New cards

Exception

a runtime error that occurs during program execution

15
New cards

Try Catch

a statement used to handle exceptions without stopping the program

16
New cards

Finally

a block that always executes after try or catch regardless of errors

17
New cards

Debugging

the process of identifying and fixing errors in a program

18
New cards

Debugger

a tool or statement used to pause code execution for inspection

19
New cards

Step Into

executes code line-by-line and enters functions for detailed inspection

20
New cards

Step Over

executes a function call without entering its internal code

21
New cards

Step Out

exits the current function and continues execution outside it