What is the output of the following program?

```
import java.util.Date;

public class Test {
public static void main(String[] args) {
Date date = new Date(1234567);
m1(date);
System.out.print(date.getTime() + " ");

m2(date);
System.out.println(date.getTime());
}

public static void m1(Date date) {
date = new Date(7654321);
}

public static void m2(Date date) {
date.setTime(7654321);
}
}```
a. 1234567 1234567
b. 1234567 7654321
c. 7654321 1234567
d. 7654321 7654321


b

Computer Science & Information Technology

You might also like to view...

What exception is thrown if DriverManager method getConnection cannot connect to the database?

a. DatabaseConnectionException. b. DatabaseNotFoundException. c. SQLException. d. IllegalAccessException.

Computer Science & Information Technology

The Delete cropped areas of a picture is an option in the ________ dialog box

Fill in the blank(s) with correct word

Computer Science & Information Technology

If you attach an external style sheet to an Edge Animate HTML file in Dreamweaver, and then reopen the HTML file in Edge Animate and resave it, the association with the external style sheet is lost.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

You can obtain the Adobe Content Viewer from which of the following?

A. The DPS Desktop tools B. The Folio Builder C. The App store D. The InDesign install

Computer Science & Information Technology