Do you have any recommendations for future changes to the system that would make it easier for employees to use?
What will be an ideal response?
The database could be integrated with web-enabled forms which would allow employees to access data from an Internet browser. Users' app preferences could be stored. The app could have a web-enabled component so members could access schedules via an Internet browser.
Computer Science & Information Technology
You might also like to view...
When you click the Font property in the Properties window, a(n) ____ button indicates multiple choices for the property will be made available when you click the button.
A. ellipsis B. caret C. comma D. percent sign
Computer Science & Information Technology
Will the following program terminate?
``` int balance = 10; while (true) { if (balance < 9) continue; balance = balance - 9; } ``` a. Yes b. No
Computer Science & Information Technology