Arrays Programming Examples in Java - Part 2
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvv6fsSnUGGo724HpqBBgprPGeEiULq41Qocc68oWoMa8VWZmG7kSw_kfih3hx1iaHFlLjhd564l7nP4XIw9l3xmSwO6sQh_mdQts_g1gD-L9uQcGDhcmUKapBBvX_Ox7x4icvaSTwzQha/s1600/duplicates.jpeg)
List of Java Array Programs - Part 2 ----------------------------------- 8. Find the Size of an Array. 9. Find Even and Odd in Array. 10. Find PRIME number in Array. 11. Increase each Array elements size by 1 . 12. Check Array contains the specific value. 13. Create Array List from Array . 14. Find Duplicate Using Brute Force Method. 15. Find Duplicate Using HashSet. 16. Remove Duplicates in Array using Set (HashSet). ----------------------------------- public class ArrayProgramsPart2 { public static void main(String[] args) { int[] a = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; String[] s = { "Java", "C", "Java", "C", "NODDY", "SELENIUM", "AUTOTECHX" }; SizeOfArray(a); EvenOdd(a); PrimeNumber(a); IncreaseArrayBy1(a); ArrayContains(s); CreateArrayListFromArray(s); FindDuplicateUsingBruteForceMethod(s); FindDuplicateUsingHashSet(s); RemoveDuplic...