What are the notations in Java?
Answer / nagarjuna
This interface represents a notation declared in the DTD. A
notation either declares, by name, the format of an
unparsed entity (see section 4.7 of the XML 1.0
specification ), or is used for formal declaration of
processing instruction targets (see section 2.6 of the XML
1.0 specification ). The nodeName attribute inherited from
Node is set to the declared name of the notation.
| Is This Answer Correct ? | 6 Yes | 4 No |
What is a condition in programming?
Differentiate between class and structure.
What is meant by method?
Difference between throw and throws?
Can a double value be cast to a byte?
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?
What are advantages and disadvantages of OOPs?
What are the concepts of 'OOPS'?
What is the hashcode () and equals () used for?
class test { private static void main(String []adsf) { } } explain me that the above code is error or exception
What is the top class of AWT event hierarchy?
What is a return in java?