Posts

Showing posts from November, 2023
 JAVA PROGRAMMING EXAMPLES Here are the programming examples of JAVA which are discussed in the video lecture of Advanced JAVA programming. Concept of Collection and Interface Introductory program import java.util.*; public class CollectionInterfaceExample {     public static void main(String[] args) {         // Creating a List         List<String> namesList = new ArrayList<>();         namesList.add("Yeshwant ");         namesList.add("Mahavidyalaya");         namesList.add("Nanded");         namesList.add("(MS)");         System.out.println("List elements:");         for (String name : namesList) {             System.out.println(name);         }         // Creating a Set         Set<Integer> numbersSet = n...