What is mean by UML? what is the use? where we are using?
Answer Posted / spanksguy
UML is Unified Modeling language.
It is the significant part of any application either it is
Web or Window Application. Because it help us for
analysing the basic need of project and help to design its
character(class,object).
We use it in any Project for the development of any
application.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?
What are Normalization Rules? Define Normalization?
What are runtime exceptions?
How do generics work?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.
How do I convert a string to an int in java?
How to declare an arraylist in java?
What do you mean by exception handling in Java?
What are 3 boolean operators?
What is singletonlist in java?
What is the mapping mechanism used by java to identify IDL language?
What is constructor in java ?
Can we make the abstract methods static in java?
How many types of gc are there in java?
Is map sorted in java?