Ask Question
13 June, 07:48

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 ()); }

+5
Answers (1)
  1. 13 June, 10:15
    0
    Answer: 1234567 7654321

    Explanation:

    Firstly date was declared and initialize as 1234567, declared means hive date a specific value.

    then the statement reverse specific date value to (7654321)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “what is the output of the following program? import java. util. date; public class test { public static void main (String [] args) { date ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers