Maam Yvette Research Assignment

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

Immanuel John salac BSCS 3-E1

Title: Navigating Privacy Challenges in Information Technology: Implications for


Professional Practices

Introduction:

Foregoing growing ubiquity of data collecting, surveillance, and digital interactions has
led to a boom in Latter importance of privacy issues in the field of information technology
(IT). Proliferation of personal data in digital spaces makes people more susceptible to
privacy violations. Preceding purpose of this essay is to examine how privacy issues
affect IT industry professionals' actions. It examines moral conundrums, current
projects, and the crucial part that professionals play in resolving this urgent societal
issue.

Impact on Professional Practices:

IT workers deal with privacy issues in a variety of fields, including software


development, cybersecurity, and data management. Wherefore significant challenges in
maintaining Latter effectiveness and usefulness of IT systems while maintaining the
security of sensitive data. Professionals have to fulfill stakeholder demands and ethical
requirements while skillfully navigating the difficult balance between data protection and
technology innovation.

Ethical Dilemmas:

IT professionals often face moral conundrums related to the gathering, use, and security
of personal information. Hereupon are many concerns about data ownership, informed
permission, Moreover the possible consequences of data breaches or abuse.
Maintaining a balance between the needs of users, clients, and society at large requires
careful consideration of legal requirements as well as ethical principles.

Current Practices and Initiatives:

IT professionals have implemented a multitude of strategies and initiatives in response


to privacy issues. Forementioned include incorporating privacy-by-design principles into
software development, strengthening cybersecurity protocols, as well as promoting
responsibility and openness in data handling procedures. Moreover, frameworks to
reduce privacy risks In addition with encourage responsible data stewardship are
provided by industry standards compliance, legal requirements like the General Data
Protection Regulation (GDPR), and the use of privacy-enhancing technology.

Role of Professionals:

Professionals from field of IT have a significant impact on both reducing the negative
effects of privacy issues and promoting good societal change. Professionals may foster
user trust, protect individual rights, and advance the ethical use of technology by
advocating for privacy-preserving technologies, adhering to ethical standards, and
developing an ethical data ethics culture inside enterprises. Foregoing development of
comprehensive solutions to privacy concerns is further facilitated by collaboration with
civil society groups, privacy advocates, and legislators.

Conclusion:
Researcher therefor Conclude Whereby Information technology professionals have
difficult issues when it comes to privacy concerns, which need for a diversified approach
to successfully address them. Through the prioritization of ethical considerations, the
implementation of best practices, and active stakeholder engagement, professionals
can effectively reduce privacy threats and promote a safer and equitable digital
environment. In an increasingly linked world, defending individual privacy rights will
require sustained efforts to incorporate privacy safeguards into IT systems and cultivate
a culture based on moral obligation.
import datetime

products = {}
print('====================================')
print(" POS - PROGRAM")
print('====================================')

def display_menu():
print("Tasks:")
print(" A - Add a Product")
print(" V - View Products")
print(" D - Delete a Product")
print(" T - Transact Sales")
print(" [ANY KEY] - Exit")
print()

def add_product():
print('====================================')
print(" < Add a Product >")
print('====================================')
print(f"\nDate and Time: {datetime.datetime.now()}")
name = input("\nProduct Name: ")
price = input("Product Price: ")
try:
price = float(price)
products[name] = price
print("\nThe Product ADDED to the system!")
except ValueError:
print("\nThe Product NOT ADDED. Invalid Price!")
display_menu()

def view_products():
if not products:
print("No products added yet.")
else:
print('====================================')
print(" < View Product >")
print('====================================')
print(f"\nDate and Time: {datetime.datetime.now()}")
for name, price in products.items():
print(f"\nProduct Name: {name}")
print(f" Product Price: {price}")
print()
display_menu()

def delete_product():
print('====================================')
print(" < Delete Product >")
print('====================================')
print(f"\nDate and Time: {datetime.datetime.now()}")
name = input("\nProduct Name: ")
if name in products:
del products[name]
print("The Product DELETED from the system!")
else:
print("The Product does NOT EXIST!")
display_menu()

def transact_sales():
print('====================================')
print(" < Transaction Sales >")
print('====================================')
print(f"\nDate and Time: {datetime.datetime.now()}\n")
total_cost = 0
while True:
name = input("Product Name (type 'x' to STOP the transaction): ")
if name == 'x':
break
elif name in products:
total_cost += products[name]
else:
print("The Product does NOT EXIST!\n")
print('====================================')
print(f"Total Cost: {total_cost}")
print("\nTransaction Details:")
print(f"\nDate and Time: {datetime.datetime.now()}")
print("\nItems and Prices:")
for name, price in products.items():
print((f" {name} - {price}"))
print(f"Total Cost: {total_cost}")
display_menu()

def display_transaction_log():
total_cost = sum(products.values())
print("\nAll Transaction Logs:")
print(f"\nDate and Time: {datetime.datetime.now()}")
print("\nItems and Prices:")
for name, price in products.items():
print((f" {name} - {price}"))
print(f"Total Cost: {total_cost}")
print("\nTHANK YOU FOR USING THIS POS - PROGRAM!")

initial_run = True
while True:
if initial_run:
display_menu()
initial_run = False

task = input("Chosen task is: ").upper()

if task == 'A':
add_product()
elif task == 'V':
view_products()
elif task == 'D':
delete_product()
elif task == 'T':
transact_sales()
else:
display_transaction_log()
break

You might also like