home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / software / 5452 < prev    next >
Encoding:
Internet Message Format  |  1993-01-27  |  13.5 KB

  1. Xref: sparky comp.software-eng:5452 comp.answers:22 news.answers:5472
  2. Path: sparky!uunet!news.mentorg.com!sdl!plts!s4mjs!bobsbox.rent.com!rutgers!uwm.edu!spool.mu.edu!howland.reston.ans.net!usc!cs.utexas.edu!torn!news.ccs.queensu.ca!qucis.queensu.ca!qucis.queensu.ca!dalamb
  3. From: dalamb@qucis.queensu.ca (David Alex Lamb)
  4. Newsgroups: comp.software-eng,comp.answers,news.answers
  5. Subject: FAQ 1: comp.software-eng questions and answers
  6. Keywords: FAQ
  7. Message-ID: <questmsg_728067750@qucis.QueensU.CA>
  8. Date: 26 Jan 93 17:02:38 GMT
  9. Expires: Thu, 11 Mar 1993 17:02:30 GMT
  10. References: <faqmsg_728067750@qucis.QueensU.CA>
  11. Sender: dalamb@qucis.queensu.ca (David Lamb)
  12. Reply-To: dalamb@qucis.queensu.ca (David Alex Lamb)
  13. Followup-To: comp.software-eng
  14. Organization: Computing and Information Science, Queen's University at Kingston, Ontario,  K7L 3N6, Canada
  15. Lines: 307
  16. Approved: news-answers-request@MIT.Edu
  17. Supersedes: <questmsg_728053506@qucis.QueensU.CA>
  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: 26 Jan 1993
  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).  It is
  150. easy to cook up anomalies where LOC gives different numbers for code written
  151. in different styles, but pathological cases should get caught in code
  152. inspections.  References:
  153. -    T. Capers Jones, Programming Productivity, McGraw-Hill, New York, 1986
  154. -    Capers Jones, Applied Software Measurement: Assuring Productivity and
  155.      Quality, McGraw-Hill, Inc., 1991, 494 pages ISBN 0-07-032813-7
  156.  
  157. The appendices of the latter give rules for counting procedural source code,
  158. as well as rules for counting function points and feature points.  The
  159. 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
  160. anomalies that seriously "fool" the LOC metric show up rarely in real code.
  161. -    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
  162.      Development Center, Rome, NY.  1978.
  163.  
  164.  
  165. ------------------------------------------------------------------------
  166. Subject: Should software professionals be licenced/certified?
  167. Date: 19 Sep 1991
  168.  
  169.  
  170. This is a very controversial and political question.  Generally, certification
  171. is something voluntary, while licencing is regulated by governments.
  172. Certification generally means some agency warrants you meet its standards;
  173. licencing generally means that to claim to practice a certain profession
  174. requires a government licence, often administered through a professional
  175. organization.  In theory both are supposed to help judge if someone is capable
  176. of doing certain jobs.
  177.  
  178. Licencing isn't currently required for computing professionals;  some people
  179. would like to see some jobs require it, as with established branches of
  180. engineering.  Others don't like government intervention, and/or believe many
  181. people who wouldn't get licenced are perfectly competent.
  182.  
  183. Computing professionals in the USA have had a certification program for years,
  184. administered by the Institute for Certification of Computer Professionals
  185. (708-299-4227), a meta-organization with representatives from ACM, IEEE-CS,
  186. ADAPSO, ICCA, IACE, AIM, DPMA, AISP, COMMON, ASM, CIPS, and AWC.  There are
  187. three certificates aimed at different broad types of practitioner, and many
  188. areas of specialization.  To keep a certificate requires at least 40 hours of
  189. continuing education each year; credit can also be obtained for self-study,
  190. teaching, publication, etc.
  191.  
  192.  
  193. ------------------------------------------------------------------------
  194. Subject: How do I get in touch with the SEI?
  195. Date: 10 Apr 1992
  196.  
  197.  
  198. The customer relations department of the Software Engineering Institute can be
  199. reached at:
  200.     internet:  customer-relations@sei.cmu.edu
  201.     Phone:  (412) 268-5800
  202. A subscriber service is available to U.S. mailing addresses. Subscribers
  203. receive the SEI quarterly newsletter, Bridge; invitations to SEI public
  204. events; and first notification of course offerings and new publications.  To
  205. become a subscriber, contact Customer Relations.
  206.  
  207. To order an SEI publication, contact NTIS, DTIC, or RAI directly:
  208.     National Technical Information Service (NTIS)
  209.     U.S. Department of Commerce
  210.     Sprinfield, VA 22161-2103
  211.     Telephone: (703) 487-4600
  212.  
  213.     Defense Technical Information Center (DTIC)
  214.     ATTN: FDRA Cameron Station
  215.     Alexandria, VA 22304-6145
  216.     Telephone: (703) 274-7633
  217.  
  218.     Research Access Inc. (RAI)
  219.     3400 Forbes Avenue
  220.     Suite 302
  221.     Pittsburgh, PA 15213
  222.     Telephone: (412) 682-6530
  223.     FAX: (412) 682-6530
  224. For general information about the SEI, contact George Heidekat
  225. (grh@sei.cmu.edu).
  226.  
  227.  
  228. ------------------------------------------------------------------------
  229. Subject: What is the SEI maturity model?
  230. Date: 31 Jan 1992
  231. Originally-From: mcp@sei.cmu.edu (Mark Paulk)
  232.  
  233.  
  234. (see also the archive file "maturity")
  235.  
  236. Maturity is not an easy concept to get down to a single paragraph, but
  237. consider this.
  238.  
  239. Premise:  The quality of a software system is largely governed by the quality
  240. of the process used to develop and maintain the software.  Basics:  The first
  241. step in improving the existing situation is to get management buy-in and
  242. management action to clean up the software management processes (walk the
  243. talk, as TQMers frequently say).  Integration:  The second step is to get
  244. everyone working together as a team.  Measurement:  The third step is to
  245. establish objective ways of understanding status and predict where things are
  246. going in your process.  Continuous improvement:  Understand that this is
  247. building a foundation for continually getting better.
  248.  
  249.  
  250. ------------------------------------------------------------------------
  251. Subject: Where can I get information on API?
  252. Date: 14 Feb 1992
  253.  
  254.  
  255.  
  256. API stands for Application Programming Interface.  For general information on
  257. API standards, you can look at NIST Spec. Pub.  500-187, "Application
  258. Portability Profile." (contact Barbara Blickenstaff, 301-975-2816). Many of
  259. the open systems APIs are being developed in the IEEE POSIX groups.  An
  260. article in the Dec. 1991 IEEE Spectrum describes these and related API
  261. standards. IEEE standards aren't distributed electronically, but both of the
  262. documents above tell how to obtain copies.
  263.  
  264.  
  265. ------------------------------------------------------------------------
  266. Subject: What's a 'bug'?
  267. Date: 12 May 1992
  268.  
  269.  
  270.  
  271. You can take your pick:
  272. (1)  Don't use "bug", use "fault" (an incorrect instruction or definition),
  273.      "failure" (an incorrect result), or "mistake" (a human action leading to
  274.      a failure).  Paraphrased from
  275.          IEEE Standard Computer Dictionary
  276.          Standard 610, ISBN 1-55937-079-3
  277.          Institute of Electrical and Electronic Engineers, Inc.
  278.          345 East 47th Street
  279.          New York, NY 10017-2394  USA
  280.          $49.50 (US$) for IEEE members
  281. (2)  Beizer, in a footnote on page 33 of the second edition of _S_o_f_t_w_a_r_e
  282.      _T_e_s_t_i_n_g _T_e_c_h_n_i_q_u_e_s says (paraphrased):
  283.          I'm sticking with "bug" because everyone  knows  what  it  means,
  284.          there  are  several  "standards"  for other terms that are incon-
  285.          sistent with each other, the OED says that the conventional  com-
  286.          puter  meaning  of  "bug" is ancient, and short Anglo-Saxon words
  287.          are preferable to long Norman ones.
  288.  
  289.  
  290. ------------------------------------------------------------------------
  291. Subject: Where can I get copies of standards??
  292. Date: 26 Jan 1993
  293.  
  294.  
  295.  
  296. ISO, ANSI, and IEEE standards are usually sold to raise some of the funds
  297. that the various national and international standards bodies (who usually
  298. own the copyright) need to keep afloat; thus they are not normally avail-
  299. able electronically.  Also, the organizations are concerned that electron-
  300. ic copies would make it too easy for people to disseminate doctored ver-
  301. sions of the standards.
  302.  
  303. ISO standards may be purchased from:
  304. In Canada:
  305.     Standards Council of Canada / Conseil canadien des normes
  306.     1200-45 O'Connor,
  307.     Ottawa K1P 6N7
  308.     Phone: (613) 238-3222
  309.     Fax:   (613) 995-4564
  310. On CD-ROM:
  311.     Omnicom, Inc.
  312.     115 Park St. SE
  313.     Vienna, VA 22180-4607
  314.     1-800-OMNICOM
  315.     Also available through the National Technical Information Service
  316.     (NTIS), 5284 Port Royal Rd., Springfield, VA 22161, (703)
  317.     487-4650.
  318.  
  319. There were once some CCITT standards on-line at the University of Colorado,
  320. but the arrangement to make them available via the Internet was terminated at
  321. the end of 1991.
  322. -- 
  323. Software Technology Laboratory      dalamb@qucis.queensu.ca (David Alex Lamb)
  324. Computing and Information Science   phone: (613) 545-6067
  325. Queen's University, Kingston, Ontario, Canada K7L 3N6    
  326.