IF-else-switch-Anweisungen Flashcards

1
Q

Wie lautet die Syntax für eine If-Anweisung?

A

if(Aussage){
….
}

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

Wann wird eine If-Anweisung ausgeführt?

A

Wenn die Aussage wahr zurückgibt

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

Wie lautet die Syntax für eine If-else-Anweisung?

A
if(Aussage){
....
}
else{
...
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Wann wird der Code im else Block ausgeführt

A

Wenn die Aussage im if Block falsch ist

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

Wie ist die Syntax von einer Switch-Anweisung

A
switch(Ausdruck)
{
 case Konst1:
 Anweisung1;
 break;
 case Konst2:
 Anweisung2;
 break;
 ...
 default:
 Default-Anweisung;
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly