PYTHON Your assignment is read the description about a ‘sample’ facility layout.
ID: 3576150 • Letter: P
Question
PYTHON
Your assignment is read the description about a ‘sample’ facility layout. Create a table or list of all the areas, and discuss the areas where data encryption is needed, and why. Facility description:
1. Front end
o entry
o customer conference rooms
o accounting
o sales, customer service, etc.
o general work areas
o private offices
o misc. (main telephone/data, office supplies, break area, files, fax, mail/postage)
2. Production Cell
o various equipment
o fulfillment
o unique value added component
3. Warehousing
o storage (raw materials, finished goods)
4. Shipping/Receiving
o shipping/receiving office
o driver area
o labeling and ready to ship
5. Maintenance & Production Support
o Maintenance (parts storage)
o Solvent storage
o Equipment support (air compressors, etc.)
o Battery chargers
6. Employee Services
o main locker/toilets
o cafeteria
o training / recreation
o human resources
So, for example, you might say:
o Area 6:
o Cafeteria- the eating area will most likely have Wi-Fi. Wi-Fi needs encryption to protect existing wired network from attackers.
o And then discuss the main locker, training area, and human resources.
Do this for each area, and each item in the area. You may or may not do some research on your own. Feel free to Google ‘security risks,’ or just use your own common sense and experiences. Keep in mind that factories frequently have automation, like robots used in manufacturing. These devices frequently connect to the company network, so diagnostic tests can be run and quality can be checked on the robots.
Explanation / Answer
# Front end
entry = raw_input('entry: ')
customer_conference_rooms = raw_input('customer conference rooms: ')
accounting = raw_input('accounting')
sales_customer service_etc = raw_input('sales, customer service, etc. :')
general_work_areas = raw_input('general work areas :')
private_offices = raw_input('general work areas :')
misc_main telephone_data_office_supplies_break area_files_fax_mail_postage = raw_input('misc. (main telephone/data, office supplies, break area, files, fax, mail/postage) : ')
# Production Cell
various_equipment = raw_input('various equipment :')
fulfillment = raw_input('fulfillment :')
unique_value_added_component = raw_input('unique value added component :')
# Warehousing
storage_raw_materials_finished_goods = raw_input('storage (raw materials, finished goods) :')
# Shipping/Receiving
shipping_receiving_office = raw_input('shipping/receiving office :')
driver_area = raw_input('shipping/receiving office :')
labeling_and_ready_to_ship = raw_input('labeling and ready to ship :')
# Maintenance & Production Support
Maintenance_parts_storage = raw_input('Maintenance (parts storage) :')
Solven t_storage = raw_input('Solvent storage :')
Equipment_support_air_compressors_etc = raw_input('Equipment support (air compressors, etc.) :')
Battery_chargers = raw_input('Battery chargers :')
# Employee Services
main_locker_toilets = raw_input('main locker/toilets : ')
cafeteria = raw_input('cafeteria : ')
training_recreation = raw_input('training / recreation : ')
human resources = raw_input('human resources : ')
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.