RM DISCUSSION-9

 Discussion: Should be between 250-to-300 words. 

DUE DATE: Wednesday End of Day USA time (3 days from now).

Reply: I need 2 replies. Reply is nothing but just additional 100-150 words on same topic but as a different paragraph. (I won’t send any replies to you and then you send info on that. NO) 

Topic:

The readings this week discusses broad context of risk and investigative forensics. Part of risk management is to understand when things go wrong, we need to be able to investigate and report our findings to management. Using this research, or other research you have uncovered discuss in detail how risk and investigate techniques could work to help the organization. ERM helps to protect an organization before an attack, where as forensics investigate technique will help us after an attack – so lets discus both this week.

Please make your initial post and two response posts substantive. A substantive post will do at least TWO of the following:

  • Ask an interesting, thoughtful question pertaining to the topic
  • Answer a question (in detail) posted by another student or the instructor
  • Provide extensive additional information on the topic
  • Explain, define, or analyze the topic in detail
  • Share an applicable personal experience

Paper

 

Chapter 2 Paper: Discuss why the IT organizational structure is an important concept to understand.  Also, discuss the role of IT in the overall business strategy. (Information Technology and Organizational Learning Textbook)

The above submission should be one page in length and adhere to APA formatting standards.

(2) C++

 Trace the C++ program below showing all output in the order that it is displayed. If anything happens that makes it impossible to accomplish an operation or the results of so doingare unpredictable, describe what happens and abort the program at that point. Assume the Stack class is fully defined in an appropriate header and implementation file. The effect of the functions (methods) is as follows: constructor – creates an empty stack empty – returns true if the stack is empty, false otherwise push – adds the specified element to the top of the stack display – displays every stack element on the specified stream, top to bottom order pop – removes the top element of a stack; attempting to pop an element from an empty stack causes an error condition and immediately terminates the program. top – returns the top element of the stack but does not remove it boolalpha – a flag that causes the words true or false to be displayed for a bool variable 

 #include

using namespace std;

#include “Stack.h”

int main(void)

{int jimmy_carter, bill_clinton;

 jimmy_carter=0;

 Stack george_w_bush;

 for (bill_clinton=17; bill_clinton>13; bill_clinton–)

 {george_w_bush.push(bill_clinton%3*2-2);

 jimmy_carter=jimmy_carter+george_w_bush.top();

 george_w_bush.push(george_w_bush.top()+2);

 jimmy_carter=jimmy_carter+george_w_bush.top();

 cout<<"Contents of george_w_bush "<

 george_w_bush.display(cout);

 cout<<"jimmy carter is "<

 }

while (!(george_w_bush.empty()))

 {cout<<"popping "<

 jimmy_carter=jimmy_carter-george_w_bush.top();

 george_w_bush.pop();

 cout<<"popping "<

 george_w_bush.pop();

 cout<<"Contents of george_w_bush: "<

 george_w_bush.display(cout);

 cout<<"jimmy_carter is now "<

 }

cout<<"at end jimmy_carter is "<

cout<

“<

 return 0;

}

Represent Family using Graph data structure

 

Using the below image represent this family using a graph structure. The graph needs to be a weighted graph. The weights will constitute the types of relationships, I recommend using some kind mapping between numbers and strings to represent the relationships. When adding family members to the graph, this can be done programmatically for the provided family members within the description file.

Additionally,

  • I also want there to be an interface in which a user can create a new family member and add them to the tree.
  • This can be a simple CLI where the user provides a name, gender, and age to create a person.
  • Then another simple CLI where they select which member of the family, they want the original relationship to be with and what kind of relationship it should be.
  • Finally, they can edit the family member using another CLI and selecting the family member they wish to edit, the operation they wish to perform (edit name, edit age, edit relationship), and then add new relationship between family members which can call a function that you create in order to add the original relationship.

Finally, make data assertions within the FamilyTree class that enforce certain “rules” that exist in a typical human family. An example would be a person should not have any kind of relationship to itself (a person cannot marry themselves, a person cannot be their own brother, sister, father, mother, etc.). There should be at least 3 data assertions. These should exist as part of the family tree, not as part of the graph.

As a hint, for a successful design:

I would recommend using layers of abstraction. Your graph class is the backing structure to the family tree class. Your family tree should implement methods that interface with the graph class, i.e. add_family_member() should call the constructor to create a node and then call a function within the graph class to add a node to the graph. Then using the relationships function parameter, you can add edges to the graph between the new nodes and the existing nodes. The family tree should be what enforces what relationships can exist through the data assertions, the graph does not care about what relationships are made between family members. Your functions that the user would interface with would be greatly reduced compared to the total number of methods within the classes themselves. The user should be able to add, remove, and modify family members and that’s about it. Therefore, those should be your function calls.

Attachments area
 

Information Systems Business and Beyond

This week select an organization that has a Global platform (they operate in more than one country), that has demonstrated operational excellence.  In this paper, perform the following activities:

  • Name the organization and briefly describe what good or service they sell and where they operate.
  • Note how they are a differentiator in the market.
  • Note the resources used to ensure success in their industry (remember resources are comprised of more than just people).
  • Explain what actions the company took to achieve operational excellence.

The above submission should be three pages in length.  Remember the total length does not include the APA approved cover page or the references.  There should be at least three APA approved references to support your work. 

Complete the assignment using narrative paragraphs and explain your thoughts and findings in detail. Adhere to APA format requirements and do not use lists or bullets. Break up areas in your paper by using headings IAW APA format. Use Times New Roman 12 font, double-spaced. Include a coversheet with your name, class ID and the title of the assignment. Your submission needs to be at least three (3)  pages in length. The coversheet, figures, tables, and reference list doesn’t count toward the page count. Include at least three (3) APA approved references to support your work. Post the assignment as one MS Word document by the due date in the syllabus. Do not submit any other format such as PDF.Information Systems Business and Beyond

calculate dog age to human years netbeans java

For this assignment you must use the rules above to calculate the age of a dog in human 

years given its weight and its actual age. Your program must do the following:

1.

Display a welcome message with your name in it.

2.

Prompt the user for the name of the dog.

3.

Repeatedly prompt the user for the age of the dog until the user enters a value is 

between 1 and 16.

4.

Repeatedly prompt the user for the weight of their dog until the user enters a weight 

that is greater than zero.

5.

Display the age of the dog using the name that the user entered in step 2.

6.

Repeatedly ask the user if they want to calculate the age of another dog until the user 

answers 

Y

or 

N

.

7.

If the user enters 

Y

, go back to step 2.

8.

If the user enters 

N

, display a thank you message and exit the program.

Any time the user enters invalid input the program should display an error message before