Basics Flashcards

1
Q

main-Methode

A

Einstiegspunkt eines Java-Programms, wird von der Java Virtual Methode aufgerufen, um das Programm auszuführen

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

Datentyp

A

Gibt an, welche Art von Daten eine Variable speichern kann (Beispiele: int, double, boolean)

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

Variablenname

A

Ein Bezeichner für eine Variable, die einen Wert speichert

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

Wert

A

Ist der Inhalt, der eine Variable speichert

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

Deklaration/deklarieren

A

Eine Variable oder Funktion wird erstellt, aber ihr wurde noch kein Wert zugewiesen

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

Initialisierung/initialisieren

A

Bezeichnet die erste Zuweisung eines Werted zu einer Variable

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

Cast/casten

A

Wandelt einen Datentyp in einen anderen um (Bsp: double zahl = 3,14; int ganzZahl = (int) zahl;

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

Operatoren

A

Sind Symbole oder Keywords, die auf Operanden angewendet werden (Beispiel: Vergleichsoperatoren)

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

Binden/Binding

A

Beschreibt die Zuordnung eines Wertes zu einem Namen

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