What does it mean that a class or member is final?
No Answer is Posted For this Question
Be the First to Post Answer
what is the full form of java
Given: 1. package test; 2. 3. class Target { 4. public String name = “hello”; 5. } What can directly access and change the value of the variable name? 1 any class 2 only the Target class 3 any class in the test package 4 any class that extends Target
I have one POJO class(Java bean class), it has two variables for that it has setters and getters. Now i have created two objects for that class and i have set the data for those variables through this two objects. Now question is i want check whether those two objects have same data or not, for this write a program? Thanks, Bose.
In what ways you can handle exception ?
How could Java classes direct program messages to the system console, but error messages, say to a file?
Difference between class#getinstance() and new operator ?
Can keyword be used as identifier?
how to get the max salary and name of employee from arraylist without using the Comperator or even Comparable interface?
what is the use of clone method? why user cant overwrite in sub class without its proper defination.
Explain the difference between hashmap and hashtable in java?
Which collection does not allow duplicates in java?
what is servlet filter?