Question: Java Test cases!! I tried writing test cases as shown and i got a null pointer exception?? public class Uniquesum Normally, this method will compute
Java Test cases!! I tried writing test cases as shown and i got a null pointer exception??

public class Uniquesum Normally, this method will compute the sum of the three parameters. BUT, if one of the parameters has the same value as another parameter, then neither of the parameters should be included in the sum. If all three parameters * have the same value, then zero should be returned. param a First parameter to use in the "unique sum" calculation oparam b Second parameter to use in the "unique sum" calculation 8@param c Third parameter to use in the "unique sum" calculation @return "Unique sum" which only sums values which appear once in the three parameters. e public int computeUniqueSum(int a, int b, int c) f if(a== b) { return ; f else return c; else if (a-c) { return b; } else if (b == c) { return a; else t return a b C
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
