What code review process is shown here? Planning Overview Preparation Inspection Rework Follow-up

A. Static inspection
B. Fagan inspection
C. Dynamic inspection
D. Interface testing


Answer: B. Fagan inspection

Computer Science & Information Technology

You might also like to view...

(Invoice Class) Create a class called Invoice that a hardware store might use to represent an invoice for an item sold at the store. An Invoice should include four data members—a part num- ber (type string), a part description (type string), a quantity of the item being purchased (type int) and a price per item (type int). [Note: In subsequent chapters, we’ll use numbers that contain

decimal points (e.g., 2.75)—called floating-point values—to represent dollar amounts.] Your class should have a constructor that initializes the four data members. Provide a set and a get function for each data member. In addition, provide a member function named getInvoiceAmount that calcu- lates the invoice amount (i.e., multiplies the quantity by the price per item), then returns the amount as an int value. If the quantity is not positive, it should be set to 0. If the price per item is not positive, it should be set to 0. Write a test program that demonstrates class Invoice’s capabilities. What will be an ideal response?

Computer Science & Information Technology

Scheduling using per-processor or per-node run queues.

For each of the following multiprocessor scheduling algorithms, use the classifications discussed early in this chapter to describe the type of multiprocessor system that would likely employ it. Justify your answers.

Computer Science & Information Technology

You have been trying to add a specialized channel to an image for a few minutes and it does not seem to be working. Which of the following could be the problem?

You have never used channels before but you have heard colleagues tell you how useful they can be, so you decide to do some experimenting yourself. a. You are trying to add it to a bitmap image. b. You are trying to add it to a composite image. c. You are trying to add it to a CMYK image. d. Both a and c.

Computer Science & Information Technology

Which of the following is a cloud computing element that gives a service provider the ability to dynamically allocate shared physical resources to multiple customers based on each customer's usage demand?

A. On-demand B. Rapid elasticity C. Resource pooling D. Measured service

Computer Science & Information Technology