why we are using XML?

Answer Posted / alex

XML (extensible Markup Language) it is mainly used for
mobile viewing purpose & also we r using xml in coding for
reducing the extra or unnecessary memory like some links
needed too much of memory instared of that we use xml code
means , we avoid over memory occupation.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Describe the ear, war, and jar.

680


How does j2ee application work?

675


Is java more difficult than c++?

656


What is j2ee explain the component of j2ee application?

600


What is fatal error?

765


What does java ee stand for?

633


What is full form of j2ee?

708


What is java 2 platform, micro edition (j2me)?

705


What is B2B?

748


What is java mobile?

656


How many types of constructors are there in java?

613


How will you explain load() and get() methods?

700


What is javabeans component?

692


Why awt is used in java?

670


public class ActionSearchBean extends GenericSearchBean { @Override public String search() { data.setRowCount(null); if(data.getRowCount()==0){ data.getNoRecordFound().setRendered(true); data.getDataScroller().setRendered(false); } return "searchAction"; } @Override public String clear() { data.setRowCount(null); if (data.getRowCount() > 0){ data.getNoRecordFound().setRendered(false); data.getDataScroller().setRendered(true); }else{ data.getNoRecordFound().setRendered(true); data.getDataScroller().setRendered(false); } data.setModel(new ActionDTO()); data.setRowCount(null); return "searchAction"; } } what is the purpose of @Override ...what will do @Override here ?

2186