AMD and data centers

 Discuss AMD and their data center strategy of consolidation and competing in the cloud services against their competitor Intel. Do you think the strategy will be successful? Provide reasons on why or why not the strategy will be successful. 

Directions: APA format. 3-4 pages

 Purpose and audience: Addresses purpose effectively, uses assignment to explore topic’s intrinsic interest, shows full understanding of issues, engages the audience, establishes credibility, uses headings, format, and citation in APA style (where relevant) effectively .

Organization:  Focuses consistently on clearly expresses a central idea, uses paragraph structure and transition guide reader effectively 

Development:  Explores ideas vigorously, supports points fully using a balance of subjectivity and objective evidence, reasons effectively making useful distinctions. 

 Language: Employs words with fluency, develops concise standard English sentences, balances a variety of sentence structures effectively 

Info Security & Risk Mgmt

After reading chapter 1, define the following terms risk, threat, vulnerability, asset, and impact of loss.  After you define each term identify their role within an organizations secuirty posture.

Must be 300 words

You must use at least one scholarly resource. Every discussion posting must be properly APA formatted

QUANTITATIVE Journal Article

 You will review both quantitative and qualitative research.  The topic is up to you as long as you choose a peer-reviewed, academic research  piece.  I suggest choosing a topic that is at least in the same family  as your expected dissertation topic so that you can start viewing what  is out there.  There are no hard word counts or page requirements as  long as you cover the basic guidelines.  You must submit original work,  however,  and a paper that returns as a large percentage of copy/paste  to other sources will not be accepted.  (Safe Assign will be used to  track/monitor your submission for plagiarism. Submissions with a Safe  Assign match of more than 25% will not be accepted.) 

Please use APA formatting and include the following information:

  • Introduction/Background:  Provide  context for the research article.  What led the author(s) to write the  piece? What key concepts were explored? Were there weaknesses in prior  research that led the author to the current hypothesis or research  question?
  • Methodology:  Describe  how the data was gathered and analyzed.  What research questions or  hypotheses were the researcher trying to explore? What statistical  analysis was used?
  • Study Findings and Results:  What were the major findings from the study? Were there any limitations?
  • Conclusions:  Evaluate  the article in terms of significance, research methods, readability and  the implications of the results.  Does the piece lead into further  study? Are there different methods you would have chosen based on what  you read? What are the strengths and weaknesses of the article in terms  of statistical analysis and application? (This is where a large part of  the rubric is covered.) 
  • References  

Operational excellence

 Discussion: 

Resistance to change is a normal everyday aspect in the workplace.  Note what happens to the organizational climate when this resistance occurs and any tactics to reduce negative connotations when dealing with change. 

Assignment: 

 Information Systems for Business and Beyond Questions

  • Chapter 1 – study questions 1-5, Exercise 3
  • Chapter 2 – study questions 1-10, Exercise 2     

Information Technology and Organizational Learning Questions

  • Chapter 1 – Review the Key Lessons from Chapter 1 – Explain the five key lessons and note the importance of each key lesson from chapter 1.  Also, note why is it important to understand these basic concepts. 
  • Chapter 2 – Note why the IT organizational structure is an important concept to understand.  Also, note the role of IT in the overall business strategy.

Week 5 Journal

Each week you are to enter content into an online journal provided in Blackboard that briefly summarizes (1) the tasks you performed during your internship that week and (2) total hours worked with days/times. The content can be brief and in outline form and use bullet or another list styling, but keep in mind that this content will form the basis of the two major papers that you will write for this course. Therefore, the more detailed you are in your weekly journal, the easier it will be to finish the two papers. Specifically, your weekly journal should contain: 

• The days and times you worked that week, as well as the total hours, worked. (Provide this information at the top of each weekly section so this will act as a de facto heading to separate each weekly entry that you make.) 

• The skills or skillsets used/required to complete each task 

• Each task you performed along with a brief description of what you did.

 • A brief explanation of why the task needed to be done.

 • Was there an outcome? If so, what was that outcome?

 • What new terminology did you learn this week? Provide the term and its definition.

c program, shell build in command

Shell built-in commands, unlike legacy executables such as /bin/ls or /usr/bin/vim, are internal features of a shell that the user may invoke. For example, alias (to create a shortcut such as ‘l’ for ‘ls’), cd, history are among common built-in commands supported by most shells. When a user enters a command, a shell must first check if it is a built-in command in which case forking a child to load and run a legacy executable is not required. If the entered command is not built-in, then a shell assumes that it is a binary executable that needs to found and executed by a worker process. Extending built-in commands into a programming language, called shell scripts, is a popular way to manage and automate tasks on UNIX based operating systems such as Linux and MacOS.

Use the code of main4.c as a starting point to extend its capability to support the following built-in commands:

$ cprompt

where is 0, 1, 2 or 3. The notation means that x is a variable. When is 0, the default prompt ‘$’ is output. If is 1, the prompt is changed to ‘>’. equals to 2 changes the prompt to the PID of the process. Implement your own prompt for the case where equals 3. Annotate your code to describe what option 3 outputs.

$ mem

where is a string that is stored in a memo note. Implement the memo note as a 1-D array of maximum size 10, char *memnote[10], where each element is a pointer to a string. Use malloc() to allocate just enough memory to store the string . When memnote[] is full, cycle to the beginning and overwrite memnote[0] with the new string. Hence memnote[] is a circular array that overwrites the oldest element if space is full. Keep track of the newest and oldest memo note so that when the user enters the command ‘mem’ without a string then the memo note strings are output by recency, with the newest first and the oldest last, by the order the user has added them to the memnote string array.

$ d

The command d asks that the shell delay running the legacy executable by seconds. Perform this task by calling library function sleep() with as argument. Look up section 3 of the man pages (run % man 3 sleep) to check how to use sleep() including any header files. First fork a child process who checks if a delay is needed by inspecting a variable, int delayflag, set by the parent. If 1, sleep() is called with argument followed by execlp() of . Otherwise, execlp() is called without delay. In the case delayed execution is requested by the user, the parent does not call waitpid() to wait until the child terminates. Instead, it returns to the beginning of the while loop to print a fresh prompt since the delay could be substantial.

$ x

The command x without arguments means to terminate the shell. The shell prints a suitable message to stdout, then calls exit(0) to terminate.

Although main4.c serves as the main skeleton code, implement the built-in features supported by the shell, call it mysh, in a modular fashion making calls to functions that are put in their own file in a folder v12. Create a README text file that describes what each file in a folder v12 contains and its role. Use a Makefile to compile your code. 20 points out of 150 will be assigned for modularity, clarity, and style. Although not necessary, you may use string processing library functions. The library function atoi() which converts a number represented as a string (e.g., “3075”) into an integer (3075) may be useful. Look up its man page if you decide to use it. Test and verify that mysh works correctly. the code should run under Mac terminal. 

Exp19_PowerPoint_Ch04_CapAssessment_Brainstorm

Exp19_PowerPoint_Ch04_CapAssessment_Brainstorm

  

Project Description:

You are working on a presentation about creative problem solving with brainstorming. It will be shown by the Marketing Club at one of their monthly meetings. You decide to incorporate SmartArt to convey the brainstorming process along with inserting and modifying images. You also add animation, a Morph transition, and insert a Summary Zoom slide in the presentation.

     

Start   PowerPoint. Download and open the file Exp19_PPT_Ch04_CapAssessment_Brainstorm.pptx. Grader has automatically added   your last name to the beginning of the filename.

 

 

Replace Student Name on Slide 1 with Thomas Bentley.

 

Convert the SmartArt graphic on   Slide 2 using Convert to Shapes.

 

 

Select and ungroup all three   shapes. Click Align and then Align to Slide. Distribute vertically, ensuring   that the Lots of ideas shape   appears at the top and Wild ideas   welcome appears at the bottom of the slide. Regroup them back together.

 

 

Insert a new Slide 2 with the   Title and Content layout. In the title placeholder, type Have any   great ideas lately?

 

 

Insert Brainstorm1.jpg in the right content placeholder. Size the height   to 6.23” and width to 4.72″. Position it at horizontally at   6.18” from the Top Left Corner and   vertically at 0.64” from the Top Left Corner. Apply the Photocopy artistic effect.

 

 

Apply the Fade animation to the   picture. Set it to Start After Previous with a duration of 01.25 and a Delay of 00.50.

 

 

Apply the Fade animation to the   grouped object (former SmartArt graphic) on Slide 3. Set it to Start After   Previous with a duration of 02.00 and a Delay of 00.50

 

Apply the Fade animation to the   chart on Slide 4. Set it to Start After Previous with a duration of 01.50 and a Delay of 00.25.

 

Apply the Fade animation to the   right content placeholder on Slide 6. Set the effect option to By letter. Set   it to Start After Previous with a duration of 01.00 and no delay.

 

 

Align the bottom table on Slide   7 to the bottom edge of the top table using Smart Guides. Apply the Fly In   animation to the top table. Set it to Start After Previous with a duration of   01.00 and a Delay of 00.25. Apply the Fly In animation to   the bottom table. Set it to Start After Previous with a duration of 01.50 and a Delay of 00.50. Turn off Smart Guides.

 

 

Duplicate Slide 8.

 

 

Replace the picture in the right   content placeholder with Brainstorm2.jpg   on the new Slide 9. Size the picture height to 5.82” and the width to 8.72”. Position the picture horizontally to 3.96” from the Top Left Corner and   vertically to 0.83”. Type Or with a group, always brainstorm! as the new title text.

 

 

Apply the Morph transition to   this slide.

 

 

Set the transition to advance   automatically after 01.00 with a duration of 03.00.

 

 

Click Slide 1 and insert a   Summary Zoom using Slides 2, 3, and 6. Type Brainstorming 101 in the title placeholder of the   new Slide 2.
 

  Note, in case this feature is unavailable, insert a new Slide 2 with the text   Brainstorming   101 as the   title. 

 

Save and close Exp19_PPT_Ch04_CapAssessment_Brainstorm.pptx.   Exit PowerPoint. Submit the file as directed. 

Design a treatment plan utilizing the case study of Leigh (page 171) following the format displayed in Figure 6.2 on page 172 of the textbook. Be sure to address the following in your treatment plan: Problem areas identified DSM Diagnosis with specifiers

 

Design a treatment plan utilizing the case study of Leigh (page 171) following the format displayed in Figure 6.2 on page 172 of the textbook. Be sure to address the following in your treatment plan:

  1. Problem areas identified
  2. DSM Diagnosis with specifiers
  3. Goals & Objectives to address each problem area identified
  4. Describe Treatment Interventions
  5. Client’s strengths and weaknesses (liabilities)
  6. Theoretical model for treatment strategies

Include at least four scholarly sources in your treatment plan to include the course readings.

Develop a Java application that plays

  

Develop a Java application that plays a “guess the number” game as described below.
a) Your application first gets a random number in the range 1-1000 inclusive (you might want to use Math.random() or the Random class).
b) The application then displays the following prompt (probably via a JLabel):
I have a number between 1 and 1000. Can you guess my number?
Please enter your first guess.
Post a textbox for the user to enter a number and post a message telling the user to hit ‘Enter’ after entering a guess in a textbox (probably using a JTextField).
c) Input the user’s guess in the code for a previously-registered event-handler method (consider using the event-handling approach discussed in the text, or the actionPerformed() method of class based on the ActionListener interface, which will require some additional research outside the text).
d) For the first guess, color the entire background red, meaning that they are getting warmer (you might want to use the setBackground() method for a container). If this is the second or later guess, and they are further from the correct number than the last guess, then color the entire background blue. If they get the correct number then color the background some other color than red or blue.
e) If the user guessed the number correctly, respond with their number, post a congratulatory message, get a new random number, and display a JButton to start a new game. Otherwise, to help the user close in on the correct number, post a message, with their guessed number, whether they are “TOO HIGH” or “TOO LOW” from the correct number, and whether they are “WARMER” or “COLDER” (this should match the background color). Also report the guess number of the next guess (e.g. “Enter guess number nnn”). You might want to use a concatenated string in JLabel for these incorrect guess messages.
f) The process is repeated each game until the user guesses the correct number. Be sure that you erase obsolete status messages.