Hard
Java is a language
Author: Thomas De verdièreStatus: PublishedQuestion passed 3041 times
Edit
1
Community Evaluations
Julien
11/02/2025
impératif est une réponse incorrect, pourtant "les langages de programmation impératifs ont une syntaxe plus détaillée, étape par étape. Ils nécessitent de spécifier chaque instruction que l'ordinateur doit exécuter pour obtenir le résultat souhaité. C, Java et Python sont des exemples de langages impératifs."
10
What "design pattern" makes it possible to offer a means of treating the elements of a tree without worrying about the course?10
A Customer class has the com.company.model package.16
How many times is the condition `(a++ < 15)` evaluated in the following code?
```java
int a = 3;
while (a++ < 15) {
if ((a++ % 5) == 0)
break;
}
```12
A monitor in Java11
Serialization can be customized with the Externalizable interface11
What does the final keyword mean in front of a method in Java?11
How many instance of Integer cannot be freed from memory?