Software engineeringis anengineeringapproach tosoftware development.[1][2][3]A practitioner, called asoftware engineer,applies theengineering design processto developsoftware.
The termsprogrammerandcoderoverlapsoftware engineer,but they imply only the construction aspect of typical software engineer workload.[4]
A software engineer applies asoftware development process,[1][5]which involves defining,implementing,testing,managing,andmaintainingsoftware systems and, creating and modifying the development process.
History
editBeginning in the 1960s, software engineering was recognized as a separate field ofengineering.
The development of software engineering was seen as a struggle. Problems included software that was over budget, exceeded deadlines, required extensivedebuggingand maintenance, and unsuccessfully met the needs of consumers or was never even completed.
In 1968,NATOheld the first software engineering conference where issues related to software were addressed. Guidelines and best practices for the development of software were established.[6]
The origins of the termsoftware engineeringhave been attributed to various sources. The term appeared in a list of services offered by companies in the June 1965 issue of "Computers and Automation"[7]and was used more formally in the August 1966 issue ofCommunications of the ACM(Volume 9, number 8) in "President's Letter to the ACM Membership" by Anthony A. Oettinger.[8][9]It is also associated with the title of a NATO conference in 1968 by ProfessorFriedrich L. Bauer.[10]Margaret Hamiltondescribed the discipline of "software engineering" during the Apollo missions to give what they were doing legitimacy.[11]At the time there was perceived to be a "software crisis".[12][13][14]The 40th International Conference on Software Engineering (ICSE 2018) celebrates 50 years of "Software Engineering" with the Plenary Sessions' keynotes ofFrederick Brooks[15]andMargaret Hamilton.[16]
In 1984, theSoftware Engineering Institute(SEI) was established as a federally funded research and development center headquartered on the campus ofCarnegie Mellon UniversityinPittsburgh, Pennsylvania,United States.[17] Watts Humphreyfounded the SEI Software Process Program, aimed at understanding and managing the software engineering process.[17]The Process Maturity Levels introduced became theCapability Maturity Model Integrationfor Development (CMMI-DEV), which defined how the US Government evaluates the abilities of a software development team.
Modern, generally accepted best-practices for software engineering have been collected by theISO/IEC JTC 1/SC 7subcommittee and published as theSoftware Engineering Body of Knowledge(SWEBOK).[5]Software engineering is considered one of the majorcomputingdisciplines.[18]
Terminology
editDefinition
editNotable definitions of software engineering include:
- "The systematic application of scientific and technological knowledge, methods, and experience to the design, implementation, testing, and documentation of software." —The Bureau of Labor Statistics—IEEESystems and software engineering – Vocabulary[19]
- "The application of a systematic, disciplined, quantifiable approach to the development, operation, and maintenance of software." —IEEEStandard Glossary of Software Engineering Terminology[20]
- "An engineering discipline that is concerned with all aspects of software production." —Ian Sommerville[21]
- "The establishment and use of sound engineering principles in order to economically obtain software that is reliable and works efficiently on real machines." —Fritz Bauer[22]
- "A branch of computer science that deals with the design, implementation, and maintenance of complexcomputer programs."—Merriam-Webster[23]
- "'Software engineering' encompasses not just the act of writing code, but all of the tools and processes an organization uses to build and maintain that code over time. [...] Software engineering can be thought of as 'programming integrated over time.'"—Software Engineering atGoogle[24]
The term has also been used less formally:
- as the informal contemporary term for the broad range of activities that were formerly calledcomputer programmingandsystems analysis[25]
- as the broad term for all aspects of thepracticeof computer programming, as opposed to thetheoryof computer programming, which is formally studied as a sub-discipline ofcomputer science[26]
- as the term embodying theadvocacyof a specific approach to computer programming, one that urges that it be treated as anengineeringdiscipline rather than an art or a craft, and advocates thecodificationof recommended practices[27]
Etymology
editMargaret Hamiltonpromoted the term "software engineering" during her work on theApollo program.The term "engineering" was used to acknowledge that the work should be taken just as seriously as other contributions toward the advancement of technology. Hamilton details her use of the term:
When I first came up with the term, no one had heard of it before, at least in our world. It was an ongoing joke for a long time. They liked to kid me about my radical ideas. It was a memorable day when one of the most respected hardware gurus explained to everyone in a meeting that he agreed with me that the process of building software should also be considered an engineering discipline, just like with hardware. Not because of his acceptance of the new "term" per se, but because we had earned his and the acceptance of the others in the room as being in an engineering field in its own right.[28]
Suitability
editIndividual commentators have disagreed sharply on how to definesoftware engineeringor its legitimacy as an engineering discipline.David Parnashas said that software engineering is, in fact, a form of engineering.[29][30]Steve McConnellhas said that it is not, but that it should be.[31]Donald Knuthhas said that programming is an art and a science.[32]Edsger W. Dijkstraclaimed that the termssoftware engineeringandsoftware engineerhave been misused in the United States.[33]
Workload
editRequirements analysis
editRequirements engineeringis about elicitation, analysis, specification, and validation ofrequirementsforsoftware.Software requirements can befunctional,non-functionalor domain.
Functional requirements describe expected behaviors (i.e. outputs). Non-functional requirements specify issues like portability, security, maintainability, reliability, scalability, performance, reusability, and flexibility. They are classified into the following types: interface constraints, performance constraints (such as response time, security, storage space, etc.), operating constraints, life cycle constraints (maintainability, portability, etc.), and economic constraints. Knowledge of how the system or software works is needed when it comes to specifying non-functional requirements. Domain requirements have to do with the characteristic of a certain category or domain of projects.[34]
Design
editSoftware designis the process of making high-level plans for the software. Design is sometimes divided into levels:
- Interface designplans the interaction between a system and its environment as well as the inner workings of the system.
- Architectural designplans the major components of a system, including their responsibilities, properties, and interfaces between them.
- Detailed designplans internal elements, including their properties, relationships,algorithmsanddata structures.[35]
Construction
editSoftware construction typically involvesprogramming(a.k.a. coding),unit testing,integration testing,anddebuggingso as to implement the design.[1][5]“Software testing is related to, but different from,... debugging”.[5] Testing during this phase is generally performed by the programmer and with the purpose to verify that the code behaves as designed and to know when the code is ready for the next level of testing.[citation needed]
Testing
editSoftware testingis an empirical, technical investigation conducted to provide stakeholders with information about the quality of the software under test.[1][5]
When described separately from construction, testing typically is performed bytest engineersorquality assuranceinstead of the programmers who wrote it. It is performed at thesystem leveland is considered an aspect ofsoftware quality.
Program analysis
editProgram analysis is the process of analyzing computer programs with respect to an aspect such asperformance,robustness,andsecurity.
Maintenance
editSoftware maintenancerefers to supporting the software after release. It may include but is not limited to:error correction,optimization, deletion ofunusedand discarded features, and enhancement of existing features.[1][5]
Usually, maintenance takes up 40% to 80% of project cost.[36]
Education
editThe examples and perspective in this articlemay not represent aworldwide viewof the subject.(November 2010) |
Knowledge ofcomputer programmingis a prerequisite for becoming a software engineer. In 2004, theIEEE Computer Societyproduced theSWEBOK,which has been published as ISO/IEC Technical Report 1979:2005, describing the body of knowledge that they recommend to be mastered by a graduate software engineer with four years of experience.[37] Many software engineers enter the profession by obtaining a university degree or training at a vocational school. One standard international curriculum for undergraduate software engineering degrees was defined by the Joint Task Force on Computing Curricula of theIEEE Computer Societyand theAssociation for Computing Machinery,and updated in 2014.[18]A number of universities have Software Engineering degree programs; as of 2010[update],there were 244 CampusBachelor of Software Engineeringprograms, 70 Online programs, 230 Masters-level programs, 41 Doctorate-level programs, and 69 Certificate-level programs in the United States.
In addition to university education, many companies sponsor internships for students wishing to pursue careers in information technology. These internships can introduce the student to real-world tasks that typical software engineers encounter every day. Similar experience can be gained throughmilitary servicein software engineering.
Software engineering degree programs
editHalf of all practitioners today havedegreesincomputer science,information systems,orinformation technology.[citation needed]A small but growing number of practitioners have software engineering degrees. In 1987, theDepartment of ComputingatImperial College Londonintroduced the first three-year software engineeringbachelor's degreein the world; in the following year, theUniversity of Sheffieldestablished a similar program.[38]In 1996, theRochester Institute of Technologyestablished the first software engineering bachelor's degree program in the United States; however, it did not obtainABETaccreditation until 2003, the same year asRice University,Clarkson University,Milwaukee School of Engineering,andMississippi State University.[39]In 1997, PSG College of Technology in Coimbatore, India was the first to start a five-year integrated Master of Science degree in Software Engineering.[citation needed]
Since then, software engineering undergraduate degrees have been established at many universities. A standard international curriculum for undergraduate software engineering degrees,SE2004,was defined by a steering committee between 2001 and 2004 with funding from theAssociation for Computing Machineryand theIEEE Computer Society.As of 2004[update],about 50 universities in the U.S. offer software engineering degrees, which teach both computer science and engineering principles and practices. The first software engineeringmaster's degreewas established atSeattle Universityin 1979. Since then, graduate software engineering degrees have been made available from many more universities. Likewise in Canada, the Canadian Engineering Accreditation Board (CEAB) of theCanadian Council of Professional Engineershas recognized several software engineering programs.
In 1998, the USNaval Postgraduate School(NPS) established the firstdoctorateprogram in Software Engineering in the world.[citation needed]Additionally, many online advanced degrees in Software Engineering have appeared such as the Master of Science in Software Engineering (MSE) degree offered through the Computer Science and Engineering Department atCalifornia State University, Fullerton.Steve McConnellopines that because most universities teach computer science rather than software engineering, there is a shortage of true software engineers.[40]ETS(École de technologie supérieure) University andUQAM(Université du Québec à Montréal) were mandated by IEEE to develop the Software Engineering Body of Knowledge (SWEBOK), which has become an ISO standard describing the body of knowledge covered by a software engineer.[5]
Profession
editLegalrequirements for the licensing or certification of professional software engineers vary around the world. In the UK, there is no licensing or legal requirement to assume or use the job title Software Engineer. In some areas of Canada, such as Alberta, British Columbia, Ontario,[41]and Quebec, software engineers can hold the Professional Engineer (P.Eng) designation and/or the Information Systems Professional (I.S.P.) designation. In Europe, Software Engineers can obtain theEuropean Engineer(EUR ING) professional title. Software Engineers can also become professionally qualified as aChartered Engineerthrough theBritish Computer Society.
In the United States, theNCEESbegan offering aProfessional Engineerexam for Software Engineering in 2013, thereby allowing Software Engineers to be licensed and recognized.[42]NCEES ended the exam after April 2019 due to lack of participation.[43]Mandatory licensing is currently still largely debated, and perceived as controversial.[44][45]
TheIEEE Computer Societyand theACM,the two main US-based professional organizations of software engineering, publish guides to the profession of software engineering. The IEEE'sGuide to the Software Engineering Body of Knowledge – 2004 Version,orSWEBOK,defines the field and describes the knowledge the IEEE expects a practicing software engineer to have. The most current SWEBOK v3 is an updated version and was released in 2014.[5]The IEEE also promulgates a "Software Engineering Code of Ethics".[46]
Employment
editThe examples and perspective in this United Statesmay not represent aworldwide viewof the subject.(September 2021) |
There are an estimated 26.9 million professional software engineers in the world as of 2022, up from 21 million in 2016.[47][48]
Many software engineers work as employees or contractors. Software engineers work with businesses, government agencies (civilian or military), and non-profit organizations. Some software engineers work for themselves asfreelancers.Some organizations have specialists to perform each of the tasks in thesoftware development process.Other organizations require software engineers to do many or all of them. In large projects, people may specialize in only one role. In small projects, people may fill several or all roles at the same time. Many companies hireinterns,often university or college students during a summer break, orexternships.Specializations includeanalysts,architects,developers,testers,technical support,middleware analysts,project managers,software product managers,educators,andresearchers.
Most software engineers and programmers work 40 hours a week, but about 15 percent of software engineers and 11 percent of programmers worked more than 50 hours a week in 2008.[49]Potential injuries in these occupations are possible because like other workers who spend long periodssittingin front of a computer terminal typing at a keyboard, engineers and programmers are susceptible to eyestrain, back discomfort,Thrombosis,Obesity,and hand and wrist problems such ascarpal tunnel syndrome.[50]
United States
editTheU. S. Bureau of Labor Statistics(BLS) counted 1,365,500 software developers holding jobs in theU.S.in 2018.[51]Due to its relative newness as a field of study, formal education in software engineering is often taught as part of a computer science curriculum, and many software engineers hold computer science degrees.[52]The BLS estimates from 2023 to 2033 that computer software engineering would increase by 17%.[53]This is down from the 2022 to 2032 BLS estimate of 25% for software engineering.[53][54]And, is further down from their 30% 2010 to 2020 BLS estimate.[55]Due to this trend, job growth may not be as fast as during the last decade, as jobs that would have gone to computer software engineers in the United States would instead be outsourced to computer software engineers in countries such as India and other foreign countries.[56][49]In addition, the BLS Job Outlook for Computer Programmers, theU.S. Bureau of Labor Statistics(BLS) Occupational Outlook predicts a decline of -7 percent from 2016 to 2026, a further decline of -9 percent from 2019 to 2029, a decline of -10 percent from 2021 to 2031.[56]and then a decline of -11 percent from 2022 to 2032.[56]Since computer programming can be done from anywhere in the world, companies sometimes hire programmers in countries where wages are lower.[56][57][58]Furthermore, the ratio of women in many software fields has also been declining over the years as compared to other engineering fields.[59]Then there is the additional concern that recent advances inArtificial Intelligencemight impact the demand for future generations of Software Engineers.[60][61][62][63][64][65][66]However, this trend may change or slow in the future as many current software engineers in the U.S. market flee the profession orage outof the market in the next few decades.[56]
Certification
editTheSoftware Engineering Instituteoffers certifications on specific topics likesecurity,process improvement andsoftware architecture.[67]IBM,Microsoftand other companies also sponsor their own certification examinations. ManyITcertificationprograms are oriented toward specific technologies, and managed by the vendors of these technologies.[68]These certification programs are tailored to the institutions that would employ people who use these technologies.
Broader certification of general software engineering skills is available through various professional societies. As of 2006[update],theIEEEhad certified over 575 software professionals as aCertified Software Development Professional(CSDP).[69]In 2008 they added an entry-level certification known as the Certified Software Development Associate (CSDA).[70]TheACMhad a professional certification program in the early 1980s,[citation needed]which was discontinued due to lack of interest. The ACM and theIEEE Computer Societytogether examined the possibility of licensing of software engineers as Professional Engineers in the 1990s, but eventually decided that such licensing was inappropriate for the professional industrial practice of software engineering.[44]John C. Knight andNancy G. Levesonpresented a more balanced analysis of the licensing issue in 2002.[45]
In the U.K. theBritish Computer Societyhas developed a legally recognized professional certification calledChartered IT Professional (CITP),available to fully qualified members (MBCS). Software engineers may be eligible for membership of theBritish Computer SocietyorInstitution of Engineering and Technologyand so qualify to be considered forChartered Engineerstatus through either of those institutions. In Canada theCanadian Information Processing Societyhas developed a legally recognized professional certification calledInformation Systems Professional (ISP).[71]In Ontario, Canada, Software Engineers who graduate from aCanadian Engineering Accreditation Board (CEAB)accredited program, successfully complete PEO's (Professional Engineers Ontario) Professional Practice Examination (PPE) and have at least 48 months of acceptable engineering experience are eligible to be licensed through theProfessional Engineers Ontarioand can become Professional Engineers P.Eng.[72]The PEO does not recognize any online or distance education however; and does not consider Computer Science programs to be equivalent to software engineering programs despite the tremendous overlap between the two. This has sparked controversy and a certification war. It has also held the number of P.Eng holders for the profession exceptionally low. The vast majority of working professionals in the field hold a degree in CS, not SE. Given the difficult certification path for holders of non-SE degrees, most never bother to pursue the license.
Impact of globalization
editThe initial impact of outsourcing, and the relatively lower cost of international human resources in developing third world countries led to a massive migration of software development activities from corporations in North America and Europe to India and later: China, Russia, and other developing countries. This approach had some flaws, mainly the distance / time zone difference that prevented human interaction between clients and developers and the massive job transfer. This had a negative impact on many aspects of the software engineering profession. For example, some students in thedeveloped worldavoid education related to software engineering because of the fear ofoffshore outsourcing(importing software products or services from other countries) and of being displaced byforeign visa workers.[73]Although statistics do not currently show a threat to software engineering itself; a related career,computer programmingdoes appear to have been affected.[74]Nevertheless, the ability to smartly leverage offshore and near-shore resources via thefollow-the-sunworkflow has improved the overall operational capability of many organizations.[75]When North Americans leave work, Asians are just arriving to work. When Asians are leaving work, Europeans arrive to work. This provides a continuous ability to have human oversight on business-critical processes 24 hours per day, without paying overtime compensation or disrupting a key human resource, sleep patterns.
While global outsourcing has several advantages, global – and generally distributed – development can run into serious difficulties resulting from the distance between developers. This is due to the key elements of this type of distance that have been identified as geographical, temporal, cultural and communication (that includes the use of different languages and dialects of English in different locations).[76]Research has been carried out in the area of global software development over the last 15 years and an extensive body of relevant work published that highlights the benefits and problems associated with the complex activity. As with other aspects of software engineering research is ongoing in this and related areas.
Prizes
editThere are various prizes in the field of software engineering:
- ACM-AAAI Allen Newell Award- USA. Awarded to career contributions that have breadth within computer science, or that bridge computer science and other disciplines.
- BCS Lovelace Medal.Awarded to individuals who have made outstanding contributions to the understanding or advancement of computing.
- ACM SIGSOFTOutstanding Research Award, selected for individual(s) who have made “significantandlastingresearchcontributions to thetheoryorpracticeof software engineering.”[77]
- MoreACM SIGSOFTAwards.[78]
- TheCodie award,a yearly award issued by the Software and Information Industry Association for excellence in software development within the software industry.
- Harlan Mills Awardfor "contributions to the theory and practice of the information sciences, focused on software engineering".
- ICSE Most Influential Paper Award.[79]
- Jolt Award,also for the software industry.
- Stevens Awardgiven in memory of Wayne Stevens.
Criticism
editSome call for licensing, certification and codified bodies of knowledge as mechanisms for spreading the engineering knowledge and maturing the field.[80]
Some claim that the concept of software engineering is so new that it is rarely understood, and it is widely misinterpreted, including in software engineering textbooks, papers, and among the communities of programmers and crafters.[81]
Some claim that a core issue with software engineering is that its approaches are not empirical enough because a real-world validation of approaches is usually absent, or very limited and hence software engineering is often misinterpreted as feasible only in a "theoretical environment."[81]
Edsger Dijkstra,a founder of many of the concepts in software development today, rejected the idea of "software engineering" up until his death in 2002, arguing that those terms were poor analogies for what he called the "radical novelty" ofcomputer science:
A number of these phenomena have been bundled under the name "Software Engineering". As economics is known as "The Miserable Science", software engineering should be known as "The Doomed Discipline", doomed because it cannot even approach its goal since its goal is self-contradictory. Software engineering, of course, presents itself as another worthy cause, but that is eyewash: if you carefully read its literature and analyse what its devotees actually do, you will discover that software engineering has accepted as its charter "How to program if you cannot."[82]
See also
editStudy and practice
editRoles
editProfessional aspects
edit- Bachelor of Science in Information Technology
- Bachelor of Software Engineering
- List of software engineering conferences
- List of computer science journals(including software engineering journals)
- Software Engineering Institute
References
editCitations
edit- ^abcdeAbran et al. 2004
- ^ACM (2007)."Computing Degrees & Careers".ACM.Retrieved2010-11-23.
- ^Laplante, Phillip (2007).What Every Engineer Should Know about Software Engineering.Boca Raton: CRC.ISBN978-0-8493-7228-5.Retrieved2011-01-21.
- ^Bogost, Ian (5 November 2015)."Programmers: Stop Calling Yourselves Engineers".The Atlantic.
- ^abcdefghBourque, Pierre; Fairley, Richard E. (Dick), eds. (2014).Guide to the Software Engineering Body of Knowledge Version 3.0 (SWEBOK).IEEE Computer Society.
- ^"The history of coding and software engineering".www.hackreactor.com.Retrieved2021-05-06.
- ^"Computers and Automation: The Computer Directory and Buyers' Guide, 1965"(PDF).bitsavers.org.Retrieved15 July2023.
- ^Oettinger, A. G. (1966)."President's Letter to the ACM Membership".Commun. ACM.9(8). Association for Computing Machinery: 545–546.doi:10.1145/365758.3291288.ISSN0001-0782.S2CID53432801.
- ^"The origin of" software engineering "".4 April 2013.Retrieved17 November2017.
- ^Randall, Brian."The 1968/69 NATO Software Engineering Reports".Retrieved17 November2017.
- ^Lori Cameron (October 5, 2008)."Margaret Hamilton: First Software Engineer".Tech News.IEEE Computer Society.
- ^Ian Sommerville (March 24, 2015).Software Engineering(10th ed.). Pearson Education Limited.ISBN978-0-13-394303-0.
- ^Peter, Naur;Randell, Brian(7–11 October 1968).Software Engineering: Report of a conference sponsored by the NATO Science Committee(PDF).Garmisch, Germany: Scientific Affairs Division, NATO.Retrieved2008-12-26.
- ^Randell, Brian(10 August 2001)."The 1968/69 NATO Software Engineering Reports".Brian Randell's University Homepage.The School of the Computer Sciences, Newcastle University.Retrieved2008-10-11.
The idea for the first NATO Software Engineering Conference, and in particular that of adopting the then practically unknown term "software engineering" as its (deliberately provocative) title, I believe came originally from ProfessorFritz Bauer.
- ^2018 International Conference on Software Engineering celebrating its 40th anniversary, and 50 years of Software engineering (31 May 2018)."ICSE 2018 – Plenary Sessions – Fred Brooks".YouTube.Retrieved9 August2018.
{{cite web}}
:CS1 maint: numeric names: authors list (link) - ^2018 International Conference on Software Engineering celebrating its 40th anniversary, and 50 years of Software engineering (31 May 2018)."ICSE 2018 – Plenary Sessions – Margaret Hamilton".YouTube.Retrieved9 August2018.
{{cite web}}
:CS1 maint: numeric names: authors list (link) - ^abLinda Hutz Pesante (January 1, 2003). Anthony Ralston; Edwin D. Reilly (eds.)."Software engineering institute (SEI)".Encyclopedia of Computer Science.Chichester,West Sussex, UK:John Wiley and Sons Ltd.:1611–1613.ISBN978-0-470-86412-8.
(1) The institute was competitively awarded toCarnegie Mellonin December 1984 by theUS Department of Defense(DoD) to improve the state of the practice of software engineering.... (2) the SEI moves mature solutions of proven value into widespread use; examples include theCapability Maturity Model(CMM)...
- ^abJoint Task Force on Computing Curricula,IEEE Computer Society,Association for Computing Machinery(23 February 2015).Software Engineering 2014: Curriculum Guidelines for Undergraduate Degree Programs in Software Engineering(PDF).A Volume of the Computing Curricula Series.IEEE Computer SocietyandAssociation for Computing Machinery.
{{cite book}}
:CS1 maint: multiple names: authors list (link) - ^Systems and software engineering – Vocabulary,ISO/IEC/IEEEstd 24765:2010(E), 2010.
- ^IEEE Standard Glossary of Software Engineering Terminology,IEEEstd 610.12-1990, 1990.
- ^Sommerville, Ian(2007) [1982]."1.1.2 What is software engineering?".Software Engineering(8th ed.). Harlow, England: Pearson Education. p. 7.ISBN978-0-321-31379-9.
Software engineering is an engineering discipline that is concerned with all aspects of software production from the early stages of system specification to maintaining the system after it has gone into use. In this definition, there are two key phrases:
1.Engineering disciplineEngineers make things work. They apply theories, methods and tools where these are appropriate [...] Engineers also recognize that they must work to organizational and financial constraints. [...]
2.All aspects of software productionSoftware engineering is not just concerned with the technical processes of software development but also with activities such as software project management and with the development of tools, methods and theories to support software production. - ^"Software Engineering".Information Processing.71:530–538.
- ^"Definition of SOFTWARE ENGINEERING".www.merriam-webster.com.Retrieved2019-11-25.
- ^Winters, Titus; Manshrec, Tom; Wright, Hyrum (2020). "Preface, Programming Over Time".Software Engineering at Google.O'Reilly Media, Inc. pp. xix–xx, 6–7.ISBN978-1-492-08279-8.
We propose that "software engineering" encompasses not just the act of writing code, but all of the tools and processes an organization uses to build and maintain that code over time. What practices can a software organization introduce that will best keep its code valuable over the long term? How can engineers make a codebase more sustainable and the software engineering discipline itself more rigorous?
- ^Akram I. Salah (2002-04-05)."Engineering an Academic Program in Software Engineering"(PDF).35th Annual Midwest Instruction and Computing Symposium.Retrieved2006-09-13.:"For some, software engineering is just a glorified name for programming. If you are a programmer, you might put 'software engineer' on your business card—never 'programmer' though."
- ^Mills, Harlan D., J. R. Newman, and C. B. Engle, Jr., "An Undergraduate Curriculum in Software Engineering," inDeimel, Lionel E. (1990).Software Engineering Education: SEI Conference 1990, Pittsburgh, Pennsylvania, USA, April 2–3,...Springer.ISBN978-0-387-97274-9.,p. 26:"As a practical matter, we regard software engineering as the necessary preparation for the practicing, software development and maintenance professional. The Computer Scientist is preparing for further theoretical studies..."
- ^Barbara Kitchevnham; David Budgen; Pearl Brereton; Stephen Linkman (2005). "Realising evidence-based software engineering".ACM SIGSOFT Software Engineering Notes.30(4): 1–3.doi:10.1145/1082983.1083175.
We believe that software engineering can only advance as an engineering discipline by moving away from its current dependence upon advocacy and analysis,...
- ^Lawrence, Snyder (2017).Fluency with information technology: skills, concepts, & capabilities([Seventh edition] ed.). NY, NY.ISBN978-0134448725.OCLC960641978.
{{cite book}}
:CS1 maint: location missing publisher (link) - ^Parnas, David L.(1998)."Software Engineering Programmes are not Computer Science Programmes".Annals of Software Engineering.6:19–37.doi:10.1023/A:1018949113292.S2CID35786237.,p. 19: "Rather than treat software engineering as a subfield of computer science, I treat it as an element of the set, {Civil Engineering, Mechanical Engineering, Chemical Engineering, Electrical Engineering,....}."
- ^Parnas, David L. (1998)."Software Engineering Programmes are not Computer Science Programmes".Annals of Software Engineering.6:19–37.doi:10.1023/A:1018949113292.S2CID35786237.,p. 20: "This paper argues that the introduction of accredited professional programs in software engineering, programmes that are modelled on programmes in traditional engineering disciplines will help to increase both the quality and quantity of graduates who are well prepared, by their education, to develop trustworthy software products."
- ^McConnell, Steve(August 2003).Professional Software Development: Shorter Schedules, Better Projects, Superior Products, Enhanced Careers.Boston, MA: Addison-Wesley.ISBN0-321-19367-9.,p. 39: "In my opinion, the answer to that question is clear: Professional software development should be engineering. Is it? No. But should it be? Unquestionably, yes."
- ^Knuth, Donald(1974)."Computer Programming as an Art"(PDF).Communications of the ACM.17(12): 667–673.doi:10.1145/361604.361612.S2CID207685720.Transcript of the 1974Turing Awardlecture.
- ^Dijkstra, Edsger W;transcribed by Mario Béland (November 23, 2004) [First published December 3, 1993]."There is still a war going on (manuscript Austin, 3 December 1993)".E. W. Dijkstra Archive.The University of Texas at Austin, Department of Computer Sciences.RetrievedFebruary 17,2007.
When the term was coined in 1968 by F.L. Bauer of the Technological University of Munich, I welcomed it. [...] I interpreted the introduction of the term "software engineering" as an apt reflection of the fact that the design of software systems was an activity par excellence for the mathematical engineer. [...]. As soon the term arrived in the USA, it was relieved of all its technical content. It had to be so for in its original meaning it was totally unacceptable [...] In the meantime, software engineering has become an almost empty term, as was nicely demonstrated by Data General who overnight promoted all its programmers to the exalted rank of "software engineer"!
- ^"Software Engineering | Classification of Software Requirements".GeeksforGeeks.2018-06-19.Retrieved2021-05-06.
- ^"Software Engineering | Software Design Process".GeeksforGeeks.2019-05-24.Retrieved2021-05-06.
- ^"What is Software Maintenance? Definition of Software Maintenance, Software Maintenance Meaning".The Economic Times.Retrieved2021-05-06.
- ^Alain Abran; James W. Moore; Pierre Bourque; Robert Dupuis; Leonard L. Tripp, eds. (2005) [2004]."Chapter 1: Introduction to the Guide".Guide to the Software Engineering Body of Knowledge.IEEE Computer Society.Archived fromthe originalon 2016-05-09.Retrieved2010-09-13.
The total volume of cited literature is intended to be suitable for mastery through the completion of an undergraduate education plus four years of experience.
- ^Cowling, A. J. 1999. The first decade of an undergraduate degree program in software engineering. Ann. Softw. Eng. 6, 1–4 (Apr. 1999), 61–90.
- ^"ABET Accredited Engineering Programs".April 3, 2007. Archived fromthe originalon June 19, 2010.RetrievedApril 3,2007.
- ^McConnell, Steve (July 10, 2003).Professional Software Development: Shorter Schedules, Higher Quality Products, More Successful Projects, Enhanced Careers.ISBN978-0-321-19367-4.
- ^Williams, N.S.W. (19–21 February 2001). "Professional Engineers Ontario's approach to licensing software engineering practitioners".Software Engineering Education and Training, 2001 Proceedings. 14th Conference on.Charlotte, NC:IEEE.pp. 77–78.
- ^"NCEES Software Engineering Exam Specifications"(PDF).Archived fromthe original(PDF)on 2013-08-27.Retrieved2012-04-01.
- ^"NCEES discontinuing PE Software Engineering exam".National Council of Examiners for Engineering and Surveying. 13 March 2018.Retrieved6 August2018.
- ^abBarbara Simons."Past ACM Presidents Reflect on Their Service to ACM".Celebrating 75 Years of Advancing Computing as a Science & Profession.Association for Computing Machinery.RetrievedMay 18,2024.
After the panels' recommendations were submitted, ACM Council concluded that the framework of a licensed professional engineer, originally developed for civil engineers, does not match the professional industrial practice of software engineering and would preclude many of the most qualified software engineers from becoming licensed.
- ^ab John C. Knight; Nancy G. Leveson (November 1, 2002). "Should software engineers be licensed?".Communications of the ACM.45(11): 87–90.doi:10.1145/581571.581601.
- ^"Software Engineering Code of Ethics"(PDF).Retrieved2012-03-25.
- ^Labs, Qubit (29 November 2022)."How Many Programmers are there in the World and in the US? [2023]".Qubit Labs.Retrieved7 February2023.
- ^"Global Developer Population and Demographic Study 2016 V2".Evans Data Corporation.Retrieved19 January2017.
- ^abRosenthal, Rachel (August 4, 2020)."Tech Companies Want You to Believe America Has a Skills Gap".Bloomberg.RetrievedOctober 8,2021.
- ^"Computer Software Engineers and Computer Programmers".Retrieved2009-12-17.
- ^"Software Developers".Occupational Outlook Handbook.U. S. Bureau of labor Statistics. 4 September 2019.Retrieved11 December2019.
- ^"Computing Disciplines and Majors"(PDF).Association for Computing Machinery.Retrieved6 September2019.
- ^ab"Software Developers: Occupational Outlook Handbook".U.S. Bureau of Labor Statistics.
- ^"Computer Software Engineer".Bureau of Labor Statistics. March 19, 2010. Archived fromthe originalon July 26, 2013.RetrievedJuly 20,2012.
- ^"Software Developers".Bureau of Labor Statistics. January 8, 2014.RetrievedJuly 21,2012.
- ^abcde"Computer Programmers: Occupational Outlook Handbook:: U.S. Bureau of Labor Statistics".Archivedfrom the original on 3 May 2019.Retrieved17 January2017.
- ^"Archive By Publication: Beyond the Numbers: U.S. Bureau of Labor Statistics".www.bls.gov.
- ^"The Soon-to-Be-Extinct Embedded Software Engineer".designnews.com.May 10, 2018.
- ^"hp's Developer Portal | HP International Women's Week: Women in Computer Science dropping since 1980s".developers.hp.com.
- ^"Software engineer jobs in danger due to ChatGPT-like tools? Here's what Google CEO Sundar Pichai has to say".Business Today.2023-04-06.Retrieved2023-05-12.
- ^"ChatGPT could make these jobs obsolete".2023-01-25.Retrieved2023-05-12.
- ^Kay, Grace."Software engineers are panicking about being replaced by AI".Business Insider.Retrieved2023-05-12.
- ^Fowler, Gary."Council Post: How Will ChatGPT Affect Jobs?".Forbes.Retrieved2023-05-12.
- ^Ito, Aki."ChatGPT spells the end of coding as we know it".Business Insider.Retrieved2023-05-12.
- ^Zinkula, Aaron Mok, Jacob."ChatGPT may be coming for our jobs. Here are the 10 roles that AI is most likely to replace".Business Insider.Retrieved2023-05-12.
{{cite web}}
:CS1 maint: multiple names: authors list (link) - ^Cohen, Mikaela (15 April 2023)."These are the tech jobs most threatened by ChatGPT and A.I."CNBC.Retrieved2023-05-12.
- ^"SEI certification page".Sei.cmu.edu.Retrieved2012-03-25.
- ^Wyrostek, Warren (March 14, 2008)."The Top 10 Problems with IT Certification in 2008".InformIT.Retrieved2009-03-03.
- ^IEEE Computer Society."2006 IEEE computer society report to the IFIP General Assembly"(PDF).Retrieved2007-04-10.
- ^IEEE."CSDA".Retrieved2010-04-20.
- ^Canadian Information Processing Society."I.S.P. Designation".Retrieved2007-03-15.
- ^"Professional Engineers Ontario: Welcome to PEO's website".Peo.on.ca.Retrieved2012-03-25.
- ^Thibodaux, Patrick (2006-05-05)."As outsourcing gathers steam, computer science interest wanes".Computerworld.com.Retrieved2016-12-06.
- ^Robert Mullins (March 13, 2007)."Software developer growth slows in North America: Study shows Asia will lead in software developer jobs by 2010".InfoWorld.Software Development.
- ^"Gartner Magic Quadrant"(PDF).Cognizant.com.Retrieved2012-03-25.
- ^Casey, Valentine (2010-08-20)."Virtual software team project management".Journal of the Brazilian Computer Society.16(2): 83–96.doi:10.1007/s13173-010-0013-3.S2CID14383734.
- ^"Outstanding Research Award".SIGSOFT.Retrieved1 April2024.
- ^David Lo (SIGSOFTAwards Chair); Thomas Zimmermann (SIGSOFTChair) (17 January 2024)."SIGSOFT Awards 2024".ACM SIGSOFTBlog.Retrieved1 April2024.
- ^"ICSE Most Influential Paper Award".ACM SIGSOFT.
- ^Donald J. Bagert (April 1999). "Viewpoint: taking the lead in licensing software engineers".Communications of the ACM.42(4): 27–29.doi:10.1145/299157.299163.
- ^abBarry Boehm(September–October 2002). "Software engineering is a value-based contact sport".IEEE Software.19(5): 95–96.doi:10.1109/MS.2002.1032863.
- ^Dijkstra, E. W.(1988)."On the cruelty of really teaching computing science".Retrieved2014-01-10.
Sources
edit- Pierre Bourque; Richard E. (Dick) Fairley, eds. (2014).Guide to the Software Engineering Body of Knowledge Version 3.0 (SWEBOK).IEEE Computer Society.
- Alain Abran; James W. Moore; Pierre Bourque; Robert Dupuis; Leonard L. Tripp, eds. (2004).Guide to the Software Engineering Body of Knowledge.IEEE Computer Society.Archived fromthe originalon 2016-05-09.Retrieved2010-09-13.
- Ian Sommerville (March 24, 2015).Software Engineering(10th ed.). Pearson Education Limited.ISBN978-0-13-394303-0.
Further reading
edit- Pierre Bourque; Richard E. (Dick) Fairley, eds. (2014).Guide to the Software Engineering Body of Knowledge Version 3.0 (SWEBOK).IEEE Computer Society.
- Roger S. Pressman; Bruce Maxim (January 23, 2014).Software Engineering: A Practitioner's Approach(8th ed.). McGraw-Hill.ISBN978-0-07-802212-8.
- Ian Sommerville (March 24, 2015).Software Engineering(10th ed.). Pearson Education Limited.ISBN978-0-13-394303-0.
- Jalote, Pankaj(2005) [1991].An Integrated Approach to Software Engineering(3rd ed.). Springer.ISBN978-0-387-20881-7.
- Bruegge, Bernd;Dutoit, Allen (2009).Object-oriented software engineering: using UML, patterns, and Java(3rd ed.). Prentice Hall.ISBN978-0-13-606125-0.
- Oshana, Robert (2019-06-21).Software engineering for embedded systems: methods, practical techniques, and applications(Second ed.). Kidlington, Oxford, United Kingdom.ISBN978-0-12-809433-4.
External links
edit- Pierre Bourque; Richard E. Fairley, eds. (2004).Guide to the Software Engineering Body of Knowledge Version 3.0 (SWEBOK),https://www.computer.org/web/swebok/v3.IEEE Computer Society.
- The Open Systems Engineering and Software Development Life Cycle FrameworkArchived2010-07-18 at theWayback MachineOpenSDLC.org the integrated Creative Commons SDLC
- Software Engineering InstituteCarnegie Mellon