What is ui framework in java?


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

Post New Answer

More Java Related AllOther Interview Questions

How do javabeans work?

0 Answers  


What is the java virtual machine (jvm)?

0 Answers  


Difference between Abstract Class & Interface?

4 Answers   HCL, IBM,


What is the use of lambda functions?

0 Answers  


What is phantom memory?

0 Answers  






What is java ioc?

0 Answers  


What happens when the parent process of a child process exits before the child ?

0 Answers   Amazon,


What if the main method is declared as private?

0 Answers  


why i can not access private variable in other class?

4 Answers  


what is the function of OS

3 Answers  


public class Dog { private int weight; public int getweight(){ return weight; } public void SetWeight(int newWeight){ if (newWeight > 0){ weight = newWeight; } } } public class TestDog { public static void main(String[] args) { Dog d = new Dog(); System.out.println("Dog d's weight is " + d.getWeight()); d.setWeight(42); System.out.println("Dog d's weight is " + d.getWeight()); d.setweight(-42); System.out.println("Dog d's weight is " + d.getWeight()); } } class dog is compiled but there is an error in class TestDog when compiled and the error is with dot notations. I want to kmow why there is error in testdog class when compiled.

3 Answers  


What is the use of flatmap?

0 Answers  


Categories