What is the output of the following code?

```
public class Test {
public static void main(String[] args) {
java.math.BigInteger x = new java.math.BigInteger("3");
java.math.BigInteger y = new java.math.BigInteger("7");
x.add(y);
System.out.println(x);
}
}```
a. 3
b. 4
c. 10
d. 11

a

Computer Science & Information Technology

You might also like to view...

Aggregate functions only work with numerical data

Indicate whether the statement is true or false

Computer Science & Information Technology

What is Microsoft Intune?

A) A private cloud solution for managing devices that run the Windows, iOS, and Android operating systems B) A public cloud solution for managing devices that run the Windows, iOS, and Android operating systems C) A platform for managing only those devices that run the Windows operating system D) A tool that is used to manually push out and update antivirus definitions on all devices

Computer Science & Information Technology