Шукаєте відповіді та рішення тестів для II.1102 – Algorithmique et Programmation? Перегляньте нашу велику колекцію перевірених відповідей для II.1102 – Algorithmique et Programmation в moodle-ovh.isep.fr.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
Lequel des éléments suivants n’est pas un concept POO en Java?
Which of the following is not an OOP concept in Java?
Que se passe-t-il lorsque deux objets String sont concaténés à l'aide de l'opérateur + en Java ?
What happens when two String objects are concatenated using the + operator in Java?
Quelle est la complexité algorithmique en temps de la fonction suivante ?What is the algorithmic time complexity of the following function?
public void fonction(int[] notes) {
int moyenne = 0;
int n = notes.length;
for (int i = 0; i < n; i++) {
moyenne += notes[i];
}
moyenne /= n;
System.out.println(moyenne);
}
Dans l'implémentation de la liste chaînée d'une file, où le nouvel élément sera-t-il inséré ?
In the linked list implementation of a queue, where will the new element be inserted?
Lequel des nœuds suivants est considéré comme le sommet de la pile si la pile est implémentée à l'aide de la liste chaînée ?
Which of the following nodes is considered the top of the stack if the stack is implemented using the linked list?
Sélectionnez la déclaration valide :
Select the valid declaration:
Quel est le résultat de l’extrait de code suivant ?
What is the result of the following code snippet?
public class Main {
public static void main(String[] args) {
String str = "Java";
str.concat(
" Programming");
System.out.
println(str);
}
}
En supposant que les variables x et y sont déclarées et initialisées avec les valeurs suivantes :
int x = 2;int y = 3;Laquelle des propositions suivantes correspond à une condition ternaire ?
Assuming that variables x and y are declared and initialized with the following values:
int x = 2;int y = 3;
Which of the following is a ternary condition?
La question porte sur la complexité algorithmique en temps de certaines opérations avec des structures de données.
Parmi les affirmations suivantes, laquelle est fausse ?
The question concerns the algorithmic time complexity of certain operations with data structures.
Which of the following statements is false?