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 are the ways to instantiate the class class?
What does super keyword do?
What is length in java?
What will happen when using pass by reference in java?
Why we cannot override static method?
What environment variables do I need to set on my machine in order to be able to run java programs?
Why should I use abstract class?
What is the difference between a synchronized method and a synchronized block?
Can a class be a super class and a sub-class at the same time? Give example.
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
Difference between string s= new string (); and string s = "abv";?
What are the two ways to create a thread?