Begriffe

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

Last updated 12:19 AM on 6/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

Variable

2
New cards

JavaScript

3
New cards

Camel Case

camelCase

4
New cards

String

5
New cards

Snake Case

snake_case

6
New cards

Dynamic Website

7
New cards

Statement (Anweisung)

A syntactic unit of an imperative programming language that expresses some action to be carried out. A program written in such a language is formed by a sequence of one or more statements.

8
New cards

Function (Funktion)

A block of code that performs a specific task and can be reused throughout a program. It's like a mini-program within a larger program. Functions are essential for organizing code, making it easier to read, understand, and maintain.

9
New cards

Expression (Ausdruck)

A combination of values, variables, operators, and function calls that, when evaluated, produce a single result. Essentially, it's a piece of code that resolves to a value.

<p>A combination of values, variables, operators, and function calls that, when evaluated, produce a single result. Essentially, it's a piece of code that resolves to a value. </p>
10
New cards

Constant (Konstante)

A value that is not altered by the program during normal execution. When associated with an identifier, a constant is said to be "named," although the terms "constant" and "named constant" are often used interchangeably.

11
New cards

Identifier (Identifikator)

A name used to refer to a specific element in a program, such as a variable, function, or class. These names help programmers and the compiler distinguish between different parts of the code.

12
New cards

Operator

Operator is a programming language construct that provides functionality that may not be possible to define as a user-defined function (i.e. sizeof in C) or has syntax different than a function (i.e. infix addition as in a+b).