What is java lang?


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

Post New Answer

More Java Related AllOther Interview Questions

What is jpa project?

0 Answers  


Where is singleton design pattern used in java?

0 Answers  


What is optional in java 8? What is the use of optional?advantages of java 8 optional?

0 Answers  


1.can i use super keyword in normal class(not inheritance) to call any method?if so how can i call particular variable? 2.In the inheritance how can i access the particular variable from the base class(it containing 5 variables) using super keyword?

0 Answers  


How can the static main method use instance variables?

0 Answers  






why i can not access private variable in other class?

4 Answers  


How do I run a java project in netbeans?

0 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 about products that claim to detect malicious applets? : java security

0 Answers  


I run a web server. Am I at risk? : java security

0 Answers  


What is Serialization?

2 Answers   HCL,


What is the java virtual machine (jvm)?

0 Answers  


Categories