Mindteck Interview Question

1. What is generic? 2. What's the difference between arraylist and set's? 3. What's "finally"?

Interview Answer

Anonymous

Aug 28, 2019

Generic is an arbitrary data type that allows a method to operate without specifying any other known datatypes. An arraylist is an ordered list while a set is non-ordered list unless it is a sortedset. The finally keyword allows a program or logic to just run regardless of any Exceptions caught in the try catch block.

1