Discuss the advantages and disadvantages of a walkthrough.

What will be an ideal response?


The advantage of a walkthrough is that relatively little time is consumed, so the resource commitment and cost is negligible. The disadvantage of a walkthrough is that it is not rigorous. The producer controls the presentation, which means walking a reviewer past holes in logic that neither side will be able to see, or do anything about.

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a hardware device that enables an individual to read data from a device, such as a hard drive, without writing to that device

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which of the following options appear on the Windows 10 Start menu by default? (Choose all that apply.)

Computer File Explorer Music On/Off

Computer Science & Information Technology

What is a winmodem and what is a disadvantage of using one?

What will be an ideal response?

Computer Science & Information Technology

In the bubble sort algorithm, which code accomplishes swapping values in elements at positions index and index + 1?

A. list[index] = list[index + 1] list[index + 1] = list[index] B. list[index + 1] = list[index] list[index] = list[index + 1] C. list[index] = temp; list[index] = list[index + 1]; temp = list[index + 1]; D. temp = list[index]; list[index] = list[index + 1]; list[index + 1] = temp;

Computer Science & Information Technology