No student devices needed. Know more
7 questions
Write method header to Return a sales commission, given the sales amount and the commission rate
public static double getCommission(double salesAmount)
public static double getCommission(double salesAmount, double commissionRate)
double getCommission(double salesAmount, double commissionRate)
public static double(double salesAmount, double commissionRate)
Write method header Display the calendar for a month, given the month and year
public static void (int month, int year, int day)
public static void printCalendar(int year)
public static void printCalendar(int month, int year)
void printCalendar(int month, int year)
Write method header to Return a square root of a number
public static void double sqrt(value)
public static void double sqrt(double value)
public static double sqrt(value)
public static double sqrt(double value)
Write method header to Test whether a number is even, and returning true if it is
public static boolean isEven(int value)
public static void boolean isEven()
public static boolean (int value)
public static void boolean (int value)
Write method header to Display a message a specified number of times
public static printMessage(int times, ntimes)
public static void (String message, int times)
public static void printMessage(String message, int times)
public static void printMessage(int times)
Write method header to Return the monthly payment, given the loan amount, number of years, and annual interest rate.
public static monthlyPayment(double loan, int numberOfYears, double annualInterestRate)
public static void double monthlyPayment(double loan, int numberOfYears, double annualInterestRate)
public static double monthlyPayment()
public static double monthlyPayment(double loan, int numberOfYears, double annualInterestRate)
Write method header to Return the corresponding uppercase letter, given a lowercase letter
public static char getUpperCase(char letter)
public static void char getUpperCase(char letter)
public static void getUpperCase(char letter)
public static char getUpperCase()
Explore all questions with a free account