Case Study 8.1 Executive Leadership

The write up should consist of a 15–16-page 7th edition APA formatted paper of the PPT (attached) and the following leadership skills and techniques questions answered. First write elaborately about the content mentioned in the PPT attached and then explain/answer the below questions.

1. Are you as a leader able to maintain a personal friendship with some member(s) of your work group or a team without creating the perception of favoritism?

2. What are your views on “Servant leadership”?  Is this contradictory or doable for you as a manager?

3. Describe how generational diversity affects the work implications of your organization or social environment?

4. What message does it send when the organizational culture encourages employees to view mistakes/problems as opportunities for improvement rather than a reason to blame or punish those involved?

5. How will Emotional Intelligence (EI) change, if at all, the way you view and eventually will manage your personal responses and actions and towards your employees?

Writing Requirement:

– 7th Edition APA format

– NO PLAGIARISM

– Provide Citations and References

6/3 Peer Review

  1. Conduct a critical analysis of two of your classmates’ posts by the last day of the workshop, and reply to any valuable feedback received from others about your plan.
  2. Each response to your classmates should be at least 150 words in length and include a citation to one credible information source. The response citation should follow APA formatting.

1/4 Discussion

  1. Read Chapters 1–4 in your textbook.
  2. Using the discussion link below, respond to the following prompts:
    1. Provide a list of several current security incidents. Examine the cause of such incidents. What types of vulnerabilities led to the incidents?
    2. Select one incident and discuss the short- and long-term impact the incident had on the organization.
    3. Construct a short set of bullet points you believe would help mitigate such an incident. How would you implement such a set of policies? How would this help prevent employees from making security mistakes?
  3. Your initial post should be a minimum of 300 words. 

Discussion- Week 11 &12- Project HR & Stakeholder Mngt

Assigned Readings:

Inventory Skills Assessment

Initial Postings: Read and reflect on the assigned readings for the week. Then post what you thought was the most important concept(s), method(s), term(s), and/or any other thing that you felt was worthy of your understanding in each assigned textbook chapter.Your initial post should be based upon the assigned reading for the week, so the textbook should be a source listed in your reference section and cited within the body of the text. Other sources are not required but feel free to use them if they aid in your discussion.

Also, provide a graduate-level response to each of the following questions:

  1. As a project manager, what are your strengths and opportunities for improvement?
[Your post must be substantive and demonstrate insight gained from the course material. Postings must be in the student’s own words – do not provide quotes!] 

Title: Managing Project Stakeholders 

ISBN: 9781118504277 

Authors: Tres Roeder 

Publisher: John Wiley & Sons 

Publication Date: 2013-04-22

Do the following two programs

  

Do the following two programs:

  1. Write a Java application that inputs three integers from the user and displays the sum, average, product, smallest and largest of the numbers. Use a Scanner object to get the input      from the user. Use System.out to output the results. The average should be a floating point result, and      should be displayed with 2 digits after the decimal point.
  2. Write      a Java application which tests the random number generation abilities of Java. Random number generation is explained below.Your application should simulate rolling a pair of dice some number of times. Use a JOptionPane to ask the user how many times the dice should be rolled. Each dice roll can be a value between 1 and 6, so rolling 2 dice will result in values      between 2 and 12. You need to generate a random number between 1 and 6 to      simulate rolling each dice. Keep track of the result of each roll using an      array that is indexed by the sum of the roll of the two dice. Output      your result in a table which shows each value (ie. 2 – 12) and the number      of times that value was rolled.

The program must have the following structure:

  1. The       main function declares the counting array and gathers input from the       user.
  2. A       separate function is called which takes an integer array parameter as       well as the number of dice rolls to execute. This function rolls the dice       the required number of times and uses the array provided to count the       number of times each value is rolled.
  3. The       main program takes the count data from the array, formats it and displays       it as described above.

For output, you should build a formatted string which includes tabs and new lines to represent your table. JOptionPanes by themselves are not capable of properly formatting tabs. However, there is another Java class which can be used with JOptionPanes to correctly display a formatted string. TheJTextArea class understands all string formatting instructions. The following illustrates how to use the JTextArea class with a JOptionPane to display a formatted string.

#import javax.swing.JOptionPane;

#import javax.swing.JTextArea;

String output = “This t is t a t formatted t string. n”;

// Create a new JTextArea object

JTextArea area = new JTextArea( );

// Place a formatted string into the JTextArea

area.setText( output );

// Place the text area into the JOptionPane

JOptionPane.showMessageDialog( null, area, “Title for dialog box”, JOptionPane.INFORMATION_MESSAGE );

For each of the two programming problems, create an Eclipse project and develop a Java program to solve the problem. Make sure to capture a sample of your program’s output. The best way to do this is to click on the console window you want to capture and then press the Alt and PrintScreen keys at the same time.Then paste your captured screen image into a Word document. For each of the two programs, put the screen capture followed by a copy of your source code into your Word document.

Random Numbers in Java

There are two different classes available to generate random numbers in Java. The static method random from the Math class can be used to generate a random floating point number from 0 up to but not including 1. This number can be scaled to whatever range of random numbers is desired. 

(int)(Math.random( ) * 10);  //results in an integer between 0 and 9

The Random class from the java.util package can also be used to get random numbers. The nextInt method returns an integer from 0 up to but not including the argument value provided to the nextInt method. 

Random rand = new Random( );
int number = rand.nextInt(10); //results in an integer between 0 and 9

minimumValue + differenceBetweenValues * rand.nextInt( scalingFactor )

The formula shown above is used to generate a range of random numbers starting at some minimum value and generating some specified number of random values. The scalingFactor determines how many different random values will be generated by the call to nextInt, starting with the value 0. The difference between values is usually 1.

Your final programming document should contain in the following order:

1. Screen capture of the first program followed by source code.

2. Screen capture of the second program followed by source code.

3. Submit this as the Week 1 Programming Solution.

Discussion

Part1: Mobile networks in a global economy can be a challenge for multiple  reasons. First, governments in other countries control the mobile  networks.  Second is the technology.  Mobile networks in other countries  might not be as good as the mobile networks within the US.  As a global  company, how can we deal with this?  With a big push for 5G, which has  speeds well over 2Gbps, how does that change the way you do business?   What are some things you need to think about when it comes to doing  business globally, using a wireless mobile network?

Min 250 words

Part2: please describe at least two cryptocurrencies with applicable examples.  Discuss some similarities and differences. Lastly, discuss if you have  any experience using any cryptocurrencies.

Min 250 words

Checklist:

Each part needs min two APA references
Each part needs to be attached as a separate document
Plagiarism report
Total 500 words = 2*250

Discussion 9 (Database))

250 words+

Topics:

1. You already study database for a Spring term. So based on your study, can you design a new database system with your own rationale. 

(for this question, you do not need to develop a real one; just giving some of your thought, highlight, or as you starting to design a new database system, what kind of oriented, what kind of application, or possible approaching,…etc; an open question)

2. Why is NoSQL become another important approaching for database and occupied a lot of marketing?

2/2 Textbook read

  1. Textbook: Principles of Computer Security:
  2. Read Chapters 5–8 in your textbook.
  3. Using the discussion link below, respond to the following questions:
    1. What was the most useful takeaway for you from this workshop’s reading?
    2. What concept from the reading is the most applicable to you now in your profession, and how might you implement it?
  4. While responding to your classmates is not necessary for this discussion, read a couple of your fellow classmates’ posts to learn from their experiences. You must make your initial post first in order to see theirs.