Extend the implementation of Exercise 29.12 to allow the base tables to be updated from the Web browser.

What will be an ideal response?

Again, depends on the technology used. Check out the web site for the book, which gives a
partial implementation of the DreamHome case study using ASP.

Computer Science & Information Technology

You might also like to view...

The _________ floor indicates the weakest signal that can be received.

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

Computer Science & Information Technology

(Pythagorean Triples) A right triangle can have sides that are all integers. The set of three integer values for the sides of a right triangle is called a Pythagorean triple. These three sides must satisfy the relationship that the sum of the squares of two of the sides is equal to the square of the hypotenuse. Find all Pythagorean triples for side1, side2 and hypotenuse all no larger than 20.

Use a triple-nested for loop that tries all possibilities. This is an example of “brute force” computing. You will learn in more advanced computer science courses that there are many interesting problems for which there is no known algorithmic approach other than using sheer brute force. What will be an ideal response?

Computer Science & Information Technology