HTML vocab

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

1/19

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.

20 Terms

1
New cards

Variable

A symbol that represents a value in computer memory, which can be changed during program execution.

2
New cards

Function

A named section of a program that performs a specific task.

3
New cards

Loop

A programming construct that repeats a block of code until a certain condition is met.

4
New cards

Conditional

A statement that performs different actions depending on whether a condition is true or false.

5
New cards

String

A sequence of characters, typically used to represent text.

6
New cards

Integer

A whole number, without decimals, used to represent numerical data.

7
New cards

Boolean

A data type with only two possible values: true or false.

8
New cards

Array

A data structure that stores a collection of elements, typically of the same type, accessed by indexing.

9
New cards

Method

A function that is associated with an object in object-oriented programming.

10
New cards

Class

A blueprint for creating objects, which defines their properties and behaviors.

11
New cards

Module

A file containing Python definitions and statements, typically used to organize code into reusable components.

12
New cards

Argument

A value passed to a function or method when called, used as input for the function to operate on.

13
New cards

Parameter

A variable used in a function or method definition to represent an argument that will be passed to it.

14
New cards

Syntax

The set of rules that define the combinations of symbols that are considered to be correctly structured code in a particular programming language.

15
New cards

Comment

An annotation in the source code of a program, ignored by the compiler or interpreter, used to explain the code or make notes.

16
New cards

Operator

A symbol that performs a specific operation on one or more operands in an expression.

17
New cards

Recursion

A programming technique where a function calls itself in order to solve a problem.

18
New cards

Exception

An event that occurs during the execution of a program that disrupts the normal flow of instructions.

19
New cards

Compilation

The process of translating source code into machine code or bytecode.

20
New cards

Debugging

The process of finding and fixing errors, or bugs, in a program.