Write a program to calculate the total number of combinations possible.
class NumberOfCombinations { public static void main(String s[]) { System.out.println("Total number of combinations of 17C3 : " + numberOfCombinations(17, 3)); } public static Integer numberOfCombinations(int total, int choicesCount) {
} }