Answer:
This is the required code:
Explanation:
public class NumberToString {
public static String numToString(int num, int base) {
final String digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
if (num < base) {
return "" + digits.charAt(num);
} else {
return numToString(num / base, base) + digits.charAt(num % base);
}
}
}
Answer: False
Explanation:
Employees should be discipline same way for same policy violations. This will give the employees the impression that no one was cheated or given preferential treatment. Everyone gets same stroke for same offence. The human resources department can't be do away with. They are the ones in charge of employees.