home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / software / 5157 < prev    next >
Encoding:
Internet Message Format  |  1992-12-27  |  13.3 KB

  1. Xref: sparky comp.software-eng:5157 news.answers:4743
  2. Newsgroups: comp.software-eng,news.answers
  3. Path: sparky!uunet!utcsri!torn!news.ccs.queensu.ca!qucis.queensu.ca!qucis.queensu.ca!dalamb
  4. From: dalamb@qucis.queensu.ca (David Alex Lamb)
  5. Subject: FAQ 1: comp.software-eng questions and answers
  6. Message-ID: <questmsg_725461505@qucis.QueensU.CA>
  7. Followup-To: comp.software-eng
  8. Keywords: FAQ
  9. Sender: dalamb@qucis.queensu.ca (David Lamb)
  10. Supersedes: <questmsg_722888345@qucis.QueensU.CA>
  11. Reply-To: dalamb@qucis.queensu.ca (David Alex Lamb)
  12. Organization: Computing and Information Science, Queen's University at Kingston, Ontario,  K7L 3N6, Canada
  13. References: <faqmsg_725461505@qucis.QueensU.CA>
  14. Date: Sun, 27 Dec 1992 13:05:12 GMT
  15. Approved: news-answers-request@MIT.Edu
  16. Expires: Tue, 9 Feb 1993 13:05:05 GMT
  17. Lines: 305
  18.  
  19. Archive-name: software-eng/part1
  20.  
  21. This message gives brief answers to questions that have occurred in
  22. comp.software-eng; in many cases they are also topics many readers would like
  23. NOT to see discussed again soon.  Questions are:
  24.    What's a CASE Tool?
  25.    What's a 'function point'?
  26.    What's the 'spiral model'?
  27.    What is a 'specmark'?
  28.    Where can I find a public-domain tool to compute metrics?
  29.    How do I write good C style?
  30.    What is 'Hungarian Notation'?
  31.    Are lines-of-code (LOC) a useful productivity measure?
  32.    Should software professionals be licenced/certified?
  33.    How do I get in touch with the SEI?
  34.    What is the SEI maturity model?
  35.    Where can I get information on API?
  36.    What's a 'bug'?
  37.    Where can I get copies of standards??
  38.  
  39.  
  40.  
  41. ------------------------------------------------------------------------
  42. Subject: What's a CASE Tool?
  43. Date:  3 Feb 1991
  44.  
  45.  
  46. (see also the archive file "casemsg") (thanks to Scott McGregor
  47. <mcgregor@atherton.com> for inspiring this question)
  48. CASE stands for Computer Aided Software Engineering;  it can be used to mean
  49. any computer-based tool for software planning, development, and evolution.
  50. Various people regularly call the following 'CASE': Structured Analysis (SA),
  51. Structured Design (SD), Editors, Compilers, Debuggers, Edit-Compile-Debug
  52. environments, Code Generators, Documentation Generators, Configuration
  53. Management, Release Management, Project Management, Scheduling, Tracking,
  54. Requirements Tracing, Change Management (CM), Defect Tracking, Structured
  55. Discourse, Documentation editing, Collaboration tools, Access Control,
  56. Integrated Project Support Environments (IPSEs), Intertool message systems,
  57. Reverse Engineering, Metric Analyzers.
  58.  
  59.  
  60. ------------------------------------------------------------------------
  61. Subject: What's a 'function point'?
  62. Date: 12 May 1992
  63.  
  64.  
  65. (see also the archive file "funcpoints")
  66.  
  67. Function points and feature points are methods of estimating the "amount of
  68. functionality" required for a program, and are thus used to estimate project
  69. completion time.  The basic idea involves counting inputs, outputs, and other
  70. features of a description of functionality.
  71.  
  72.  
  73. ------------------------------------------------------------------------
  74. Subject: What's the 'spiral model'?
  75. Date: 19 Sep 1991
  76.  
  77.  
  78. (see also the archive file "spiral")
  79. (1)  Barry Boehm, "A Spiral Model of Software Development and Enhancement",
  80.      ACM SIGSOFT Software Engineering Notes, August 1986.
  81. (2)  Barry Boehm "A Spiral Model of Software Development and Enhancement" IEEE
  82.      Computer, vol.21, #5, May 1988, pp 61-72.
  83.  
  84. Basically, the idea is incremental development, using the waterfall model for
  85. each step; it's intended to help manage risks.  Don't define in detail the
  86. entire system at first.  The developers should only define the highest
  87. priority features. Define and implement those.  With this knowledge, they
  88. should then go back to define and implement more features in smaller chunks.
  89.  
  90.  
  91. ------------------------------------------------------------------------
  92. Subject: What is a 'specmark'?
  93. Date: 19 Sep 1991
  94.  
  95.  
  96. (see also the archive file "specmark") The SPECmark is the geometric mean of a
  97. series of benchmarks done by the SPEC group. There are a couple of suites, but
  98. in general SPECmark refers to the results of the first suite.  The suite
  99. includes FORTRAN and C codes, mostly well known codes but slightly hacked
  100. versions.
  101.     SPEC
  102.     c/o NCGA
  103.     2722 Merrilee Drive, Suite 200
  104.     Fairfax, VA 22031
  105.     Phone: (703) 698-9600
  106.     FAX:   (703) 560-2752
  107.  
  108.  
  109. ------------------------------------------------------------------------
  110. Subject: Where can I find a public-domain tool to compute metrics?
  111. Date: 17 Jan 1992
  112.  
  113.  
  114. (see also the archive file "static") Volume 20 of newsgroup comp.sources.unix
  115. contained a public-domain package called "metrics", which computes McCabe and
  116. Halstead metrics.  There are many comp.sources.unix archives around the net.
  117.  
  118.  
  119. ------------------------------------------------------------------------
  120. Subject: How do I write good C style?
  121. Date: 19 Sep 1991
  122.  
  123.  
  124. This is answered regularly in the comp.lang.c FAQ.  Try "Recommended C style
  125. and Coding Standards", on host archive.cis.ohio-state.edu (128.146.8.52) via
  126. anonymous ftp in directory pub/style-guide.
  127.  
  128.  
  129. ------------------------------------------------------------------------
  130. Subject: What is 'Hungarian Notation'?
  131. Date: 19 Sep 1991
  132.  
  133.  
  134. (see also the archive file "hungarian") A naming convention for C code.  See
  135. Charles Simonyi and Martin Heller, "The Hungarian Revolution", BYTE, Aug. 1991
  136. (vol. 16, no. 8).  There are other naming conventions;  see, e.g.  "A Guide to
  137. Natural Naming", Daniel Keller, ETH, Projekt-Zentrum IDA, CH-8092 Zurich,
  138. Switzerland. Published in SIGPLAN Notices, Vol. 25, No. 5, pages 95-102.
  139.  
  140.  
  141. ------------------------------------------------------------------------
  142. Subject: Are lines-of-code (LOC) a useful productivity measure?
  143. Date: 12 May 1992
  144.  
  145.  
  146. (see also the archive file "static") Not unless you are very careful.  Capers
  147. Jones' book has a detailed and insightful discussion of Lines of Code,
  148. including anomalies, and shows how to use it sensibly (eg in a single job
  149. shop, with a single language, and a standard company coding style).
  150. Pathological cases should get caught in code inspections.  References:
  151. -    T. Capers Jones, Programming Productivity, McGraw-Hill, New York, 1986
  152. -    Capers Jones, Applied Software Measurement: Assuring Productivity and
  153.      Quality, McGraw-Hill, Inc., 1991, 494 pages ISBN 0-07-032813-7
  154.  
  155. The appendices of the latter give rules for counting procedural source code,
  156. as well as rules for counting function points and feature points.  The
  157. following study, cited in Boehm's _S_o_f_t_w_a_r_e _E_n_g_i_n_e_e_r_i_n_g _E_c_o_n_o_m_i_c_s, claims that
  158. anomalies that seriously "fool" the LOC metric show up rarely in real code.
  159. -    R. Nelson _S_o_f_t_w_a_r_e _D_a_t_e _C_o_l_l_e_c_t_i_o_n _a_n_d _A_n_a_l_y_s_i_s _a_t _R_A_D_C, Rome Air
  160.      Development Center, Rome, NY.  1978.
  161.  
  162.  
  163. ------------------------------------------------------------------------
  164. Subject: Should software professionals be licenced/certified?
  165. Date: 19 Sep 1991
  166.  
  167.  
  168. This is a very controversial and political question.  Generally, certification
  169. is something voluntary, while licencing is regulated by governments.
  170. Certification generally means some agency warrants you meet its standards;
  171. licencing generally means that to claim to practice a certain profession
  172. requires a government licence, often administered through a professional
  173. organization.  In theory both are supposed to help judge if someone is capable
  174. of doing certain jobs.
  175.  
  176. Licencing isn't currently required for computing professionals;  some people
  177. would like to see some jobs require it, as with established branches of
  178. engineering.  Others don't like government intervention, and/or believe many
  179. people who wouldn't get licenced are perfectly competent.
  180.  
  181. Computing professionals in the USA have had a certification program for years,
  182. administered by the Institute for Certification of Computer Professionals
  183. (708-299-4227), a meta-organization with representatives from ACM, IEEE-CS,
  184. ADAPSO, ICCA, IACE, AIM, DPMA, AISP, COMMON, ASM, CIPS, and AWC.  There are
  185. three certificates aimed at different broad types of practitioner, and many
  186. areas of specialization.  To keep a certificate requires at least 40 hours of
  187. continuing education each year; credit can also be obtained for self-study,
  188. teaching, publication, etc.
  189.  
  190.  
  191. ------------------------------------------------------------------------
  192. Subject: How do I get in touch with the SEI?
  193. Date: 10 Apr 1992
  194.  
  195.  
  196. The customer relations department of the Software Engineering Institute can be
  197. reached at:
  198.     internet:  customer-relations@sei.cmu.edu
  199.     Phone:  (412) 268-5800
  200. A subscriber service is available to U.S. mailing addresses. Subscribers
  201. receive the SEI quarterly newsletter, Bridge; invitations to SEI public
  202. events; and first notification of course offerings and new publications.  To
  203. become a subscriber, contact Customer Relations.
  204.  
  205. To order an SEI publication, contact NTIS, DTIC, or RAI directly:
  206.     National Technical Information Service (NTIS)
  207.     U.S. Department of Commerce
  208.     Sprinfield, VA 22161-2103
  209.     Telephone: (703) 487-4600
  210.  
  211.     Defense Technical Information Center (DTIC)
  212.     ATTN: FDRA Cameron Station
  213.     Alexandria, VA 22304-6145
  214.     Telephone: (703) 274-7633
  215.  
  216.     Research Access Inc. (RAI)
  217.     3400 Forbes Avenue
  218.     Suite 302
  219.     Pittsburgh, PA 15213
  220.     Telephone: (412) 682-6530
  221.     FAX: (412) 682-6530
  222. For general information about the SEI, contact George Heidekat
  223. (grh@sei.cmu.edu).
  224.  
  225.  
  226. ------------------------------------------------------------------------
  227. Subject: What is the SEI maturity model?
  228. Date: 31 Jan 1992
  229. Originally-From: mcp@sei.cmu.edu (Mark Paulk)
  230.  
  231.  
  232. (see also the archive file "maturity")
  233.  
  234. Maturity is not an easy concept to get down to a single paragraph, but
  235. consider this.
  236.  
  237. Premise:  The quality of a software system is largely governed by the quality
  238. of the process used to develop and maintain the software.  Basics:  The first
  239. step in improving the existing situation is to get management buy-in and
  240. management action to clean up the software management processes (walk the
  241. talk, as TQMers frequently say).  Integration:  The second step is to get
  242. everyone working together as a team.  Measurement:  The third step is to
  243. establish objective ways of understanding status and predict where things are
  244. going in your process.  Continuous improvement:  Understand that this is
  245. building a foundation for continually getting better.
  246.  
  247.  
  248. ------------------------------------------------------------------------
  249. Subject: Where can I get information on API?
  250. Date: 14 Feb 1992
  251.  
  252.  
  253.  
  254. API stands for Application Programming Interface.  For general information on
  255. API standards, you can look at NIST Spec. Pub.  500-187, "Application
  256. Portability Profile." (contact Barbara Blickenstaff, 301-975-2816). Many of
  257. the open systems APIs are being developed in the IEEE POSIX groups.  An
  258. article in the Dec. 1991 IEEE Spectrum describes these and related API
  259. standards. IEEE standards aren't distributed electronically, but both of the
  260. documents above tell how to obtain copies.
  261.  
  262.  
  263. ------------------------------------------------------------------------
  264. Subject: What's a 'bug'?
  265. Date: 12 May 1992
  266.  
  267.  
  268.  
  269. You can take your pick:
  270. (1)  Don't use "bug", use "fault" (an incorrect instruction or definition),
  271.      "failure" (an incorrect result), or "mistake" (a human action leading to
  272.      a failure).  Paraphrased from
  273.          IEEE Standard Computer Dictionary
  274.          Standard 610, ISBN 1-55937-079-3
  275.          Institute of Electrical and Electronic Engineers, Inc.
  276.          345 East 47th Street
  277.          New York, NY 10017-2394  USA
  278.          $49.50 (US$) for IEEE members
  279. (2)  Beizer, in a footnote on page 33 of the second edition of _S_o_f_t_w_a_r_e
  280.      _T_e_s_t_i_n_g _T_e_c_h_n_i_q_u_e_s says (paraphrased):
  281.          I'm sticking with "bug" because everyone  knows  what  it  means,
  282.          there  are  several  "standards"  for other terms that are incon-
  283.          sistent with each other, the OED says that the conventional  com-
  284.          puter  meaning  of  "bug" is ancient, and short Anglo-Saxon words
  285.          are preferable to long Norman ones.
  286.  
  287.  
  288. ------------------------------------------------------------------------
  289. Subject: Where can I get copies of standards??
  290. Date:  7 Jul 1992
  291.  
  292.  
  293.  
  294. ISO, ANSI, and IEEE standards are usually sold to raise some of the funds
  295. that the various national and international standards bodies (who usually
  296. own the copyright) need to keep afloat; thus they are not normally avail-
  297. able electronically.  Also, the organizations are concerned that electron-
  298. ic copies would make it too easy for people to disseminate doctored ver-
  299. sions of the standards.
  300.  
  301. ISO standards may be purchased from:
  302. In Canada:
  303.     Standards Council of Canada / Conseil canadien des normes
  304.     1200-45 O'Connor,
  305.     Ottawa K1P 6N7
  306.     Phone: (613) 238-3222
  307.     Fax:   (613) 995-4564
  308. On CD-ROM:
  309.     Omnicom, Inc.
  310.     115 Park St. SE
  311.     Vienna, VA 22180-4607
  312.     1-800-OMNICOM
  313.     Also available through the National Technical Information Service
  314.     (NTIS), 5284 Port Royal Rd., Springfield, VA 22161, (703)
  315.     487-4650.
  316.  
  317. There are some CCITT standards on-line, available via anonymous ftp from
  318. bruno.cs.colorado.edu or digital.resource.org (both have the Internet address
  319. 128.138.243.151), in subdirectories of /pub/standards/ccitt.
  320. -- 
  321. Software Technology Laboratory      dalamb@qucis.queensu.ca (David Alex Lamb)
  322. Computing and Information Science   phone: (613) 545-6067
  323. Queen's University, Kingston, Ontario, Canada K7L 3N6    
  324.