answersLogoWhite

0


Best Answer

Joint Application Design (JAD) is a process used in the prototyping phase of the Dynamic Systems Development Method (DSDM) to collect business requirements while developing new information systems for a company. JAD sessions are the structured workshops where knowledge workers and IT specialists collaborate to define and review the business requirements for the information system.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are JAD sessions?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

List and describe the five major steps in conducting JAD sessions?

1. Select participants.2. Design the JAD session: set agenda, times, etc..3. Prepare for the JAD session: review materials, JAD plan, inform participants about ground rules, etc..4. Conduct the JAD session.5. Follow up with participants.


Which layer is responsible for creating managing and terminating sessions between applications?

session layer


Are chat sessions and emails stored in the computer-How can you get rid of them?

yeah it is stored in their application folders! u can used privacy eraser for this


Why is using TELNET a security risk for an IP network infrastructure?

Because the telnet session is in clear text and programs can capture the passwords to log in to telnet sessions.


How do you enable PHP sessions?

Find your php.ini file (which holds all the settings for PHP, and how it should work).Under the "sessions" section, find the directive "session.save_hander." Unless you're directed otherwise, and you want sessions enabled, this directive should be set to the string "files."If session problems arise, find the directive "session.save_path," and make sure the current path it's set to actually exists (and that PHP can write to it). PHP does not create this directory; you need to.Still not working? Go to the directory path that session files are saved in (as noted in the "session.save_path" directive) and see if there are session files being created when you start a session in a PHP script. If they are, then your scripts are most likely the problem. If the newly created sessions are empty, make sure that you are actually putting data in them, and that you're not resetting the $_SESSION global variable anywhere.If they aren't, then it may help to reinstall PHP, or get further assistance elsewhere.