Ethical Issues in the Real World

Using one of the https://erau.instructure.com/courses/114990/pages/news-websites
search for a current news story that demonstrates a moral or ethical dilemma. Your current news selection must be within the last 90 days. Examine the news story. Be sure to reflect and consider all aspects and viewpoints the author provides.

In your initial post, state the title of the news story and include the link so that others can access the story. Briefly summarize the story and explain the moral or ethical issue/dilemma and how it relates to an ethical theory, principle, and concept or code in the course text. Your response must be at least 200 words and show a clear connection between the news story/event and the course material/ethical theory.

Sample Solution

The post Ethical Issues in the Real World appeared first on homework handlers.

Concepts in human civilization

Choose TWO of the four concepts, and discuss how Farha GhannamLive and Die Like a Man and Jason de Leonthe land of open graves conceptualize these.
Please make sure to write conceptually, for instance, if you choose death, do not write how people died, but how the authors understand death as a concept e.g as a social phenomena, as a political phenomena, and then go explain why and how. Here are the concepts to choose from:
Death, agency, positionality, and body.

Organ Leader & Decision Making – Case Study – IFG Case Study

Read the Consumerization of Technology at IFG Case Study in the Attachment. Answer the Discussion Questions posted below.

Discussion Questions

  1. Describe the problem at IFG as succinctly as you can. Use this description to identify

the main stakeholders.

  1. IFG can’t afford the resources to identify, define, cleanse, and validate all of its data.

On the other hand, building yet another data mart to address a specific problem

worsens the data situation. Propose a solution that will enable IFG to leverage a key

business problem/opportunity using their BI tools that does not aggravate their

existing data predicament.

Sample Solution

The post Organ Leader & Decision Making – Case Study – IFG Case Study appeared first on homework handlers.

Create a reaction program

var startScreen = new Text(“Welcome to a speed game! Click space to see the rules “, “13pt New Times Roman”);
    var rulesPart1 = new Text(“The goal of the game is to click on every number from least to ” , “11pt New Times Roman”);
    var rulesPart2 = new Text(“greatest with your mouse. You will have the time it took to” , “11pt New Times Roman”);
    var rulesPart3 = new Text(“complete the game at the top left corner if you decide that” , “11pt New Times Roman”);
    var rulesPart4 = new Text(” you want to beat your previous score, please tap” , “11pt New Times Roman”);
    var rulesPart5 = new Text(“the F button to start the game” , “11pt New Times Roman”);
   
    var nums = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
   
function start(){
    startScreen.setPosition(getWidth() / 2 – startScreen.getWidth() / 2, getHeight() / 2);
    add(startScreen);
   
    keyDownMethod(titleScreen);
    //set rules for how they lose/finish
    //start the speedGame
}

function titleScreen(e){
    if (e.keyCode == Keyboard.SPACE){
   
    removeAll();
   
    rulesPart1.setPosition(getWidth() / 2 – rulesPart1.getWidth() / 2, getHeight() / 2 – 40);
    add(rulesPart1);
   
    rulesPart2.setPosition(getWidth() / 2 – rulesPart2.getWidth() / 2, getHeight() / 2 – 20);
    add(rulesPart2);
   
    rulesPart3.setPosition(getWidth() / 2 – rulesPart3.getWidth() / 2, getHeight() / 2 );
    add(rulesPart3);
   
    rulesPart4.setPosition(getWidth() / 2 – rulesPart4.getWidth() / 2, getHeight() / 2 + 20);
    add(rulesPart4);
   
    rulesPart5.setPosition(getWidth() / 2 – rulesPart5.getWidth() / 2, getHeight() / 2 + 40);
    add(rulesPart5);
    } else if (e.keyCode == Keyboard.letter(‘F’)){
       
        speedGame();

}

function speedGame(e){
    removeAll();
    makeRandNum();
    mouseClickMethod(disappearNum);
   
   
    /*delay and make user tap a button to create image where user needs to move around with
    keysticks and press space by number order*/
    }
}

function disappearNum(e){
   
}

function makeRandNum(){
    for(var i = 0; i < nums.length; i++){
        var curNumbers = new Text(nums[i]);
        var pastNumbers = new Text(nums[i] – 1);
        curNumbers.setPosition (Randomizer.nextInt(0 + curNumbers.getWidth(), getWidth() – curNumbers.getWidth()) , Randomizer.nextInt(0 + curNumbers.getHeight(), getHeight() – curNumbers.getHeight()));
        pastNumbers.setPosition (Randomizer.nextInt(0 + pastNumbers.getWidth(), getWidth() – pastNumbers.getWidth()) , Randomizer.nextInt(0 + pastNumbers.getHeight(), getHeight() – pastNumbers.getHeight()) );
       
       
        curNumbers.getX() != pastNumbers.getX()
        curNumbers.getY() != pastNumbers.getY()
       
        add(curNumbers);
    }
}

This is the code that I have so far, however feel free to correct anything if needed. I want to have the user go through the numbers from least to greatest and click them, making them disappear. There should be a timer that will end once they make all the numbers disappear. In addition, I would like an end screen along and please make sure the numbers 1-20 don’t overlap. I am willing to pay more if the code is done soon and all the functions work properly (this is a project for CodeHs)