Example: OutOfMemoryError
Single Choice
Views 33
Answer:
import java.util.ArrayList; public class ErrorExample2 { public static void main(String[] args) { ArrayList list = new ArrayList<>(); while (true) { list.add(new int[1000000]); // Keep allocating memory } } }
Related Articles:
This section is dedicated exclusively to Questions & Answers. For an in-depth exploration of Java Programming Language, click the links and dive deeper into this subject.
Join Our telegram group to ask Questions
Click below button to join our groups.