In a UML activity diagram, a(n) symbol joins two flows of activity into one flow of activity.

a) merge
b) combine
c) action state
d) decision

a) merge

Computer Science & Information Technology

You might also like to view...

The ____ topology is a continuous path for data with no logical beginning or ending point.

A. hypercube B. grid C. star D. ring

Computer Science & Information Technology

This method should assign a random decimal number (in the range 0 to Int32.Max- Value) to decimal decNumber. Find the error(s) in the following code.

 void RandomDecimal()
 {
 decimal decNumber;
 Random objRandom = new Random();

 decNumber = objRandom.NextDouble();
 lblDisplay.Text = Convert.ToString( decNumber );

 } // end method RandomDecimal

Computer Science & Information Technology