what is difference between validation.xml & validation
rules.xml?
Answer Posted / devudu
You can write the your validations in validation.xml.
validationrules.xml is containing all rules of what ever
you given in validation.xml
| Is This Answer Correct ? | 17 Yes | 6 No |
Post New Answer View All Answers
What is meant by tab pans?
Tell some latest versions in JAVA related areas?
How will you call an Applet using Java Script Function?
How can you set the applet size?
How to change the priority of thread or how to set the priority of thread?
Why is serialization required?
Explain the selection sort algorithm?
What do you mean by stream pipelining in java 8?
What do you mean by pointer value and address?
How to create packages in java?
Say you want to store the information about a number of pets in an array. Typical information that you could store for each pet (where relevant) would be • Breed of animal • Animal's name • Its birth date • Its sex • Whether it has been sterilised or not • When it is due for its next inoculation • When it last had its wings clipped For each type of pet (eg. dog, cat or bird) you would typically define a class to hold the relevant data. Note: You do not need to implement these classes. Just answer the following questions. 3.1.1 What would be the advantage of creating a superclass (eg. Pet) and declaring an array of Pet objects over simply using an array of Objects, storing each of the instances of the different pet classes (eg. Dog, Cat or Bird) in it? 3.1.2 Would you define Pet as a class or as an interface? Why? (2) (2)
Define interface in java?
State some advantages of java?
What is difference between module and function?
when to use ArrayList and when to use HashMap in webApplication.