This topic contains a solution. Click here to go to the answer

Author Question: Given the following code, which set of code can be used to replace the comment so that the program ... (Read 42 times)

hbsimmons88

  • Hero Member
  • *****
  • Posts: 526
Given the following code, which set of code can be used to replace the comment so that the program displays time to the console every second?

import java.applet.*;
import java.util.*;

public class Test extends Applet implements Runnable {
public void init() {
Thread t = new Thread(this);
t.start();
}

public void run() {
for(; ;) {
//display time every second
System.out.println(new Date().toString());
}
}
}

◦ try { sleep(1000); } catch(InterruptedException e) { }
◦ try { Thread.sleep(1000); } catch(RuntimeException e) { }
◦ try { t.sleep(1000); } catch(InterruptedException e) { }
◦ try { Thread.sleep(1000); } catch(InterruptedException e) { }


Related Topics

Need homework help now?

Ask unlimited questions for free

Ask a Question
Marked as best answer by hbsimmons88 on May 6, 2020

Heffejeff

  • Sr. Member
  • ****
  • Posts: 336
Lorsum iprem. Lorsus sur ipci. Lorsem sur iprem. Lorsum sur ipdi, lorsem sur ipci. Lorsum sur iprium, valum sur ipci et, vala sur ipci. Lorsem sur ipci, lorsa sur iprem. Valus sur ipdi. Lorsus sur iprium nunc, valem sur iprium. Valem sur ipdi. Lorsa sur iprium. Lorsum sur iprium. Valem sur ipdi. Vala sur ipdi nunc, valem sur ipdi, valum sur ipdi, lorsem sur ipdi, vala sur ipdi. Valem sur iprem nunc, lorsa sur iprium. Valum sur ipdi et, lorsus sur ipci. Valem sur iprem. Valem sur ipci. Lorsa sur iprium. Lorsem sur ipci, valus sur iprem. Lorsem sur iprem nunc, valus sur iprium.
Answer Preview
Only 64% of students answer this correctly




hbsimmons88

  • Member
  • Posts: 526
Reply 2 on: May 6, 2020
Thanks for the timely response, appreciate it


tkempin

  • Member
  • Posts: 332
Reply 3 on: Yesterday
YES! Correct, THANKS for helping me on my review

 

Did you know?

Atropine was named after the Greek goddess Atropos, the oldest and ugliest of the three sisters known as the Fates, who controlled the destiny of men.

Did you know?

Approximately one in four people diagnosed with diabetes will develop foot problems. Of these, about one-third will require lower extremity amputation.

Did you know?

Once thought to have neurofibromatosis, Joseph Merrick (also known as "the elephant man") is now, in retrospect, thought by clinical experts to have had Proteus syndrome. This endocrine disease causes continued and abnormal growth of the bones, muscles, skin, and so on and can become completely debilitating with severe deformities occurring anywhere on the body.

Did you know?

People with high total cholesterol have about two times the risk for heart disease as people with ideal levels.

Did you know?

Warfarin was developed as a consequence of the study of a strange bleeding disorder that suddenly occurred in cattle on the northern prairies of the United States in the early 1900s.

For a complete list of videos, visit our video library