What is a lightweight component?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

How to split a string in java?

0 Answers  


What is the use of list in java?

0 Answers  


10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }

0 Answers  


Difference between Choice and a List?

1 Answers  


What are packages in java?

0 Answers  






what is the swingutilities.invokelater(runnable) method for? : Java thread

0 Answers  


If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?

5 Answers  


Detail discussions on JVM, memory management and garbage collector.

0 Answers   Expedia,


In Java list the methods that can be overridden?

0 Answers   Accenture,


What happens if an exception is throws from an object's destructor?

0 Answers   Amazon,


How many types of classes are there in java?

0 Answers  


Is main an identifier?

0 Answers  


Categories