Some systems analysts argue, “Give users what they ask for. If they want lots of reports and reams of data, then that is what you should provide. Otherwise, they will feel that you are trying to tell them how to do their jobs.” Others say, “Systems analysts should let users know what information can be obtained from the system. If you listen to users, you’ll never get anywhere, because they really don’t know what they want and don’t understand information systems.” What do you think of these arguments?
What will be an ideal response?
Neither of these arguments, which present two extreme viewpoints, is totally justifiable. The best policy probably is somewhere between these two views. The first argument has some truth because information systems are designed for the users. When a user really needs information in the form of a long printed report, then that information must be provided. The implication about user attitudes is unfair. Users and IT professionals have a common goal — to serve the organization.
The second viewpoint is even weaker. A systems analyst should always be willing to offer suggestions. It is true that users sometimes do not know what information to ask for, and a business-oriented systems analyst can help them define their requirements.
You might also like to view...
LIFO means:
A. the last element that comes out is the first one to go in B. the last element to go in is the first element to come in C. the last element to go in is the first element to come out D. the last element that comes in is the first one to go in
This code should allow a user to pick a font from a Font and set the text in txtDis- play to that font. Find the error(s) in the following code, assuming that a TextBox named txtDisplay exists on a Form, along with a MenuItem named mnuitmFont.
private void mnuitmFont_Click( object sender, System.EventArgs e ) { FontDialog dlgFontDialog; dlgFontDialog = new FontDialog(); dlgFontDialog.ShowDialog(); txtDisplay.Font = dlgFontDialog.Font; } // end method mnuitmFont_Click
Windows ________ helps prevent viruses, spyware, and malicious or unwanted software from being installed on your PC without your knowledge
Fill in the blank(s) with correct word
If numAddr is a pointer, ____ means the variable whose address is stored in numAddr.
A. *numAddr B. numAddr* C. &numAddr D. *&numAddr