You are the Executive Director of Human Resources for the College of New Caledonia. There is a global pandemic called COVID-19 causing unprecedented disruption to society, business operations, and global economies. Every one is feeling the impacts and no one is immune to this including your organization CNC. The President of the College of New Caledonia has asked you as the Executive Director of Human Resources to prepare a Human Resources Pandemic Plan for the organizations COVID-19 response. To create a comprehensive plan, you are required to pay particular attention to a few key details that will impact employees.
In your plan, briefly discuss the following topics (and provide your reasoning):
1,Compensation plans for employees - is peoples pay changing as a result of disrupted work?
2.Employee benefits and services plans for employees - is this changing as a result of disrupted work?
3.Health and Safety decisions made to protect employees.
4.Union partners collaboration and communication – what is the plan for how you work with the unions?
5.What will happen if employees are non compliant with recommendations or are not able to work to expected standards?
word limit should be 1500 to 2000
In: Operations Management
The theory of multiple intelligences was developed in 1983 by Dr. Howard Gardner. It states that the traditional notion of intelligence, based on I.Q. testing, is far too limited. Instead, Dr. Gardner proposes 8 different intelligence to account for a broader range of human potential in children and adults. This intelligence is:
Linguistic intelligence (“word smart”)
Logical-mathematical intelligence (“number/reasoning smart”)
Spatial intelligence (“picture smart”)
Bodily-Kinesthetic intelligence (“body smart”)
Musical intelligence (“music smart”)
Interpersonal intelligence (“people smart”)
Intrapersonal intelligence (“self smart”)
Naturalist intelligence (“nature smart”)
Please address the following questions in your post:
How do you view intelligence? What do you think has influenced
your way of understanding an individual’s capabilities?
Which of the above intelligence do you resonate with most and why?
Provide instances and examples from your life.
List at least 2 other people that encompass a different type of
intelligence than yourself and give examples of how they
demonstrate this type of intelligence in their everyday life (work,
relationships, school, etc.)
In: Psychology
| Step 1 Consider a time when you wanted
to buy a certain product but could not find it.
What was your reaction? Why? How did the lack of availability
affect your perception of the company and of the product? Did it
make you want it more or did it make you frustrated so that you
lost interest. Speculate on the supply chain and distribution
channel strategy that the company was trying to achieve. What is your perception of the product and the company? How is
your perception influenced by the ubiquity of the product?
Speculate on the distribution strategy and goals for the
company. How did the availability of the products influence your thoughts
and attitude toward the product and the company? Speculate as to
whether the companies' distribution strategies have proved
effective and served them well. In addition to discussing each of the questions in Steps 1 and 2, be sure to include the comparison between the two companies and products. A two-page (500-word), double-spaced paper |
In: Operations Management
**Program #2: Working with Generics
Implement the following method that returns the maximum element in an array.
public static <E extends Comparable<E>> E max(E[] list)
What should you do?
Write a program to test the method above with various types.
Deliverables:
Deliverable format: The above deliverables should be packaged in the following format.
Unencrypt.java, Permutations.java, and MaxWithGenerics.java
Check List
|
# |
Y/N |
Comments |
|
|
Source java files |
|||
|
Files: |
|||
|
LastNameFirstinitial_Project04.zip |
|||
|
LastNameFirstInitial_Project04.doc |
|||
|
Program compiles |
|||
|
Program runs |
|||
|
Checklist is completed and included in the Documentation |
|||
|
Documentation file: |
|||
|
Comprehensive Test Plan |
|||
|
Screenshots of running program |
|||
|
UML diagram |
|||
|
Lessons Learned |
|||
|
Checklist |
In: Computer Science
Using the provided network diagram, write a program in c ++ that finds the shortest path routing using the Bellman-Ford algorithm. Your program should represent the fact that your node is U. Show how the iterative process generates the routing table for your node. One of the keys to your program will be in determining when the iterative process is done.
Deliverables 1. Provide an output that shows the routing table for your node after each iteration. Add a second table with two columns. One that shows the destination from your node and the second column indicating the number of hops to reach that node. 2. Provide a Word document that explains how your program incorporates the Bellman-Ford algorithm. Ensure you explain how you incorporated the iterative process and determined when the routing table for your node was optimum. You can incorporate your outputs into this document; however, you must identify where in your source code you print the results. 3. Provide a copy of your source code
In: Computer Science
|
Month |
Nightly customers |
|
0 |
35 |
|
1 |
41 |
|
2 |
46 |
|
3 |
54 |
|
4 |
66 |
|
5 |
84 |
|
6 |
103 |
|
7 |
117 |
|
8 |
141 |
|
9 |
180 |
|
10 |
222 |
|
11 |
275 |
In: Math
I am supposed to provide verbiage (shown below) and a chart to support the verbiage. I need your help in making a chart that I can paste into my word document from the current ratios from PepsiCo and Coca-Cola provided below. I know very little about excel or charts and hope you can assist me in learning this process. It will definitely be worth a 5-star rating for you. Thank you for your time and support.
The current ratio is enumerated from the balance sheet and is a comparison of the current assets to current liabilities which is calculated by dividing the two numbers (Law, 2016). PepsiCo’s total current assets for 2017 were $31,027,000 and the total current liabilities for the same period was $20,502,000. When these two numbers are divided, the current ratio is 1.51: 1 (PepsiCo, 2019). Coca-Cola’s total current assets for the same time frame were $36,545,000 and their total current liabilities in 2017 equaled $27,194,000. The partition of the statistics is equivalent to the current ratio of 1.34: 1 (Coca-Cola, 2018).
In: Accounting
Palindrome Javascript - NUMBERS
I am trying to write this javascript function to check if a number is Palindrome..
Palindrome means - a word, phrase, or sequence that reads the same backward as forward, e.g., 12321
This is the code i have, but it doesnt work.
PLEASE MAKE SURE IT WORK BEFORE POST ANSWER, I GOT @ CODE THAT DID WORK BEFORE
HTML
JavaScript Palindrome Exercise
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"
/>
Palindrome
Enter a positive number:
Is this a palindrome?
No
.JS
// Enter your code here
let convertButton = document.getElementsByClassName("btn")[0];
let userInput = document.getElementById("number").value;
let results = document.getElementById("result").value;
convertButton.addEventListener("click", function (event) {
event.preventDefault();
console.log(userInput);
if (validatePalidrome(userInput))
document.getElementById("result").innerHTML = "true";
else document.getElementById("result").innerHTML = "false";
});
function validatePalidrome(numbers) {
let userStringArray = userInput.split("");
let reverseUserInput = userStringArray.reverse();
let joinReverseString = reverseUserInput.join("");
if (userInput.localeCompare(joinReverseString) === 0) {
return true;
}
return false;
}
In: Computer Science
Write a python program to finish a big-data processing task --- finding out most frequently used words on Wikipedia pages.
The execution of the program generates a list of distinct words used in the wikipedia pages and the number of occurrences of each word on these web pages. The words are sorted by the number of occurrences in ascending order. The following is a sample of output generated for 4 Wikipedia pages.
126 that
128 by
133 as
149 or
160 for
164 is
189 on
191 from
345 to
375 advertising
443 a
473 and
480 in
677 of
1080 the
Since there are a huge number of pages in Wikipedia, it is not realistic to analyze all of them in short time on one machine. In the project, you need to analyze all the pages for the Wikipedia entries with two capital letters. For example, the Wikipedia page for entry "AC" is https://en.wikipedia.org/wiki/AC . Use urllib or urllib2 library to download a page.
A HTML page has HTML tags, which should be removed before the
analysis. Use BeautifulSoup library to convert a text from
HTML format to text format.
In: Computer Science
Write a class called VLPUtility with the following static methods: Java Language
1. concatStrings that will accept a variable length parameter list of Strings and concatenate them into one string with a space in between and return it.
2. Overload this method with two parameters, one is a boolean named upper and one is a variable length parameter list of Strings. If upper is true, return a combined string with spaces in upper case; otherwise, return the combined string as is.
3. makeWord: accepts a variable length parameter list of char values and make a word from these character values, return the result as a String.
4. Overload this method so that it accepts a variable length parameter list of char values, a boolean variable named reverse, and an int variable named repeat.
a. If the boolean variable is true, the combined char values will be reversed.
b. Based on the value of the int variable, the combined char values will be repeated.
c. The result will be returned. For example, if ‘a’, ‘l’, ‘l’, ‘o’, ‘w’ are passed, it will be combined into “allow”. If the boolean variable is true, it will be reversed to “wolla”; if the int variable value is 2, it will be either “allowallow” or “wollawolla”
In: Computer Science