Consider how the SWOT analysis might be streamlined for use by individuals. For the following exercise, use the job position you selected for assignment 2 (job analysis) and complete the following: I choose ACCOUNTANT
1. Develop a list of strengths and weaknesses that people could use to rate themselves for the position. As you develop your list, consider the following:
a. What skills and experience might an employer want for that position?
b. What individual characteristics and/or shortcomings may raise a red flag for employers hiring for that position?
2. Similarly, generate a list of possible opportunities and threats. Opportunities and threats have to do with external factors. As you develop your list, consider the following:
a. What sources could be useful for obtaining this information?
b. What could facilitate the hiring of a candidate, or stop a good candidate from being hired, for the position (e.g., increasing use of technology for positions that once used people, increasing supply of qualified employees from other majors). Support your answers.
In: Operations Management
In: Nursing
Malik Katahri, CMM, the office manager, has been happy with the performance of Kaylyn Haddix, RMA (AMT). In the short time since she was hired, she has greatly increased office organization in general. Malik has decided to give her the responsibility of maintaining the sample drug inventory and office medications. The office has a space dedicated to the samples and office medications, but the area is very disorganized. Kaylyn’s first task will be to organize and implement an inventory system for the drugs. Kaylyn is concerned about her abilities because she has only been working for BWW Associates for a couple of months.
Discussion Questions:
In: Nursing
Problems 6-10: In 2015 about 60% of college students used Twitter. In a recent study of 100 students, 80 now use Twitter. Is this evidence to think the percent has changed? We wish to conduct a hypothesis test with 5% significance.
6) State the null and alternative hypothesis.
7) Find the test statistic and P-value and report those values here:
8) What is the decision and conclusion?
9) Now, construct a 95% confidence interval using the sample of 100 students and 80 saying they use twitter.
10) Does the Confidence Interval support your decision for #8? Why or why not?
11 (Bonus): What type of error could we have made in this anaylsis? (Type 1 or Type 2)
In: Statistics and Probability
From the given information in each case below, state what you know about the P-value for a chi-square test and give the conclusion for a significance level of α = 0.01. Use Table 8 in Appendix A. (Enter your answers to three decimal places.)
(a) χ2 = 4.98, df = 2
< P-value <
(b) χ2 = 12.18, df = 6
< P-value <
(c) χ2 = 21.06, df = 9
< P-value <
(d) χ2 = 20.7, df = 4
P-value <
(e) χ2 = 5.86, df = 3
P-value >
In: Math
Your mother, who lives in Ontario, is reluctant to write a will. She is 78 years old and in failing health. Her major assets are her principal residence and a $100,000 unregistered portfolio containing stocks and bonds.
Please describe in detail for all the part.
Part a
Who decides the distribution of assets in the event of intestacy
Part b
Is there any other document that your mother should have for estate planning purposes?
Please explain its use.
Another important estate planning document, and why
Part c
Will either of her two major assets be taxed upon her death?
Taxation of principal residence at death
Taxation of unregistered portfolio at death
In: Accounting
In your opinion is the Red Bull viral strategy effective?
In: Operations Management
The herb echinacea is frequently used for the prevention and treatment of the common cold. If a patient asked your opinion about the use of echinacea, how would you reply? Would you recommend that the patient use this herb for the treatment of a cold? Explain why or why not. Support your position with at least onescholarly journal reference.
In: Nursing
In: Economics
Can you please explain in detail what each line of code stands for in the Main method
import java.util.Scanner;
public class CashRegister {
private static Scanner scanner = new Scanner(System.in);
private static int dollarBills[] = {1, 2, 5, 10, 20, 50,
100};
private static int cents[] = {25, 10, 5, 1};
public static void main(String[] args) {
double totalAmount = 0;
int count = 0;
for (int i = 0; i < dollarBills.length; i++) {
count = getBillCount("How many $" + dollarBills[i] + " bills do you
have");
totalAmount += count * dollarBills[i];
}
for (int i = 0; i < cents.length; i++) {
count = getBillCount("How many " + cents[i] + " cents do you
have");
totalAmount += count * cents[i]/100.0;
}
System.out.printf("You have total $%.2f in your
register\n",totalAmount);
if(totalAmount>150){
System.out.printf("Deposit Amount
$%.2f\n",(totalAmount-150));
}else if(totalAmount==150){
System.out.println("You have exactly $150. You dont have any
deposit.");
}else {
System.out.println("You have less than $150 in your
register.");
}
}
private static int getBillCount(String message) {
int count = 0;
while (true) {
System.out.print(message + ": ");
try {
count = scanner.nextInt();
} catch (Exception exception) {
System.out.println("Invalid number passed.");
}
if (count < 0) {
System.out.println("Invalid number passed.");
} else {
return count;
}
}
}
}
In: Computer Science