Java Flashcards

1
Q

indicatifs de déclarations de variables par types en java ?

A
int
double
boolean
char
String
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

incrémentations synthétique (tous) en java ?

A

++ ; += ; – ; -=

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

Déclaration d’une variable de type caractère en java ?

A

char nomVariable = ‘o’;

guillemets simples obligatoire

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

imprimer en console en java ? (en générale)

A

System.out.println();

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

imprimer en console dans processing (java) ?

A

println() ou print();

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

Boucle ‘for’ en java ?

A

for (int i=0; i≤= 5; i++) {};

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