List and demonstrate some of the qualities of an excellent leader you do follow.
In: Psychology
Please read through the lecture notes on Wicket problem
Wicked Problems: Characteristics
Conklin offered a set of six defining characteristics:
1. You don’t understand the problem until you have developed a solution.
2. Wicked problems have no stopping rule.
3. Solutions to wicked problems are not right or wrong.
4. Every wicked problem is essentially unique and novel.
5. Every solution to a wicked problem is a ‘one shot operation.’
6. Wicked problems have no given alternative solutions.
Explain an example of a wicked problem and justifications why it can be considered a wicked problem and how it satisfies each of the above characteristics.
Please read through the lecture notes on Wicket problem
Wicked Problems: Characteristics
Conklin offered a set of six defining characteristics:
1. You don’t understand the problem until you have developed a solution.
2. Wicked problems have no stopping rule.
3. Solutions to wicked problems are not right or wrong.
4. Every wicked problem is essentially unique and novel.
5. Every solution to a wicked problem is a ‘one shot operation.’
6. Wicked problems have no given alternative solutions.
Explain an example of a wicked problem and justifications why it can be considered a wicked problem and how it satisfies each of the above characteristics.
In: Computer Science
In the competitive software development market, patent protection is imperative for new products. Electronic Solutions Incorporated (ESI), where you work, has spent millions of dollars and many years developing a new software platform. While ESI has been waiting for a patent to be granted, its revenues, profits, and stock prices have slipped to an all-time low because so much time, money, and energy have been devoted to the software development effort.
You, as director of public relations, have been called to a meeting with the company president and members of the executive team. They give you the bad news: The United States Patent and Trademark Office denied ESI's application for patent on the new software platform. The executives at ESI were counting on the new software to restore the company's prestige and save the company from financial ruin. In the meeting, you also learn that this patent was ESI's last hope to avoid bankruptcy. The company attorney explains that ESI might win an appealwith the Patent and Trademark Office, but winning an appeal is a "long shot at best."
After the meeting, Mr. Mateo, the president, asks you to stay. He reminds you that your job is to "make the best of a bad situation." He tells you to write a press release about the situation. He says, "You need to write a press release reassuring employees, shareholders, and the public that everything will be fine. Make sure you include the fact that we are planning an appeal and are confident that the patent will be issued when our appeal is heard. Your responsibility is to get the positive story out there so that ESI does not fall apart."
Questions for Discussion
1. Does Mr. Mateo have the right to ask you to create a misleading press release? Should you write a release according to Mr. Mateo's instructions? Do employees, shareholders, and the public have a right to know what is happening?
2. What are your options? What could you do to try to resolve the situation?
In: Operations Management
Mini case analysis
Summarize the creative aspects of the “Save a Life” effort at the end of Chapter 9. What makes this effort and its promotion creative?
Brainstorm on an idea for a new commercial that would extend the campaign’s theme and develop this new Big Idea as a proposal to present to your instructor.
In: Operations Management
In: Electrical Engineering
How does global health relate to primary care clinic and clinic mangament?
In: Operations Management
Explain the nature of your experience in maintaining confidential information. Was this information hard copy or electronic?
How did you ensure that there was no breach in confidentiality?
Do you know what a Kodak i5200 scanner is used for?
In: Psychology
In: Operations Management
Create two lists; one contains 5 elements and the other one is empty. Write a python program that iterates through the first one, pops the elements from the end of it, then it pushes them one by one to the empty list. As your program iterates through the first list, clean it before processing the data, meaning if any element is like a special character ( , . ; : ) it must be discarded and not gets pushed to the second list.
In: Computer Science
I. Case Studies Select one of the following scenarios, then using the Co-Active Coaching book, explain what you would do and what questions you would ask in order to coach the client and help him/her move forward. (30 points) Case 1: Sandra has had a turbulent relationship with her mother most of her life. Her mother is very ill now and Sandra has just learned that she is pregnant with her first child. She wants to bridge the gap with her mother and rebuild their relationship before it is too late. However, due to personal and professional obligations, she cannot seem to find the time to do so. Case 2: Randy is an area supervisor for a successful restaurant chain, with 6 store managers that report to him directly. All 6 have undergone stringent management training, but one of the managers (Julia) is struggling to enforce the policies that the company mandates and is not working as a team player with the other managers. Randy wants to support Julia in being the manager and team player he needs her to be, but is not sure where to begin.
In: Psychology
If you believe that religion is becoming less important, what is replacing it?
In: Psychology
1) What does it mean to say "IBM and Microsoft are trying to position themselves as IT utilities"? In what way? How is this an advantage?
2) How can using IT Systems create a sustainable advantage? Given a manufacturing company what are some ways IT systems can help? Provide at least 2 examples with justification.
3) Describe the function of Middleware. What is the advantage of using it?
4) Given a medium-sized organization without a security posture. What security measures could you recommend to put them on a path for a more secure position? List at least 3 with explanations.
In: Operations Management
Make a 20 by 20 matrix in which diagonal elements are 2, 5, 8, 11 ... 59 and the first column is 21,22,23,24 ... 40 whereas the rest of the elements of the matrix are 9.
Note: you must if, elseif, else, end or/and if, end or/and if, else, end commands in MATLAB.
In: Computer Science
This lab will focus on creating a better understanding of Selection Sort and Insertion Sort algorithms.
What you need to do
I have provided a driver and a Utility class with three methods. You must finish writing Selection Sort and Insertion Sort in the Utility class. Below is pseudocode for Selection and Insertion Sort, which you may use as a guide. Your selection sort will sort an array of Strings lexicographically, meaning A-Z. Your insertion sort will sort an array of Strings in reverse, meaning Z-A.
Selection Sort Pseudo Code
for i = 0 to length(A) min = i
for j = i to length(A) if A[j] < A[min]
min = j end for
swap A[i] and A[min]
end for
Insertion Sort Pseudo Code
for i = 1 to length(A) j=i
while j > 0 and A[j-1] < A[j] swap A[j] and A[j-1]
j=j-1 end while
end for
How do we compare strings to sort them correctly? Use the method compareTo provided in the string class. This method returns a int value and is used as follows:
<str1>.compareTo(<str2>)
If str1 comes before str2, compareTo will return a negative
number. If str1 comes after str2, compareTo will return a positive
number.
If str1 and str2 are the same, compareTo will return 0.
Driver Output
Unsorted array: Tom, Steve, Ann, Zoe, Bob, Moana, Naomi, Kevin, Ryan, Nina, Dora, Wanda, Eric
Selection Sorted array from A-Z:
Ann, Bob, Dora, Eric, Kevin, Moana, Naomi, Nina, Ryan, Steve, Tom,
Wanda, Zoe
Insertion Sorted array from Z-A:
Zoe, Wanda, Tom, Steve, Ryan, Nina, Naomi, Moana, Kevin, Eric,
Dora, Bob, Ann
Driver.java///////
public class Driver {
public static void main(String[] args) {
// TODO Auto-generated method
stub
String[] names = {"Tom",
"Steve","Ann","Zoe","Bob","Moana","Naomi","Kevin","Ryan","Nina","Dora","Wanda","Eric"};
System.out.println("Unsorted
array:");
Utility.printArray(names);
System.out.println();
Utility.selectionSort(names);
System.out.println("Selection
Sorted array from A-Z:");
Utility.printArray(names);
System.out.println();
Utility.insertionSort(names);
System.out.println("Insertion
Sorted array from Z-A:");
Utility.printArray(names);
}
}
Utility.java///////
public class Utility {
public static void selectionSort(String[] array)
{
//TODO - Sort array from A-Z
}
public static void insertionSort(String[] array)
{
//TODO - Sort array from Z-A
}
public static void printArray(String[] array) {
for(int i = 0; i < array.length;
i++) {
System.out.print(array[i]);
if(i !=
array.length -1) {
System.out.print(", ");
}
}
System.out.println();
}
}
In: Computer Science
What method does NOT cause the program to wait until a stream's buffer is empty? (a) flush (b) endl (c) clear (d) close (e) Multiple answers don't pause the program. (f) None of the above cause the program to pause.
I believe that clear is the answer.
flush pauses the program, endl (indirectly calls flush), close (calls flush).
In: Computer Science