This post is a continuation of the Java Coding Interview Questions on Collections : Java Coding Interview Questions – Collections 1. What will be the output of following program on ArrayList ? package com.topjavatutorial; import java.util.ArrayList; import java.util.List; public class ArrayListDemo2 { public static void main(String[] args) { List list = new ArrayList(); list.add(10); …