POTD 4: Graph for source — LCM

Due 9-Oct-2025, 11am EST

Purpose: Purpose:

You may make a copy of a worksheet and complete this activity, or simply type your answers in any text editor.

You may work alone or with at most two other students in this course.


Consider the following Java method

// Calculate_LCM takes two numbers and 
// return LCM (Lease Common Multiplier) of the two numbers
// Examples: 
//    LCM of 12 and 15 = 2 * 2 * 3 * 5 = 60
//    LCM of 12 and 18 = 2 * 2 * 3 * 3 = 36
//    LCM of 15 and 18 = 2 * 3 * 3 * 5 = 90

public static int Calculate_LCM(int n1, int n2)
{
    int result = 1;
    int i = 2;
    if (n1 > n2)
        result = n1;
    else 
        result = n2;
	
    int temp = result;
    while (result % n1 != 0 || result % n2 != 0)
    {
        result = temp * i;
        i++;
    }
      
    return result;
}
  1. Draw a Control Flow Graph for the Calculate_LCM method (You may draw the graph by hand, take a picture of your graph, and embed it in your write-up)
    
    
  2. Apply Node Coverage (NC) to design tests
    Test requirements Test paths Test cases (input values and expected output)
         
       
             
  3. Apply Edge Coverage (EC) to design tests
    Test requirements Test paths Test cases (input values and expected output)
         
          
            
  4. Apply Edge-Pair Coverage (EPC) to design tests
    Test requirements Test paths Test cases (input values and expected output)
         
            
            
  5. Apply Prime Path Coverage (PPC) to design tests
    Test requirements Test paths Test cases (input values and expected output)
         
    
            

Grading rubric

[Total: 10 points]: Done (or provide evidence of your attempt, full or reasonable effort)

(-2.5 points) for 24 hours late (submitted after 9-Oct-2025 11am EST, by 10-Oct-2025 11am EST)
(-5 points) for 48 hours late (submitted after 10-Oct-2025 11am EST, by 11-Oct-2025 11am EST)


Submission

Making your submission available to instructor and course staff is your responsibility; if we cannot access or open your file, you will not get credit. Be sure to test access to your file before the due date.



Copyright © 2025 Upsorn Praphamontripong
Released under the Creative Commons License CC-BY-NC-SA 4.0 license.
Last updated 2025-09-28 16:46