coding terms

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

flashcard set

Earn XP

Description and Tags

For studying it g

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

No analytics yet

Send a link to your students to track their progress

5 Terms

1
New cards

syntax

The set of rules that defines the combinations of symbols that are considered to be correctly structured programs or statements in a programming language.

Example:
“The program failed because of a syntax error.”

2
New cards

Variable

A named place that stores information.

customer_name = "Bellal"

customer_name is the variable.

Example:

“This variable stores the customer’s name.”

3
New cards

Function

A reusable block of code that performs a specific task.

def greet(name):

return "Hello " + name

Example:

“I created a function that calculates the total price.”

4
New cards

Parameter and argument

A parameter is the input listed when a function is created. An argument is the actual value supplied when it is used.

def greet(name):  # name is a parameter

return "Hello " + name

greet("Bellal") # "Bellal" is an argument

5
New cards