How do I enable javascript?
Answer / Maheshwar Nath
To enable JavaScript in a Java-related context is not applicable, as JavaScript and Java are different programming languages.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the advantages of java sockets?
Which instutute is offering course for rhino jain slee
how ahstraction is the property of oops,this is also in c and c++ ex. printf function which is also hide the unnecessary data,so what is the difference ? and does c++ fallow the abstraction?
What's the difference between local, global and universal groups? : java security
can a program use more than one command-line argument?
What is log4j in java?
Why bean class is used in java?
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.
Explain about the Physical Data Model?
How common are security breaches? : java security
Why is struts used in java?
In hibernate what is the difference between the Session and SessionFactory?