Skip to main content

Ethical Issues in Information System

This article is based on the Ethical Issues encountered in Information System. 

In University Exams "Different Ethical Issues in Information System" is frequently asked question along with Information System Types.

Ethics is moral rules, standards, codes or principles which provide guidelines for right and truthful behavior in specific situations. Ethical issues occur when a given decision, scenario or activity creates a conflict with a society's moral principles.

There are four categories of ethical issues-

    a) Privacy issues

    b) Accuracy issues

    c) Property issues

    d) Accessibility issues

 

A) Privacy Issues -

It involves collecting, storing and distributing Information about individuals or organizations. It includes what information must be revealed to others and what information must be kept safeguard from others.

B) Accuracy Issues -

It involves the authenticity, fidelity and accuracy of information that is collected and processed.

C) Property Issues -

It involves the ownership and rights of the information.

D) Accessibility Issues –

It involves who should have access to what information and whether that access must be free or paid.

 

Tenets are the beliefs which the organization or individuals follow. The fundamental tenets of ethics are –

a. Responsibility - It means that one should accept the consequences of their decisions and actions.

b. Accountability - It refers to determining who is responsible for actions that were taken.

c. Liability - It gives the Individual, the right to recover the damages done to them by other individuals or organizations.


There are four widely used ethical standards to minimize ethical issues.

They are - Utilitarian approach, Rights approach, Fairness approach and Common good approach.

a) Utilitarian Approach- The utilitarian approach states that an ethical action is the one that provides the most good or does the least harm.

b) Rights Approach - The rights approach maintains that on ethical action is the one that best protects and respects the moral rights of the affected parties.

c) Fairness Approach - The fairness approach posits that ethical actions treat all individuals equally and if treated unequally then it must be fair on some standard basis.

d) Common good approach - The common good approach highlights the interlocking relationships that underlie all societies. This approach argues that respect and compassion for all others is the basis for ethical actions.

Comments

Popular posts from this blog

UML - Use Case Diagram for Vending Machine

Hello Everyone! Here is an example of an Use case Diagram of a Vending Machine System. Problem Statement - A vending machine accepts coins for variety of products. The user selects the drinks from products available through selection panel. If the drink is available the price of the product is displayed. The user then deposits the coins depending on the price of the product. Coin collector collects coin after stipulated time the controller will compare the deposited coin with price. If amount deposited is less than price then error message will be displayed and all deposited coin will be dispensed by the coin dispenser else the drink will be dispensed by the product dispenser. Check out other UML (Unified Modeling Language) Diagrams - Class Diagram   Object Diagram   Sequence Diagram Collaboration Diagram   Activity Diagram   State Diagram   Component Diagram   Deployment Diagram  

UML - Component Diagram for Intranet development of a college/school

Hello Everyone! Here is an example of an Component Diagram for Intranet development. Problem Statement - An intranet is a computer network for sharing information, collaboration tools, operational systems, and other computing services only within an organization. An Internet Service Provider (ISP) provides LAN services, Application services, Email services, Domain and Web hosting services to an organization. The LAN service is provided through Switch to the terminals using Ethernet and other cables. The firewall feature is provided for web applications through Application services. All the students and staff members are provided with an official email account through email services. The college has its own domain and web hosting package provided by the ISP. All these services maintain a database which is stored on server. The database server and all the services are controlled and handled by the Administrator of the college. Check out other UML (Unified Modeling Language)...

Connecting GitHub with Jenkins - Step by step Tutorial

Hello Everyone, In this tutorial, we will learn how to create a New Item (Project), connect Git and GitHub to Jenkins and run the files from the Git repository on Jenkins. Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. Facing trouble with the installation of Jenkins? Click here to know more. NOTE: It is mandatory to install plugins for Git and GitHub before connecting your GitHub repository to Jenkins. If you're using Jenkins for the first time, you need to install the plugins. To know more about these plugins, check out Git and GitHub Plugins for Jenkins . This tutorial demonstrates executing python code which requires separate plugins. Know more about Python Plugi...