What are JAD and RAD, and how do they differ from traditional fact-finding methods? What are the main advantages of team-based methods?

What will be an ideal response?


JAD (joint application development) refers to a team of users, managers, and IT professionals that work together to analyze the existing system, work on potential solutions, and develop the requirements for new systems. JAD can be more expensive than traditional methods, and if the team is too large for the project, then the JAD process can be cumbersome. The wide range of inputs and interaction among the participants in JAD can result in a more accurate assessment of system requirements, better understanding of goals, and stronger commitment to the success of the new system.
Like JAD, RAD (Rapid application development) uses a group approach, but goes much further. While JAD focuses on the requirements modeling process, RAD is a complete methodology, with a four-phase life cycle that parallels the traditional SDLC phases. The end product of RAD is the new information system. Companies use RAD to reduce cost and system development time, as well as increase the probability of success.
RAD relies heavily on prototyping and user involvement. Users can examine a working model as early as possible, determine if it meets their needs, and suggest necessary changes by using the RAD process. Based on user input, the prototype is modified, and the interactive process continues until the system completely is developed and users are satisfied. The RAD model consists of four phases: requirements planning, user design, construction, and cutover.

Computer Science & Information Technology

You might also like to view...

If the following pseudocode was coded and executed, what would display?

``` Declare String str = "a1b2c3d4" Declare Integer index Declare Integer num = 0 For index = 0 To length(str) - 1 If isDigit(str[index]) Then Set num = num + 1 End If End For Display num ``` a. 3 b. 0 c. 5 d. 4

Computer Science & Information Technology

Which of the following statements about Creative Commons licensing is false?

A) It waives your copyright for any images you register with them. B) It is a non-profit organization. C) The company which handles this is currently located in Mountain View, California. D) It enables users to share the use of creativity and knowledge through free legal tool.

Computer Science & Information Technology

Which of the following services or protocols can be made more secure by implementing H.235 extensions with DES?

A. DNS B. H.323 C. SIP D. STP

Computer Science & Information Technology

When a form is posted, information from the uploaded file is stored in the ____ autoglobal array.

A. $_FILES[] B. $_UPLOAD[] C. FILE_UPLOAD[] D. UPLOAD_FILES[]

Computer Science & Information Technology