what is the J2EE BluPrints?
No Answer is Posted For this Question
Be the First to Post Answer
What is a parameter used for?
What's the default access specifier for variables and methods of a class?
Why declare Main() method as a static in java ?
Which variables are stored in stack?
What variables are stored in stack?
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?
How many types of threads are there in java?
List the features of java programming language.
What is join () in java?
long d =10;int i =0;i=d; /// is this possible? If d is very long number (10 digits or some thing) then?
What are facelets templates?
Is there a way to increase the size of an array after its declaration?