Question from the Java test

Waiting for validation

Quel est le résultat affiché après exécution du programme suivant :

import java.math.BigInteger;

class Main {
public static void main (String[] args) {
BigInteger bigInt = new BigInteger("1");
bigInt.add(new BigInteger("1"));
System.out.println(bigInt);
}
}

Author: koceilaStatus: Waiting for validationQuestion not yet passed
0
Community EvaluationsNo one has reviewed this question yet, be the first!