What are the diagrams defined in the uml standard

Assignment Help JAVA Programming
Reference no: EM131201285

Instructions

I. What are the diagrams defined in the UML Standard. Give a one or two sentence description of each one.

II. Given the following code, how should the toString methods in the classes H2ClassA and H2ClassB be written to give the indicated output and take advantage of the natural toString method in H2ClassB?

1 importjava.util.ArrayList;
2
3 publicclass H2ClassA {
4 ArrayList<H2ClassB> list = newArrayList<H2ClassB> ();
5
6 publicstaticvoid main (String args []) {
7 H2ClassA y = new H2ClassA ();
8 int [] v = {4, 3, 7, 5, 99, 3};
9 for (int m: v)
10 y.list.add (new H2ClassB (m));
11 System.out.println (y);
12 } // end main
13
14 } // end class H2ClassA
15
16 class H2ClassB {
17 int x;
18 H2ClassB (int a) { x = a;}
19 } // end H2ClassB
OUTPUT:
4 3 7 5 99 3

III. How can the following code be corrected? Give at least two good answers.

1 publicclass H2ClassC {
2 H2ClassC (int a) {}
3 }// end class H2ClassC
4
5 class H2ClassD extends H2ClassC{
6 } // end class H2ClassD

IV. Why does the following code give a compiler error? How should it be fixed?

1 publicclass H2ClassE {
2 int x, y, z;
3
4 H2ClassE (int a) {
5 x = a;
6 this (5, 12);
7 }
8
9 H2ClassE (int b, int c) {
10 y = b;
11 z = c;
12 }
13 } // end class H2ClassE

V. What is wrong with the following declaration? How should it be fixed?

public static final intmyNumber = 17.36;

VI. What is wrong with the following code? How should it be fixed?

1 publicclass H2ClassG {
2 finalint x;
3
4 H2ClassG () {}
5 H2ClassG (int a) {x = a;}
6 }// end class H2ClassG

VII. What is wrong with the following code? How should it be fixed?

1 publicclass H2ClassH {
2 finalint x;
3
4 int H2ClassH () {
5 if (x == 7) return 1;
6 return 2;
7 }// end
8 } // end class H2ClassH

VII. What is wrong with the following code? x should be given a value of 24. What are two ways this can be legally accomplished?

1 publicclass H2ClassI {
2 finalint x;
3
4 publicstaticvoid main (String args []) {
5 H2ClassI h = new H2ClassI ();
6 h.x = 24;
7 }// end main
8 } // end class H2ClassI

IX. What is wrong with the following code? Give two effective ways to fix it.

1 importjavax.swing.*;
2 importjava.awt.event.*;
3
4 publicclass H2ClassJ extendsJFrame {
5 publicstaticfinallongserialVersionUID = 22;
6
7 public H2ClassJ () {
8 addMouseListener (newMouseListener () {
9 publicvoidmouseClicked (MouseEvent e) {}
10 });
11 } // end constructor
12
13 } // end class H2ClassJ

X. Why does the following code give a compiler warning? (Use javac -Xlint) How should it be fixed?
1 importjavax.swing.*;
2
3 publicclass H2ClassK {
4 String [] sa = {"a", "b", "c"};
5 JComboBoxjcbA = newJComboBox (sa);
6 } // end class H2ClassK

 

 

Reference no: EM131201285

Questions Cloud

How many juice boxes does lucy have : Oliver has one juice box. - Lucy has one fewer juice box than Oliver. - how many juice boxes does lucy have?
Calculate the monthly payment : You just took a $125,000, seven-year loan. Payments at the end of each month are flat (equal in every month) at an annual interest rate of 4.75 percent. Calculate the monthly payment
What is line current and is it leading or lagging voltage : what is the line current, and is it leading or lagging the voltage?
What type of targeting strategy is the promark company using : When Ikea showcases rooms of furniture on its website, it lists each item in the room. However, if customers like all of the items, they can purchase them as a bundle. Which of the following aspects of the marketing mix is Ikea likely altering?
What are the diagrams defined in the uml standard : Why does the following code give a compiler error? How should it be fixed? What are the diagrams defined in the UML Standard. Give a one or two sentence description of each one.
Identify two situational pressures in a public company : Identify two situational pressures in a public company that would increase the likelihood of fraud.-  Identify three opportunity situations that would increase the likelihood of fraud.
Calculate the percent efficiency under rated conditions : If friction and windage loss is 25 W and core loss is 30 W, calculate the percent efficiency under rated conditions.
Determine the power angle for this load : Determine the power angle for this load and the value of Eb for this condition. Sketch the phasor diagram, showing Eb, IS, and VS.
What entries would be made by tanzanite : What entries would be made by Tanzanite for the first two interest payments, assuming premium or discount amortization on interest dates.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Compute the amount of money earned

If you invest the amount of P at R% interest rate annually. In N years, your investment will be P[1-(R/100)N+1] / (1 – R/100). Accepts the input of P, R and N and compute the amount of money earned after N years using computer currency forma..

  Write method that checks whether string is a valid password

Write a program that prompts the user to enter a password and displays Valid Password if the rules are followed or Invalid Password otherwise to verify a password according to as set of rules stated in the problem statement

  Write a program to display the customer''s name

Write a program that prompts the salesperson for the name of the customer and the price of the textbooks sold to that customer.• The program should display the customer's name and the total compensation

  Design a java class to represent a 3-d geomtetric shape

Design and implement a Java class to represent a 3-D geomtetric shape of your choice. The class should contain a constructor, appropriate data fields and methods to return the volume of the shape, and the surface area of the shape and any other me..

  A program that reads a four-digit number from the keyboard

Write a program that reads a four-digit number from the keyboard as a string and then converts it into decimal. For example, if the input is 1100, the output should be 12. Hint: Break the string into characters and then convert each character to a va..

  What will the following program segments display

What will the following program segments display

  Natural sympathies

Discussed the "natural sympathies" and equality that exist between Jane and Mr. Rochester and that challenge the rigid class structure of English society.

  A method and using a synchronizedblock

What'sthe difference between synchronizing on a method and using a synchronizedblock?

  Java program that plays a guessing game with the user

The user must be allowed to play until deciding to explicitly terminate the game (I would use an exit button on the GUI window).

  Instance methods

instance methods: setWidth(double w), setHeight(double h), double getWidth(), double getHeight() and double getArea() * A triangle's area is calculated by width*height*0.5  * all variables are private and methods public.

  Create to determine how much either joe or jim

What type of equation would you create to determine how much either Joe or Jim makes separately? What equation is needed in Java (ignoring the $ symbol)? What data type is needed need for this equation?

  Eligible for garbage collection

When is the B object, created in line 3, eligible for garbage collection - There is no way one can be absolutely certain.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd