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. 3

Computer Science & Information Technology

You might also like to view...

What is the escape sequence for double quote?

A. /” B. \” C. \’ D. /’

Computer Science & Information Technology

Device letters are followed by a(n) ____ and a backslash.

A. colon B. semicolon C. forward slash D. asterisk

Computer Science & Information Technology