Principles of Information Systems
13th Edition
ISBN: 9781337660556
Author: Ralph Stair; George Reynolds
Publisher: Cengage Learning US
expand_more
expand_more
format_list_bulleted
Question
Chapter 14, Problem 8DQ
Program Plan Intro
Code of ethics:
- The “ethics” word comes from the Greek term “duty”. The code of ethics means all the responsibilities that professional must respect when carrying out their work.
- It also contains the core value of the work and the behavior which should be adopted.
Example:
Professional and confidentiality secrecy are responsibilities contained in code of ethics and conduct in numerous professions like accountants, lawyers, doctors and journalists.
Intent of code of ethics:
- The intent of code of ethics established by a professional order as a way to safeguard public and the status of professionals.
- The employee who breach their code of ethics suffer disciplinary actions that can range from a warning or rebuke to dismissal or ejection from their professional order.
Explanation of Solution
Feeling regarding the decision:
- The decision regarding ignoring the person was fine.
- Even though the mirror was damaged and some money is to be spent...
Explanation of Solution
Chance of improvement in decision:
- The decision taken at that point was ethical and correct.
- The person was drunk and abusive; he didn’t have any absolute sense...
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Aiwhat cost from Oradea to Goal which Eforie us A* Algorithm G(n)+H(n) last what ıs the cost
What is the SELECT statement? give one reference with your answer
What is a URL and what is it used for? give one reference with your answer
What is e-mail, and what are its advantages? Give one reference with your answer
What is the difference between the World Wide Web (WWW) and the Internet? Give two references from a journal along with your answer.
Chapter 14 Solutions
Principles of Information Systems
Ch. 14.1 - What is the harm in nonproductive use of...Ch. 14.1 - Prob. 2RQCh. 14.1 - Do you think that it would help to involve a small...Ch. 14.1 - Prob. 2CTQCh. 14.2 - Prob. 1RQCh. 14.2 - Prob. 2RQCh. 14.2 - Prob. 1CTQCh. 14.2 - Prob. 2CTQCh. 14.3 - Prob. 1RQCh. 14.3 - Prob. 2RQ
Ch. 14.3 - Prob. 1CTQCh. 14.3 - Prob. 2CTQCh. 14.4 - Prob. 1RQCh. 14.4 - Prob. 2RQCh. 14.4 - Prob. 1CTQCh. 14.4 - Prob. 2CTQCh. 14 - Prob. 1SATCh. 14 - Prob. 2SATCh. 14 - Prob. 3SATCh. 14 - Prob. 4SATCh. 14 - Prob. 5SATCh. 14 - Prob. 6SATCh. 14 - Prob. 7SATCh. 14 - Prob. 8SATCh. 14 - Prob. 9SATCh. 14 - Prob. 10SATCh. 14 - Prob. 11SATCh. 14 - Prob. 12SATCh. 14 - Prob. 13SATCh. 14 - Prob. 14SATCh. 14 - Prob. 15SATCh. 14 - Prob. 16SATCh. 14 - Prob. 1RQCh. 14 - Prob. 2RQCh. 14 - Prob. 3RQCh. 14 - Prob. 4RQCh. 14 - Prob. 5RQCh. 14 - Prob. 6RQCh. 14 - Prob. 7RQCh. 14 - Prob. 8RQCh. 14 - Prob. 9RQCh. 14 - Prob. 10RQCh. 14 - Prob. 11RQCh. 14 - Prob. 12RQCh. 14 - Prob. 1DQCh. 14 - Prob. 2DQCh. 14 - Prob. 3DQCh. 14 - Prob. 4DQCh. 14 - Prob. 5DQCh. 14 - Prob. 6DQCh. 14 - Prob. 7DQCh. 14 - Prob. 8DQCh. 14 - Prob. 9DQCh. 14 - Prob. 10DQCh. 14 - Prob. 1PSECh. 14 - Prob. 1TACh. 14 - Imagine that your team has been hired to conduct a...Ch. 14 - Prob. 3TACh. 14 - Prob. 1WECh. 14 - Prob. 2WECh. 14 - Prob. 3WECh. 14 - Prob. 1CECh. 14 - Prob. 2CECh. 14 - Prob. 3CECh. 14 - Prob. 1CTQ1Ch. 14 - Prob. 2CTQ1Ch. 14 - Prob. 3CTQ1Ch. 14 - Prob. 1CTQ2Ch. 14 - Prob. 2CTQ2Ch. 14 - Prob. 3CTQ2
Knowledge Booster
Similar questions
- Discuss with appropriate examples, the types of relationship in a database. Give two references from an article.arrow_forwardWhat is a cloud and why do we use it? Give one reference with your answer.arrow_forwardWhat are triggers and how do you invoke a trigger on demand? give one reference with your anwer.arrow_forward
- Why is database normalization important? Give one reference with your answer.arrow_forwardDescribe the role of databases and database management systems in the context ofenterprise systems. Give two references with your answer.arrow_forwardIs it advisable to run a test on a live database? Give reasons. Also give one reference from an article.arrow_forward
- For context and I am looking for someone with experience in either computer graphics with companies, or at least has an expertise or experiences in engine development.I am developing a game engine. The niche that I want to focus in open-world development to specialize in.I have seen, heard, and had discussions about various approaches to scene graphs and ways they get handled to be sent to the renderer.If I wanted to focus on open-world, what are different tips and approaches you can tell me of how complex scenes. Like open-world get rendered? What I mean when asking this question, what is the design layout typically of a few approaches that is used for rendering not just basic scenes but complex scenes? Especially since I want to focus on building a game engine that hopes to focuse in open-world.I am using the entity component system framework EnTT, and would like to know if you can also provide tips and how that framework can be incorporated into the design layouts of how you've…arrow_forwardPlease original work Describe the steps of the process of data discovery Why each one is important to data analysis and data warehousing frameworks. Please cite in text references and add weblinksarrow_forwardThe following is code for a disc golf program written in C++: player.h: #ifndef PLAYER_H #define PLAYER_H #include <string> #include <iostream> class Player { private: std::string courses[20]; // Array of course names int scores[20]; // Array of scores int gameCount; // Number of games played public: Player(); // Constructor void CheckGame(const std::string& courseName, int gameScore); void ReportPlayer(int playerId) const; }; #endif // PLAYER_H player.cpp: #include "player.h" #include <iomanip> Player::Player() : gameCount(0) {} void Player::CheckGame(const std::string& courseName, int gameScore) { for (int i = 0; i < gameCount; ++i) { if (courses[i] == courseName) { // If course has been played, check for minimum score if (gameScore < scores[i]) { scores[i] = gameScore; // Update to new minimum score } return; // Exit after…arrow_forward
- What is the cyclomatic complexity of the diagram below, and how did you find it?arrow_forwardWrite the following code segment in MARIE’s assembly language:if X <= Y thenY = Y - 1;else if X != Zthen Y = Y + 1;else Z = Z - 1arrow_forwardA browser’s cache and cookies are used to? a. Keep your identity safe online b. Store information about a site for faster load times c. Act as an online file directory for websites d. Translate webpages from one language to another Which of these passwords meets the most complexity requirements? a. password1 b. Opensaysme c. EzP@ss35! d. PaSsWoRd45 Which of the below is a browser version number? a. Chrome 81.0.4044.129 b. IE Desk 7 c. Firefox iPad d. Google Chrome One Which one of these is an Excel file type? a. .csv b. .docx c. .html d. Python Select the best option for each of the following scenarios. Please use each selection only once. If I needed to communicate to everyone in my company at once, I would go to: __ If I were readying an important presentation, I would go to: __ If I were writing an essay I would go to: __ If I were looking at a lot of data I would go to: __ a. Powerpoint b. Outlook c. Word d. Excel An outdated browser can cause any of the following…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Fundamentals of Information SystemsComputer ScienceISBN:9781337097536Author:Ralph Stair, George ReynoldsPublisher:Cengage LearningPrinciples of Information Systems (MindTap Course...Computer ScienceISBN:9781305971776Author:Ralph Stair, George ReynoldsPublisher:Cengage LearningManagement Of Information SecurityComputer ScienceISBN:9781337405713Author:WHITMAN, Michael.Publisher:Cengage Learning,
- Principles of Information Security (MindTap Cours...Computer ScienceISBN:9781337102063Author:Michael E. Whitman, Herbert J. MattordPublisher:Cengage LearningPrinciples of Information Systems (MindTap Course...Computer ScienceISBN:9781285867168Author:Ralph Stair, George ReynoldsPublisher:Cengage Learning
Fundamentals of Information Systems
Computer Science
ISBN:9781337097536
Author:Ralph Stair, George Reynolds
Publisher:Cengage Learning
Principles of Information Systems (MindTap Course...
Computer Science
ISBN:9781305971776
Author:Ralph Stair, George Reynolds
Publisher:Cengage Learning
Management Of Information Security
Computer Science
ISBN:9781337405713
Author:WHITMAN, Michael.
Publisher:Cengage Learning,
Principles of Information Security (MindTap Cours...
Computer Science
ISBN:9781337102063
Author:Michael E. Whitman, Herbert J. Mattord
Publisher:Cengage Learning
Principles of Information Systems (MindTap Course...
Computer Science
ISBN:9781285867168
Author:Ralph Stair, George Reynolds
Publisher:Cengage Learning