Which of the following are advantages of using function points (FP) as a measure of the functionality delivered by a software application?A) FP is easily computed.B) FP is a language dependent measureC) FP is a language independent measureD) FP can be computed before a design is completed

What will be an ideal response?


C, D

Computer Science & Information Technology

You might also like to view...

________ is the keyboard shortcut for moving up one cell

A) Home B) PageUp C) Ctrl + Home D) Shift + Enter

Computer Science & Information Technology

Which of the following is most closely associated with Moore's Law?

a. Every year or two, the price of computers has approximately doubled. b. Object-oriented programming uses less memory than previous software-development methodologies. c. Demand for communications bandwidth is decreasing dramatically each year. d. Every year or two, the capacities of computers have approximately doubled without any increase in price.

Computer Science & Information Technology

Write a driver (test) program that demonstrates each method, with at least one true and one false case for each of the methods tested.

Add methods to the Person class from Self-Test Question 16 to perform the following tasks: • Set the name attribute of a Person object. • Set the age attribute of a Person object. • Test whether two Person objects are equal (have the same name and age). • Test whether two Person objects have the same name. • Test whether two Person objects are the same age. • Test whether one Person object is older than another. • Test whether one Person object is younger than another. This project requires seven new methods to be added to Person class, but most of them are very simple to code. The test program, however, requires significant work to create test cases that cover the various decision paths of the class’s methods. Note that the equalsIgnoreCase method of the String class is used to check for matching names.

Computer Science & Information Technology

How many times will the following loop execute?For intCount = 10 To 1 Step -2    ‘Body of loopNext

A. 4 B. 5 C. 9 D. 10

Computer Science & Information Technology