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

Author Question: What is the printout of the following code?import java.util.*;public class Test { public static void ... (Read 98 times)

tuffie

  • Hero Member
  • *****
  • Posts: 534
What is the printout of the following code?

import java.util.*;

public class Test {
public static void main(String[] args) throws Exception {
ArrayList list = new ArrayList();
list.add(1); list.add(2); list.add(1); list.add(3);
remove(list, 1);
System.out.println(list);
}
 
public static void remove(ArrayList list, int value) {
int k = 0;
while (k < list.size()) {
if (list.get(k).equals(value))
list.remove(k);
k++;
}
}
}

◦ [2, 3]
◦ [1, 2, 1, 3]
◦ [1, 2, 3]
◦ [2, 1, 3]


Related Topics

Need homework help now?

Ask unlimited questions for free

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

shewald78

  • Sr. Member
  • ****
  • Posts: 340
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 39% of students answer this correctly




tuffie

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


sultana.d

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

 

Did you know?

Throughout history, plants containing cardiac steroids have been used as heart drugs and as poisons (e.g., in arrows used in combat), emetics, and diuretics.

Did you know?

Ether was used widely for surgeries but became less popular because of its flammability and its tendency to cause vomiting. In England, it was quickly replaced by chloroform, but this agent caused many deaths and lost popularity.

Did you know?

More than 150,000 Americans killed by cardiovascular disease are younger than the age of 65 years.

Did you know?

Approximately 15–25% of recognized pregnancies end in miscarriage. However, many miscarriages often occur before a woman even knows she is pregnant.

Did you know?

Addicts to opiates often avoid treatment because they are afraid of withdrawal. Though unpleasant, with proper management, withdrawal is rarely fatal and passes relatively quickly.

For a complete list of videos, visit our video library