Question: 2. Draw the sequence diagram for the following code. public class SeqDiag { public static void main (String [] args) { func(); } public

2. Draw the sequence diagram for the following code. public class SeqDiag { public static void main (String 

2. Draw the sequence diagram for the following code. public class SeqDiag { public static void main (String [] args) { func(); } public void func() { public class ClassA { ClassA objA = new ClassA(); ClassA objB = new ClassA(); int val = objA.get(); int val1 = objB.get(); objA.put(val + 1); objB.put(val1 - 1); static private int num = 10; public int get() { return num; } public void put(int val) { num = val; }

Step by Step Solution

3.27 Rating (139 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To create a sequence diagram we need to visually represent the interactions between objects in the g... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!