A simple Lucky draw Program
Here I’m going to show a simple program which picks random 6 character and assigns the point for that code no. If it consists vowel… Read More »A simple Lucky draw Program
Here I’m going to show a simple program which picks random 6 character and assigns the point for that code no. If it consists vowel… Read More »A simple Lucky draw Program
Problem: [sourcecode=’java’] import java.util.*; public class Test{ public static void main(String[] args){ ArrayList x = new ArrayList(); x.add(new Student(“Naray”)); x.add(new Student(“Gopal”)); } } [/sourcecode] //in… Read More »Problem at Constructor's Parameter