General Motors planning acronym:

PDCA = plan, do,check,act

 

25 words that describe chapter 2:

linear model:  analyze, design,code,test

iterative models:  prototyping, RAD [rapid application development]

 

Banana Bread

-------------------------------

heat over to 350 degrees

1.75 cup flour

1.25 tsp baking powder

.5 tsp baking sode

2/3 cup sugar

1/3 cup olive oil

2 eggs

 2 TBS milk

1 cup bananas

---------------

Mix and bake for an hour.

Make sure it is done:  put a toothpick in and in comes out clean, or you press the

middle and it springs back

-----------------------------------

 

conversions:

1 cup = 236.6 cc

1 teaspoon = 4.929 cc  [tsp]

1 Tablespoon = 14.79 cc  [TBS]

 

website for book:

www.mhhe.com/pressman

-----------------

Chapter 2 Self-Check Quiz

 

 

--------------------------------------------------------------------------------

 

     1. Which of the items listed below is not one of the software engineering layers?

 a. Process

 b. Manufacturing

 c. Methods

 d. Tools

 

 

 

--------------------------------------------------------------------------------

 

2. What are the three generic phases of software engineering?

 a. definition, development, support

 b. what, how, where

 c. programming, debugging, maintenance

 d. analysis, design, testing

 

 

 

--------------------------------------------------------------------------------

 

3. Which of these terms is a level name in the Capability Maturity Model?

 a. Ad hoc

 b. Repeatable

 c. Reusable

 d. Organized

 

 

 

--------------------------------------------------------------------------------

 

4. Which of these items should be used to select a software process framework?

 a. People

 b. Product

 c. Project

 d. All of the above

 

 

 

--------------------------------------------------------------------------------

 

5. In which software development problem solving stage are the results delivered?

 a. Status quo

 b. Problem definition

 c. Technical development

 d. Solution integration

 

 

 

--------------------------------------------------------------------------------

 

6. Software development activities are easy to compartmentalize into four non-overlapping phases?

 a. True

 b. False

 

 

 

--------------------------------------------------------------------------------

 

7. The linear sequential model of software development is

 a. A reasonable approach when requirements are well defined.

 b. A good approach when a working program is required quickly.

 c. The best approach to use for projects with large development teams.

 d. An old fashioned model that is rarely used any more.

 

 

 

--------------------------------------------------------------------------------

 

8. The linear sequential model of software development is also known as the

 a. Classical life cycle model

 b. Fountain model

 c. Spiral model

 d. Chaos model

 

 

 

--------------------------------------------------------------------------------

 

9. The prototyping model of software development is

 a. A reasonable approach when requirements are well defined.

 b. A usefulapproach when a customer cannot define requirements clearly.

 c. The bestapproach to use for projects with large development teams.

 d. A riskymodel that rarely produces a meaningful product.

 

 

 

--------------------------------------------------------------------------------

 

10. The rapid application development model is

 a. Another name for component-based development.

 b. A useful approach when a customer cannot define requirements clearly.

 c. A high speed adaptation of the linear sequential model.

 d. All of the above.

 

 

 

--------------------------------------------------------------------------------

 

11. Evolutionary software process models

 a. Are iterative in nature

 b. Can easily accommodate product requirements changes

 c. Do not generally produce throw away systems

 d. All of the above

 

 

 

--------------------------------------------------------------------------------

 

12. The incremental model of software development is

 a. A reasonable approach when requirements are well defined.

 b. A good approach when a working core product is required quickly.

 c. The best approach to use for projects with large development teams.

 d. A revolutionary model that is not used for commercial products.

 

 

 

--------------------------------------------------------------------------------

 

13. The spiral model of software development

 a. Ends with the delivery of the software product

 b. Is more chaotic than the incremental model

 c. Includes project risks evaluation during each iteration

 d. All of the above

 

 

 

--------------------------------------------------------------------------------

 

14. The WINWIN spiral model of software development is

 a. A used when requirements must be defined by customer negotiation.

 b. Useful when a customer is able to provide requirements completely.

 c. The best approach to use for projects with large development teams.

 d. Like the spiral model without the risk assessment step.

 

 

 

--------------------------------------------------------------------------------

 

15. The concurrent development model is

 a. Another name for the rapid application development model.

 b. Often used for the development of client/server applications.

 c. Only used for development of parallel or distributed systems.

 d. Used whenever a large number of change requests are anticipated.

 

 

 

--------------------------------------------------------------------------------

 

16. The component-based development model is

 a. Only appropriate for computer hardware design.

 b. Not able to support the development of reusable components.

 c. Dependent on object technologies for support.

 d. Not cost effective by known quantifiable software metrics.

 

 

 

--------------------------------------------------------------------------------

 

17. The formal methods model of software development makes use of mathematical methods to

 a. Define the specification for computer-based systems

 b. Develop defect free computer-based systems

 c. Verify the correctness of computer-based systems

 d. All of the above

 

 

 

--------------------------------------------------------------------------------

 

18. Fourth generation techniques

 a. Allow software to be developed without any testing.

 b. Eliminate the need for costly requirements gathering activities.

 c. Can reduce the time required to develop software.

 d. Are best used by non-programmers to build small systems.

--------------------------------

 

 

directions for VB in lab:

start

programs

computer science programs

visual studio

*********

select standard exe

----------------

changes to FORM properties:

caption and bgcolor

 

code for command buttons:

Private Sub Command1_Click()

Form2.Visible = True

Form1.Visible = False

End Sub

 

Private Sub Command1_Click()

Form1.Visible = True

Form2.Visible = False

End Sub

------------------

when you are typing a command button caption, put an & for the anchor

---------------------------

HOMEWORK..

 

CHAPTER 2 of PRESSMAN!

2.12 - provide three cool examples of fourth generation techniques [make a list].

2.13 - Which is more important - The product or the process??

Limit is 100 WORDS [no more, and write the word count!]

2.5 - Which of the software engineering paradigms presented in this chapter do you

think would be most effective??  WHY??

Limit one page!

----------------------------------------------

Private Sub Command1_Click()

Form1.BackColor = QBColor(4)

End Sub

 

Private Sub Command2_Click()

Form1.BackColor = QBColor(9)

End Sub

 

Private Sub Command3_Click()

Text1.BackColor = QBColor(7)

 

CHAPTER 11-

50 words or less....

a.  requirements analysis = first phase of SE, information gathering and analysis

HOW???

*** FAST = facilitated action specification techniques

*** QFD = Quality functional deployment

*** USE - CASES = scenario

Data:

define data objects

describe data attributes

establish data relationships

BEHAVIOR:

indicate different states of the system

specify events that cause the system to change state

-----process:

    model, partition, prototype, specification principles, review

----------------------

Now for a couple of homework problems:

 

not from book:

1.  Find a cool 'specification document template' from the web:

a.  print it out

b.  give your opinion on it in a paragraph

c.  example [you can't use this one, find your own:  http://www2.ics.hawaii.edu/~johnson/413/lectures/5.2.html

 

FROM THE BOOK:

Chapter 11, problem #1:  why does the communication path between people

frequently break down?

find some interesting answer on the web, cut/paste and comment