Questions
4.4 Find an article about a company that had to deliver a communication of bad-news to...

4.4 Find an article about a company that had to deliver a communication of bad-news to its constituents or the general public. The bad-news message could be a result of one of the following situations: A product defect or failure A reduction in workforce An under-performing financial quarter A new but unpopular policy such as a pricing strategy Write a 600 to 800 word paper demonstrating clear, insightful critical thinking on the proper approach to delivering bad-news messages. Review the components of bad-news messages: ease in with a buffer, provide a rationale, deliver the bad news, explain impacts, focus on the future and show goodwill. (see LO 11.3 Components of Bad-News Messages). Which components are included in the bad-news message you are reviewing? Which are missing that should have been included? Explain. How well did the bad-news message meet the needs of the victims and other stakeholders? Do you believe the communication was completely fair? Explain. What are three aspects of the bad news message that could have been improved? Explain. Expert Answer Anonymous answered this Was this answer helpful? 0 0 193 answers The problem pertains to the change management at the organisation and giving bad news about the dissolution of the company and hence termination of employment of the employees with the company. Since this news has financial, emotional, psychological and social implications for the employees, it needs to be dealt with utmost sensitivity keeping in mind that employees have been major stakeholders in the growth of the bank and thus they need to be approach with a mature outlook towards their problems. Most business communication professionals do not feel that email is a good way of communicating when the sender has to convey a bad news and it is much better to have a face to face or telephonic conversation in such cases. But, sometimes it is not feasible to have meetings or conversations because of the large number of people involved, unavailability of all the parties, validity and proof of the conversation and geographical distance between the participants.

In: Operations Management

Write and run SQL statements to complete the following tasks Show the details of the vendors...

Write and run SQL statements to complete the following tasks

  1. Show the details of the vendors who are located in area code 615.
  2. Show the details of the products that do not have a value for the attribute v_code.
  3. Show the details of the invoices whose subtotal is greater than 25 but less than 75.
  4. Show the details of the invoice who has the minimum subtotal.
  5. Show the codes and names of the vendors who supplied products.
  6. Using EXCEPT show the codes of the vendors who did not supply any products.
  7. Using ‘NOT IN’ show the codes and names of the vendors who did not supply any products.
  8. List the codes of vendors and the number of products each vendor has supplied, i.e. vendor XXX has supplied xxx products, and vendor YYY has supplied yyy products etc.
  9. List the names and codes of vendors and the number of products each vendor has supplied, i.e. vendor XXX has supplied xxx products, and vendor YYY has supplied yyy products etc.
  10. Add a new attribute (field) status varchar(6) to the EMP table.
  11. Update status for employee '100' to 'Temporary'.
  12. Using inner join, list the details of the products whose line price is greater than 100.

You are required to answer

1.   The SQL statements for each query, which should be copied and pasted into word.

2. tell all the sql command for each question?

tables: -

VENDOR TABLE

V_CODE

V_NAME

V_CONTACT

V_ARAECODE

V_PHONE

V_STATE

V_ORDER

PRODUCT TABLE

P_CODE

P_DESCRIPT

P_INDATE

P_QOH

P_MIN

P_MIN

P_DISCOUNT

V_CODE

CUSTOMER TABLE:

CUS_CODE

CUS_LNAME

CUS_FNAME

CUS_INITIAL

CUS_AREACODE

CUS_PHONE

CUS_BALANCE

INVOICE TABLE:

INV_NUM

CUS_CODE

INV_DATE

INV_SUBTOTAL

INV_TAX

INV_TOTAL

LINE TABLE:

INV_NUMBER

LINE_NUMBER

P_CODE

LINE_UNITS

LINE_PRICE

LINE_TOTAL

EMPLOYEE TABLE:

EMP_NUM

EMP_TITLE

EMP_LNAME

EMP_FNAME

EMP_INITIAL

EMP_DOB

EMP_HIRE_DATE

EMP_AREACODE

EMP_PHONE

EMP_MGR

In: Computer Science

Create a program named MergeSort.java then copy the following code to your program: public static void...

  1. Create a program named MergeSort.java then copy the following code to your program:
    • public static void mergeSort(int[] arr){
         mergeSortRec(arr, 0, arr.length-1);
      }
      private static void mergeSortRec(int[] arr, int first, int last){
         if(first<last){
          int mid=(first+last)/2;
      mergeSortRec(arr, first, mid);
          mergeSortRec(arr, mid+1,last);
          merge(arr, first, mid, mid+1, last);
         }
      }
      private static void merge(int[] arr, int leftFirst,
         int leftLast, int rightFirst, int rightLast){
         int[] aux=new int[arr.length];
         //extra space, this is downside of this algorithm
         int index=leftFirst;
         int saveFirst=leftFirst;
         while(leftFirst<=leftLast && rightFirst <=rightLast){
      if(arr[leftFirst]<=arr[rightFirst]){
         aux[index++]=arr[leftFirst++];
          }else{
         aux[index++]=arr[rightFirst++];
          }
         }
         while(leftFirst<=leftLast){
          aux[index++]=arr[leftFirst++];
         }
         while(rightFirst<=rightLast)
          aux[index++]=arr[rightFirst++];
         for(index=saveFirst; index<=rightLast; index++)
          arr[index]=aux[index];
      }
  2. Write a main method that accepts three numbers N, A, B (assume A<B) from the command argument list, then use the number N to create an N-element int array.
  3. Assign random numbers between [A, B] to each of the N elements of the array.
  4. Call mergeSort method to sort the array.
  5. Write instructions to record the time spent on sorting.
  6. (Optional) you may write code to verify the array was sorted successfully.
  7. Once completed, test your program with different numbers N, A, B and screenshot your result. Your result should include the number of elements and sorting time.
  8. Please include the following in the Word document you created for the assignment for the final submission:  
    • Copy/paste your completed code in MergeSort.java
    • Insert at least one screenshot of the running output in #7 above
    • Answer this question: What is the average Big O for this sort?

In: Computer Science

You work for a hospital in the registration and admissions department, and most of your tasks...

You work for a hospital in the registration and admissions department, and most of your tasks are performed manually. For example, when an individual checks in, you must obtain personal information, details on an individual’s medical background, and hospitalization insurance. You are a strong advocate for information technology and have proposed to IT management that information systems would be beneficial. The hospital has decided to develop and implement an information system that helps to streamline your processes. Since you have extended personal experience with the processes, and you have considerable knowledge of information systems and technology employed by your counterparts at other hospitals, you have been asked to function as the project business analyst. You will work very closely with the IT department’s system analyst. The system analyst has questions regarding the following:

  • What specifically do you do to complete your tasks?
  • What are your thoughts about how technology might improve your processes?
  • What are the challenges and obstacles that would be overcome with the use of an information system?
  • What are your thoughts about the type of information system that might be employed at your hospital?
  • Based on your understanding, what components would be required to implement the information system? For example, would you need any special hardware or software?

In a 3–5-page Word document, be sure to include the following.

  • Summarized list of tasks, or processes, to register and to check in a patient.
  • Benefits of using an information system in support of your day-to-day tasks.
  • Specifics regarding how the information system would help to overcome the present challenges and obstacles.
  • The specific type of information system you recommend (support your recommendation).
  • An outline of all components you see as necessary to implement your recommended information system.
  • Explain how the new information system would help your organization to reduce the overall cost of health care and to improve the profitability of your hospital.

In: Computer Science

As a programmer, you have been asked to write a Java application, using OOP concepts, for...

As a programmer, you have been asked to write a Java application, using OOP concepts, for a Hospital with the following requirements:
• The Hospital has several employees and each one of them has an ID (int), name (string), address (string), mobile phone number (string), email (string) and salary (double) with suitable data types. • The employees are divided into:
o Administration staff: who have in addition to the previous information their position (string). o Doctor: who have also a rank (string) and specialty (string).
The project requirements: • You will need to create all the needed Java classes with all the required information. • You have to apply all the OOP (Object Oriented Programming) concepts that we have covered in this
module (i.e. inheritance, polymorphism, interface and collections)
• Include a Microsoft Word document (name it as readme.doc) that includes several screenshots of
your Netbeans IDE application GUI interface as well as the output screenshot results. Provide all
assumptions that you have made during design and implementation.
• Include the whole Netbeans Java project with all source codes. Write as much comments as possible

At the end, you will need to create a testing class (e.g. Hospital.java) with the static main() method with the following requirements:
• It must have an initial fixed collection of working staff (at least 3 administration staffs and 2
doctors)
• The program will print a selection screen where the user can choose the operation
he/she wants to perform. The selection screen will be repeated after each selection until the staff
type the number 4 to completely exit from the program:
1. Add an administration staff (by providing all her/his information) to the list of all
administration staff
2. Add a doctor (by providing all her/his information) to the list of all doctors
3. Print all working staff (remember to differentiate between administration staff and doctors
in the output printout
4. Exit the program

In: Computer Science

You are studying a population of wild turtles on a remote Pacific island. You have been...

You are studying a population of wild turtles on a remote Pacific island. You have been following the allelic frequencies at a single two-allele locus 'S', which controls embryonic survival through simple Mendelian inheritance with dominance. The population has been in Hardy-Weinberg equilibrium at this locus for many generations.

At Hardy-Weinberg equilibrium, the frequency of the recessive allele Sd is 0.88

The genotypic frequencies at Hardy-Weinberg equilibrium are as follows:

f(SDSD) = 0.0144

f(SDSd) = 0.2112

f(SdSd) = 0.7744

An increase in ocean temperature between 2018 and 2019 is thought to have driven the population away from Hardy-Weinberg equilibrium at the S locus.

The numbers of sampled offspring by genotype after the 2019 hatch are as follows:

SDSD : 200

SDSd : 200

SdSd : 40

Calculate the relative fitness (W) values for each genotype (you will need all these values in a subsequent step).

a) The relative fitness value for the SdSd genotype is [A] (enter your answer as a decimal in the form '0.x'; do not spell out the number as a word; there are no units to include)

b) The type or form of natural selection that has occurred is [B] (use the specific phrase that describes this form of selection completely!).

Now, calculate all genotypic frequencies in the 2019 offspring (first generation after selection):

c) post-selection f(SDSD) = [C] (perform this and the following two calculations (d and e) to four significant figures after the decimal point; enter your answers in the exact form '0.wxyz'; make sure to round off correctly; there are no units)

d) post-selection f(SDSd) = [D]

e) post-selection f(SdSd) = [E]

f) The frequency of the Sd recessive allele in the 2019 offspring (first generation after selection) is [F] (perform the calculation with four significant figures, then round off to 2 significant figures in the final answer; enter your answer in the exact form '0.xy')

In: Biology

Files that are read by the computer are called ____ files. a. report b. serial c....

Files that are read by the computer are called ____ files.

a.

report

b.

serial

c.

input

d.

storage

The database for a pet supply company includes the following table, named tblCollar, that contains product data for pet collars. The ItemDesc and Color fields contain text. The ItemNum, Price, and Quantity fields contain numbers.

ItemNum

ItemDesc

Color

Price

Quantity

2358

leather studded collar

black

30.00

35

2693

leather collar

brown

25.00

25

3547

striped collar

red

20.00

75

3855

striped collar

blue

15.00

42

3764

striped collar

green

15.00

48

5782

solid collar

pink

12.00

36

5785

solid collar

red

12.00

10

5787

solid collar

blue

10.00

15

Which of the following statements would select the ItemDesc and Price fields from tblCollar for all records whose ItemDesc field begins with the word “leather” followed by zero or more characters?

a. SELECT ItemDesk FROM tblCollar

     WHERE ItemDesc LIKE 'leather %'

b. GET ItemDesc, Price FROM tblCollar

    WHERE ItemDesc LIKE 'leather %'

c. SELECT ItemDesc, Price FROM tblCollar

    WHERE ItemDesc LIKE 'leather %'

d. SELECT ItemDesc, Price FROM tblCollar

    WHERE ItemDesc LIKE leather %

The ____ statement is used for exception handling in a procedure.

a.

aggregate

b.

Try…Catch

c.

ORDER BY

d.

LINQ

A(n)____ function returns a single value from a group of values.

a.

WHERE

b.

Calculate

c.

Aggregate

d.

Parameter

Visual Basic’s auto-implemented properties feature enables you to ____.

a.

add validation code to the set block

b.

make the property ReadOnly

c.

make the property WriteOnly

d.

specify the property of a class in one line of code

are the actions to which an object can respond.

a.

Methods

b.

Behaviors

c.

Events

d.

Attributes

In: Computer Science

As an effective speaker the key element we are taught is to "Know (analyze) your audience"....

As an effective speaker the key element we are taught is to "Know (analyze) your audience". After reviewing this chapter what have you learned are other important elements that you must do (know) when planning a presentation? How many main points should a speaker include in their presentation/speech? Open a dialogue to discuss the effectiveness and ineffectiveness of a speaker's use of humor in presentations/speeches (Respond in agreement or disagreement to other virtual classmates post(s).

Types of Delivery

The word presentation may conjure up images of a speaker standing behind a lectern delivering information to a passive audience. While some business and professional presentations certainly follow this model, many of them are far more interactive.

There are three presentation styles: monologues, guided discussions, and interactive presentations.1

Monologues are speeches delivered without interruption or audience involvement. An example might be when the presenter of an award introduces the winner to the audience by sharing some kind remarks about that person’s achievements. Monologues are most appropriate in large settings and on formal occasions. In smaller groups, they can feel artificial and create the impression the speaker does not care much about the audience.

Guided discussions are more interactive. In this type of presentation, a speaker provides information and has a preset idea of which material will be covered, but listeners are encouraged to speak up with questions and comments. Managing a guided discussion is more challenging, but the potential for more audience buy-in can be worth the effort.

Interactive presentations, as their name implies, involve the audience even more. Although the speaker still controls the program, an interactive presentation feels more like a conversation than a speech. Interactive presentations are common in sales settings, where customer interest drives the communication.

Speakers have four options when delivering presentations: manuscript, memorized, extemporaneous, 325and impromptu. However, two of them—extemporaneous and impromptu—will serve you best in most situations.

In: Operations Management

passage below require analysis amd breakdown “For brands to survive, they have to be aware of...

passage below require analysis amd breakdown

“For brands to survive, they have to be aware of everything consumers think and feel, and how that impacts success in their industry and category” (Leidig, 2019). It would be totally outrageous if someone decided over night that he or she wanted to make a hamburger business in a week, that would sell more and be more popular than say for instance a fast food chain with golden arches. I believe it would take years to analyze such a competition and their consumers to even come close to even qualifying to enter a competition with this type of chain. Oxford dictionary says that the word analyze means, to “examine methodically and in detail the constitution or structure of (something, especially information), typically for purposes of explanation and interpretation” (Oxford, 2020). One would have to analyze every detail about a company and then come up with something that would in turn make their product better than what they are analyzing.

According to the Governmental Health and Human Services Department, there are hiring incentives that an organization can adopt and in order to use them, the guidelines must also be followed to be accurate and according to government rules. Some examples of these incentives are:

Relocation Incentive – this would allow a hiring manager a pay of up to 25% of the annual rate, when relocating to a different geographical location.
Student Loan Repayment – “Through the student loan repayment program, agencies may repay federally insured student loans in return for service to the agency” (HHS.gov., 2010).
Job Sharing – This is if there are two in a family and need to work but both need to care for the family – they can share the hours two make one full time hour employee.
Telework – This allows for working remotely at home.
The above are just a few incentives that allow to draw employees into your organization. If your organization is interested in a specific candidate, and you think one of these would specifically appeal to the candidate, then it is best to offer it to them with intentions of the candidate accepting the position.

In: Economics

FUNDS N101L SUMMER 2017 FUNDAMENTALS SCENARIO for CAREPLAN PATIENT INFORMATION: Ms. Florence Nightingale, African-American 80 year-old...

FUNDS N101L SUMMER 2017
FUNDAMENTALS SCENARIO for CAREPLAN
PATIENT INFORMATION: Ms. Florence Nightingale, African-American 80 year-old female who is alert and oriented x 4. She presents here to Utopia Hospital via AMR due to an un-witnessed fall at home. She currently lives alone fully independent with her 3 cats. She has two sons (both live out of state) and one daughter who lives two doors down from her mother’s home. She is an active woman who attends church every Sunday, watches her 3 grandchildren every Tuesday and Thursday after school, and plays bridge with the “red hat ladies” on Wednesday evenings at the YMCA. She is widowed as of three years ago and was married for 60 years. She is a retired professor of Nursing and states, “I am enjoying retirement very much – staying active is important to me”. She ambulates with a walker in the house and out.
PATIENT HISTORY: HTN, CHF, Atrial Fibrillation, COPD, GERD, DVT in 2013 for which she was hospitalized at Utopia. She quit smoking 3 years ago. She was a one-pack-a-day smoker for 50 years. She does not consume alcohol or take illicit drugs. Ms. Nightingale is DNR. Patient is allergic to penicillin and cashews.
HISTORY OF PRESENT ILLNESS: Ms. Nightingale has been admitted to Utopia Hospital via AMR for an un-witnessed fall at home. She states, “I tripped over my cat and fell on my left side”. She called her daughter who proceeded to call 9-1-1. Ms. Nightingale states, “I did not lose consciousness”. Vital signs upon arrival to the ER were: BP 130/80, P 116, RR 24, O2 sat 92% room air, T 99 degrees F, Wt 125 pounds, Ht 62”. Lower left lobe crackles on auscultation. She complains of pain 9/10 in her left hip and left thigh. She has a visible bruise measuring approximately 3 x 3” on her lateral left thigh with no skin breakdown or open wound. She presents with bilateral lower extremity edema with 2+ pitting. She states that it is normal for her to have swelling in her ankles. She complains of difficulty urinating and has been getting up at night to urinate. She states that she is “mildly” incontinent and has been wearing pads. She has a 20-guage IV catheter in her right AC infusing 0.9% NS at 25 mls/hr TKO. No signs of redness, edema, or infection.
ORDERS: She has been placed on 2 L O2 NC bringing her oxygen saturation rate to 97%. Patient is NPO for pending surgery. Bed-rest and non-weight-bearing status ordered. Respiratory Therapy order PRN. Morphine 2 mg/ml IVP q2 hours PRN for pain
PATIENT HOME MEDICATIONS:
warfarin 4 mg PO q day, metformin 1000 mg PO q day, furosemide 20 mg PO qday, metoprolol 100 mg
PO qday, ibuprofen 400 mg PO qday PRN, Tums 12+ PO qday PRN
DIAGNOSTICS: 1/1/16, 0800, X-ray findings consistent with left accetabular hip fracture; additionally
full complete fracture of left femur.
Labs: 1/1/16 0900, Glucose Finger Stick = 310, WBC 12,000, HGB 13, HCT 55%, RBC 4.0, PLTS
300,000, NA+ 150, K+ 3.1, CL- 106, BUN 30, CREATININE 1.6, HgbA1c 8.2 %, INR 2.5, PT 12
NOTE TO STUDENTS:
• This is an opportunity to ‘think like a nurse’ – the care plan is a process and a way that we deliver quality healthcare.
• Only one ‘dot com’ reference; the rest should be books (Potter & Perry) and/or nursing journal articles.
• Please do not copy content from above ‘word for word
• APA formatting to include title page and reference page
• In-text citations
• No Wiki, WebMD, Taber’s, or dictionary

In: Nursing