The history of software is closely tied to the development of digital computers in the mid-20th century. Early programs were written in the machine language specific to the hardware. The introduction of high-level programming languages in 1958 allowed for more human-readable instructions, making software development easier and more portable across different computer architectures. Software in a programming language is run through a compiler or interpreter to execute on the architecture's hardware. Over time, software has become complex, owing to developments in networking, operating systems, and databases.
Software can generally be categorized into two main types:
operating systems, which manage hardware resources and provide services for applications
The process of developing software involves several stages. The stages include software design, programming, testing, release, and maintenance. Software quality assurance and security are critical aspects of software development, as bugs and security vulnerabilities can lead to system failures and security breaches. Additionally, legal issues such as software licenses and intellectual property rights play a significant role in the distribution of software products.
The first use of the word software is credited to mathematician John Wilder Tukey in 1958.[3]
The first programmable computers, which appeared at the end of the 1940s,[4] were programmed in machine language. Machine language is difficult to debug and not portable across different computers.[5] Initially, hardware resources were more expensive than human resources.[6] As programs became complex, programmer productivity became the bottleneck. The introduction of high-level programming languages in 1958 hid the details of the hardware and expressed the underlying algorithms into the code .[7][8] Early languages include Fortran, Lisp, and COBOL.[8]
Allocating resources between different applications, deciding when they will receive central processing unit (CPU) time or space in memory.[10]
Providing an interface that abstracts the details of accessing hardware details (like physical memory) to make things easier for programmers.[10][11]
Offering common services, such as an interface for accessing network and disk devices. This enables an application to be run on different hardware without needing to be rewritten.[12]
Application software runs on top of the operating system and uses the computer's resources to perform a task.[13] There are many different types of application software because the range of tasks that can be performed with modern computers is so large.[14] Applications account for most software[15] and require the environment provided by an operating system, and often other applications, in order to function.[16]
Software can also be categorized by how it is deployed. Traditional applications are purchased with a perpetual license for a specific version of the software, downloaded, and run on hardware belonging to the purchaser.[17] The rise of the Internet and cloud computing enabled a new model, software as a service (SaaS),[18] in which the provider hosts the software (usually built on top of rented infrastructure or platforms)[19] and provides the use of the software to customers, often in exchange for a subscription fee.[17] By 2023, SaaS products—which are usually delivered via a web application—had become the primary method that companies deliver applications.[20]
Software development and maintenance
Software companies aim to deliver a high-quality product on time and under budget. A challenge is that software development effort estimation is often inaccurate.[21]Software development begins by conceiving the project, evaluating its feasibility, analyzing the business requirements, and making a software design.[22][23] Most software projects speed up their development by reusing or incorporating existing software, either in the form of commercial off-the-shelf (COTS) or open-source software.[24][25]Software quality assurance is typically a combination of manual code review by other engineers[26] and automated software testing. Due to time constraints, testing cannot cover all aspects of the software's intended functionality, so developers often focus on the most critical functionality.[27]Formal methods are used in some safety-critical systems to prove the correctness of code,[28] while user acceptance testing helps to ensure that the product meets customer expectations.[29] There are a variety of software development methodologies, which vary from completing all steps in order to concurrent and iterative models.[30] Software development is driven by requirements taken from prospective users, as opposed to maintenance, which is driven by events such as a change request.[31]
Frequently, software is released in an incomplete state when the development team runs out of time or funding.[32] Despite testing and quality assurance, virtually all software contains bugs where the system does not work as intended. Post-release software maintenance is necessary to remediate these bugs when they are found and keep the software working as the environment changes over time.[33] New features are often added after the release. Over time, the level of maintenance becomes increasingly restricted before being cut off entirely when the product is withdrawn from the market.[34] As software ages, it becomes known as legacy software and can remain in use for decades, even if there is no one left who knows how to fix it.[35] Over the lifetime of the product, software maintenance is estimated to comprise 75 percent or more of the total development cost.[36][37]
Software quality is defined as meeting the stated requirements as well as customer expectations.[40] Quality is an overarching term that can refer to a code's correct and efficient behavior, its reusability and portability, or the ease of modification.[41] It is usually more cost-effective to build quality into the product from the beginning rather than try to add it later in the development process.[42] Higher quality code will reduce lifetime cost to both suppliers and customers as it is more reliable and easier to maintain.[43][44] Software failures in safety-critical systems can be very serious including death.[43] By some estimates, the cost of poor quality software can be as high as 20 to 40 percent of sales.[45] Despite developers' goal of delivering a product that works entirely as intended, virtually all software contains bugs.[46]
The rise of the Internet also greatly increased the need for computer security as it enabled malicious actors to conduct cyberattacks remotely.[47][48] If a bug creates a security risk, it is called a vulnerability.[49][50]Software patches are often released to fix identified vulnerabilities, but those that remain unknown (zero days) as well as those that have not been patched are still liable for exploitation.[51] Vulnerabilities vary in their ability to be exploited by malicious actors,[49] and the actual risk is dependent on the nature of the vulnerability as well as the value of the surrounding system.[52] Although some vulnerabilities can only be used for denial of service attacks that compromise a system's availability, others allow the attacker to inject and run their own code (called malware), without the user being aware of it.[49] To thwart cyberattacks, all software in the system must be designed to withstand and recover from external attack.[48] Despite efforts to ensure security, a significant fraction of computers are infected with malware.[53]
Programming languages are the format in which software is written. Since the 1950s, thousands of different programming languages have been invented; some have been in use for decades, while others have fallen into disuse.[54] Some definitions classify machine code—the exact instructions directly implemented by the hardware—and assembly language—a more human-readable alternative to machine code whose statements can be translated one-to-one into machine code—as programming languages.[55] Programs written in the high-level programming languages used to create software share a few main characteristics: knowledge of machine code is not necessary to write them, they can be ported to other computer systems, and they are more concise and human-readable than machine code.[56] They must be both human-readable and capable of being translated into unambiguous instructions for computer hardware.[57]
Compilation, interpretation, and execution
The invention of high-level programming languages was simultaneous with the compilers needed to translate them automatically into machine code.[58] Most programs do not contain all the resources needed to run them and rely on external libraries. Part of the compiler's function is to link these files in such a way that the program can be executed by the hardware. Once compiled, the program can be saved as an object file and the loader (part of the operating system) can take this saved file and execute it as a process on the computer hardware.[59] Some programming languages use an interpreter instead of a compiler. An interpreter converts the program into machine code at run time, which makes them 10 to 100 times slower than compiled programming languages.[60][61]
Software is often released with the knowledge that it is incomplete or contains bugs. Purchasers knowingly buy it in this state, which has led to a legal regime where liability for software products is significantly curtailed compared to other products.[62]
Source code is protected by copyright law that vests the owner with the exclusive right to copy the code. The underlying ideas or algorithms are not protected by copyright law, but are often treated as a trade secret and concealed by such methods as non-disclosure agreements.[63]Software copyright has been recognized since the mid-1970s and is vested in the company that makes the software, not the employees or contractors who wrote it.[64] The use of most software is governed by an agreement (software license) between the copyright holder and the user. Proprietary software is usually sold under a restrictive license that limits copying and reuse (often enforced with tools such as digital rights management (DRM)).[65]Open-source licenses, in contrast, allow free use and redistribution of software with few conditions.[64] Most open-source licenses used for software require that modifications be released under the same license, which can create complications when open-source software is reused in proprietary projects.[66]
Patents give an inventor an exclusive, time-limited license for a novel product or process.[67] Ideas about what software could accomplish are not protected by law and concrete implementations are instead covered by copyright law. In some countries, a requirement for the claimed invention to have an effect on the physical world may also be part of the requirements for a software patent to be held valid.[68]Software patents have been historically controversial. Before the 1998 case State Street Bank & Trust Co. v. Signature Financial Group, Inc., software patents were generally not recognized in the United States. In that case, the Supreme Court decided that business processes could be patented.[69] Patent applications are complex and costly, and lawsuits involving patents can drive up the cost of products.[70] Unlike copyrights, patents generally only apply in the jurisdiction where they were issued.[71]
^Stair, Ralph M. (2003). Principles of Information Systems, Sixth Edition. Thomson. p. 16. ISBN0-619-06489-7. Software consists of computer programs that govern the operation of the computer.
^Gerardo Con Díaz, "The Text in the Machine: American Copyright Law and the Many Natures of Software, 1974–1978", Technology and Culture 57 (October 2016), 753–79.
Campbell-Kelly, Martin; Garcia-Swartz, Daniel D. (2015). From Mainframes to Smartphones: A History of the International Computer Industry. Harvard University Press. ISBN978-0-674-28655-9.
Dooley, John F. (2017). Software Development, Design and Coding: With Patterns, Debugging, Unit Testing, and Refactoring. Apress. ISBN978-1-4842-3153-1.
Galin, Daniel (2018). Software Quality: Concepts and Practice. John Wiley & Sons. ISBN978-1-119-13449-7.
Haber, Morey J.; Hibbert, Brad (2018). Asset Attack Vectors: Building Effective Vulnerability Management Strategies to Protect Organizations. Apress. ISBN978-1-4842-3627-7.
Jones, Capers (2014). The Technical and Social History of Software Engineering. Pearson Education. ISBN978-0-321-90342-6.
Kitchin, Rob; Dodge, Martin (2011). Code/space: Software and Everyday Life. MIT Press. ISBN978-0-262-04248-2.
Langer, Arthur M. (2016). Guide to Software Development: Designing and Managing the Life Cycle. Springer. ISBN978-1-4471-6799-0.
Manovich, Lev (2013). Software Takes Command. Bloomsbury Academic. ISBN978-1-62356-745-3.
O'Regan, Gerard (2022). Concise Guide to Software Engineering: From Fundamentals to Application Methods. Springer Nature. ISBN978-3-031-07816-3.
Osterweil, Leon J. (2013). "What Is Software? The Role of Empirical Methods in Answering the Question". Perspectives on the Future of Software Engineering: Essays in Honor of Dieter Rombach. Springer. pp. 237–254. ISBN978-3-642-37395-4.
Rahman, Hanif Ur; da Silva, Alberto Rodrigues; Alzayed, Asaad; Raza, Mushtaq (2024). "A Systematic Literature Review on Software Maintenance Offshoring Decisions". Information and Software Technology. 172: 107475. doi:10.1016/j.infsof.2024.107475.
Reifer, Donald J. (2012). Software Maintenance Success Recipes. CRC Press. ISBN978-1-4398-5167-8.
Rosati, Pierangelo; Lynn, Theo (2020). "Measuring the Business Value of Infrastructure Migration to the Cloud". Measuring the Business Value of Cloud Computing. Springer International Publishing. pp. 19–37. ISBN978-3-030-43198-3.
Sebesta, Robert W. (2012). Concepts of Programming Languages (10 ed.). Addison-Wesley. ISBN978-0-13-139531-2.
Stull, Edward (2018). UX Fundamentals for Non-UX Professionals: User Experience Principles for Managers, Writers, Designers, and Developers. Apress. ISBN978-1-4842-3811-0.
Tracy, Kim W. (2021). Software: A Technical History. Morgan & Claypool Publishers. ISBN978-1-4503-8724-8.
Tripathy, Priyadarshi; Naik, Kshirasagar (2014). Software Evolution and Maintenance: A Practitioner's Approach. John Wiley & Sons. ISBN978-0-470-60341-3.
Tucker, Allen; Morelli, Ralph; de Silva, Chamindra (2011). Software Development: An Open Source Approach. CRC Press. ISBN978-1-4398-8460-7.
Ulziit, Bayarbuyan; Warraich, Zeeshan Akhtar; Gencel, Cigdem; Petersen, Kai (2015). "A conceptual framework of challenges and solutions for managing global software maintenance". Journal of Software: Evolution and Process. 27 (10): 763–792. doi:10.1002/smr.1720.
Watt, Andy (2023). Building Modern SaaS Applications with C# And . NET: Build, Deploy, and Maintain Professional SaaS Applications. Packt. ISBN978-1-80461-087-9.
Varga, Ervin (2018). Unraveling Software Maintenance and Evolution: Thinking Outside the Box. Springer. ISBN978-3-319-71303-8.
Rhodope from Guillaume Rouillé's Promptuarii Iconum InsigniorumIn Greek mythology, Rhodope (Ancient Greek: Ῥοδόπη) may refer to two different characters: Rhodope, one of the 3,000 Oceanids, water-nymph daughters of the Titans Oceanus and his sister-wife Tethys.[1][2] She was one of the playmates of Persephone in the meadows of Sicily when the latter was abducted by her uncle Hades to be his queen in the underworld.[3] Rhodope, a queen of Thrace and the wife of ...
Defunct American department store This article is about a former group of department stores. For the parent company formed by the 1969 merger with Hudson's, see Target Corporation. Dayton'sLogo in 1974, featuring amaranth[1] mark used from 1968 to 1989IndustryDepartment storeFoundedJune 24, 1902; 121 years ago (1902-06-24)Minneapolis, MinnesotaFounderGeorge Draper DaytonDefunctJanuary 12, 2001; 23 years ago (January 12, 2001)FateLocations rebranded as Ma...
Park in Surry Hills, Sydney, Australia Prince Alfred ParkTypeUrban ParkLocationSurry HillsNearest citySydneyCoordinates33°53′17″S 151°12′18″E / 33.888°S 151.205°E / -33.888; 151.205Area7.5 hectaresCreatedDecember 1865Operated byCity of SydneyWebsitePrince Alfred Park Prince Alfred Park is an urban park in Surry Hills, Sydney, Australia. It is bounded by Chalmers Street to the east, Cleveland Street to the south and the Main Suburban railway line t...
Men in BlackLogo del filmTitolo originaleMen in Black Paese di produzioneStati Uniti d'America Anno1997 Durata98 min Rapporto1,85:1 Genereazione, commedia, fantascienza, avventura RegiaBarry Sonnenfeld SoggettoLowell Cunningham (fumetto) SceneggiaturaEd Solomon ProduttoreWalter F. Parkes, Laurie MacDonald Produttore esecutivoSteven Spielberg Casa di produzioneColumbia Pictures, Amblin Entertainment, Parker/MacDonald Productions Distribuzione in italianoColumbia TriStar Films Itali...
烏克蘭總理Прем'єр-міністр України烏克蘭國徽現任杰尼斯·什米加尔自2020年3月4日任命者烏克蘭總統任期總統任命首任維托爾德·福金设立1991年11月后继职位無网站www.kmu.gov.ua/control/en/(英文) 乌克兰 乌克兰政府与政治系列条目 宪法 政府 总统 弗拉基米尔·泽连斯基 總統辦公室 国家安全与国防事务委员会 总统代表(英语:Representatives of the President of Ukraine) 总...
1965 single by the Beatles What Goes OnUS picture sleeve (reverse)Single by the BeatlesA-sideNowhere ManReleased 3 December 1965 (UK Rubber Soul album) 21 February 1966 (US single) Recorded4 November 1965StudioEMI, LondonGenreCountry and westernrockabillyLength2:50LabelCapitolSongwriter(s)Lennon–McCartney–StarkeyProducer(s)George MartinThe Beatles US singles chronology We Can Work It Out / Day Tripper(1965) Nowhere Man / What Goes On (1965) Paperback Writer (1966) What Goes On is a so...
جبل المنطار (طولكرم) قمة جبل المنطار الموقع طولكرم الارتفاع 300–500 متر (980–1,640 قدم) السلسلة سلسلة جبال الشمال تعديل مصدري - تعديل جبل المنطار، ويُلقب بـحارس طولكرم، وهو جبل يقع في مدينة طولكرم وتحديدًا عند مدخل المدينة من جهة الشرق، يحيط بالجبل كل من مدينة طولكرم وبلدت...
Pramuka Siaga di Jakenan, Pati sedang mengikuti kegiatan. Pramuka Penggalang sedang menikmati makan disela-sela kegiatan. Anggota Gerakan Pramuka adalah seorang Warga Negara Indonesia yang secara sukarela dan aktif mendaftarkan diri sebagai anggota Gerakan Pramuka, telah mengikuti program perkenalan kepramukaan serta telah dilantik sebagai anggota.[1] Anggota Gerakan Pramuka disebut dengan Pramuka. Jenis keanggotaan Anggota biasa Anggota muda Anggota dewasa Anggota luar biasa Anggota ...
The following list includes all current and former arenas used by current and defunct teams playing in the National Basketball League (NBL) during the 2024–25 NBL season. The New Zealand Breakers, South East Melbourne Phoenix and Tasmania JackJumpers all use multiple home venues. Other information included in this list are arena locations, seating capacities, years opened and in use. The Qudos Bank Arena, home to the Sydney Kings and the largest indoor arena in Australia, has the highest c...
1989 Indian general election ← 1984 22 and 26 November 1989[1] 1991 → ← outgoing memberselected members →529 of the 543 seats in the Lok Sabha265 seats needed for a majorityRegistered498,906,129Turnout61.95% ( 2.06pp) First party Second party Leader Rajiv Gandhi V. P. Singh Party INC(I) JD Alliance INC (I)+ JD+ Leader's seat Amethi Fatehpur Last election 46.86%, 414 seats 13.50%, 14 seats Seats won 197 143 Seat&...
Escape Plan: The ExtractorsOfficial DVD/Blu-ray coverSutradaraJohn HerzfeldProduser Robbie Brenner Mark Canton Randall Emmett George Furla Zack Schiller Skenario Miles Chapman John Herzfeld Pemeran Sylvester Stallone Max Zhang Dave Bautista Devon Sawa Jaime King Malese Jow Harry Shum, Jr. Russell Wong Lydia Hull Curtis Jackson Penata musikVictor ReyesSinematograferJacques JouffretPenyuntingSean AlbertsonPerusahaanproduksi Emmett/Furla/Oasis Films Diamond Films Productions Twirly Films L...
Bundesrepublik DeutschlandFörbundsrepubliken Tyskland Flagga Statsvapen Valspråk: (inofficiellt)Einigkeit und Recht und Freiheit(tyska, Enighet och rättvisa och frihet) Nationalsång: 3:e strofen ur Deutschlandlied[1][2] läge Huvudstad(även största stad) Berlin Officiellt språk Tyska[3][4]1 Demonym tysk[5] Statsskick Förbundsrepublik[6] - Förbundspresident Frank-Walter Steinmeier - Förbundskansler Olaf Scholz Självständighet Tysklands enande ...
Poset representing certain properties of a polytope This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Abstract polytope – news · newspapers · books · scholar · JSTOR (April 2016) (Learn how and when to remove this message) A square pyramid and the associated abstract polytope. In mathematics, an abstract polyt...
جزء من سلسلة مقالات سياسة ماليزياماليزيا الدستور الدستور حقوق الإنسان الملكية الملك: محمد الخامس مؤتمر الحكام السلطة التنفيذية الرئيس مجلس الوزراء السلطة التشريعية البرلمان السلطة القضائية القضاء الانتخابات الانتخابات الأحزاب السياسية السياسة الخارجية العلاقات الخار...
Hong Kong singer and actor In this Hong Kong name, the surname is Chan. In accordance with Hong Kong custom, the Western-style name is Eason Chan and the Chinese-style name is Chan Yick Shun. Eason Chan陳奕迅Chan in 2018Born (1974-07-27) 27 July 1974 (age 50)British Hong KongAlma materKingston UniversityRoyal Academy of MusicOccupationsSingeractorYears active1995–presentSpouse Hilary Tsui (m. 2006)Children1Musical careerAlso known asGod of E ...
Questa voce o sezione sull'argomento stagioni delle società calcistiche italiane non cita le fonti necessarie o quelle presenti sono insufficienti. Puoi migliorare questa voce aggiungendo citazioni da fonti attendibili secondo le linee guida sull'uso delle fonti. Segui i suggerimenti del progetto di riferimento. Questa voce sull'argomento stagioni delle società calcistiche italiane è solo un abbozzo. Contribuisci a migliorarla secondo le convenzioni di Wikipedia. Segui i suggeri...