technology guide 2 1 computer software. technology guide overview 2

33
TECHNOLOGY GUIDE 2 TECHNOLOGY GUIDE 2 1 Computer Software

Upload: may-allen

Post on 22-Dec-2015

262 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TECHNOLOGY GUIDE 2TECHNOLOGY GUIDE 2

1

Computer Software

Page 2: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Technology Guide OverviewTechnology Guide Overview

2

Page 3: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

AgendaAgenda

TG2.1 Significance of Software

TG2.1.1 Definition and concepts

TG2.2 Systems SoftwareTG2.2.1 System control programs

TG2.2.2 Functions of the operating system

TG2.2.3 Types of operating systems

TG2.2.4 System support programs

TG2.3 Application SoftwareTG2.3.1 Types of application software

TG2.3.2 Categories of personal application software

3

Page 4: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.4 Open SystemsTG2.4.1 Open-source software

TG2.5 Programming LanguagesTG2.5.1 Hypertext Markup Language (HTML) and

Extensible Markup Language (XML)

4

Page 5: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

LEARNING OBJECTIVESLEARNING OBJECTIVES

1. Define software and differentiate between system and application software. (TG2.1)

2. Describe the general functions of the operating system. (TG2.2)

3. Describe the major types of application software. (TG2.3)

4. Discuss the advantages and disadvantages of open-source software. (TG2.4)

5. Explain how software has evolved, and consider trends for the future. (TG2.5)

5

Page 6: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.1 Significance of SoftwareTG2.1 Significance of Software

Computer hardware is only as effective as the instructions we give it, and those instructions are contained in software.

6

Page 7: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.1.1 Definition and TG2.1.1 Definition and conceptsconcepts Software consists of computer programs, which are

sequences of instructions for the computer.

Computer programs include documentation, which is a written description of the functions of the program. Documentation helps the user operate the computer system and it helps other programmers understand what the program does and how it accomplishes its purpose.

Systems software is a set of instructions that serves primarily as an intermediary between computer hardware and application programs. Systems software provides important self-regulatory functions for computer systems, such as loading itself when the computer is first turned on and providing commonly used sets of instructions for all applications.

7

Page 8: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Systems programming refers to both the creation and the maintenance of systems software.

Application software is a set of computer instructions that provides more specific functionality to a user. That functionality may be broad, such as general word processing, or narrow, such as an organization’s payroll program.

8

Page 9: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.2 Systems SoftwareTG2.2 Systems Software

Systems software is the class of programs that controls and supports the computer system and its information-processing activities.

Systems software also facilitates the programming, testing, and debugging of computer programs.

Systems software programs support application software by directing the basic functions of the computer.

9

Page 10: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.2.1 System control TG2.2.1 System control programsprograms System control programs control the use of the

hardware, software, and data resources of a computer system. The main system control program is the operating system.

The operating system (OS) supervises the overall operation of the computer. It has the following functions:◦ Monitor the computer’s status and scheduling

operations, including the input and output processes. ◦ Allocates CPU time and main memory to programs

running on the computer. ◦ Provides an interface between the user and the

hardware.

10

Page 11: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.2.2 Functions of the operating TG2.2.2 Functions of the operating systemsystemThe operating system manages the program

or programs (also called jobs or tasks) running on the processor at a given time.

Operating systems provide various types of program management, such as multitasking, multithreading, and multiprocessing.

Operating systems also manage main memory and secondary storage.

11

Page 12: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

The management of two or more tasks, or programs, running on the computer system at the same time is called multitasking.

Multithreading is a form of multitasking that involves running multiple tasks, or threads, within a single application simultaneously.

Multiprocessing occurs when a computer system with two or more processors can run more than one program at a given time by assigning them to different processors.

The graphical user interface (GUI, pronounced “gooey”) allows users to exercise direct control of visible objects (such as icons) and actions that replace complex commands.

12

Page 13: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

The next generation of graphical user interface (GUI) technology will incorporate features such as virtual reality, head-mounted displays, speech input (user commands) and output, pen and gesture recognition, animation, multimedia, artificial intelligence, and cellular/wireless communication capabilities.

The new interfaces, called natural user interfaces (NUIs), will combine social interfaces, haptic interfaces, touch-enabled gesture-control interfaces, and spatial operating environments.

13

Page 14: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

A social interface is a user interface that guides the user through computer applications by using cartoon-like characters, graphics, animation, and voice commands. The cartoon-like characters can be cast as puppets, narrators, guides, inhabitants, or avatars.

A haptic interface is one that allows the user to feel a sense of touch by applying forces, vibrations, and/or motions to the user.

Touch-enabled gesture-control interfaces enable users to browse through photos, “toss” objects around a screen, “flick” to turn the pages of a book, play video games, and watch movies.

A spatial operating environment is a user interface where the user stands or sits in front of one or more computer screens, and gestures with gloved hands to move images around, touch virtual objects, trace shapes, and navigate complex data.

14

Page 15: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.2.3 Types of operating TG2.2.3 Types of operating systemssystemsOperating systems are classified into

different types depending on the type of computer on which they run and the number of users they support.◦ Operating systems for mobile devices◦ Small computer operating systems◦ Large computer operating systems

15

Page 16: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.2.4 System support TG2.2.4 System support programsprogramsSystem support programs, supports the

operations, management, and users of a computer system by providing a variety of support services.

Examples of system support programs are ◦ System utility programs◦ Performance monitors◦ Security monitors

16

Page 17: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

System utilities are programs that have been written to accomplish common tasks such as sorting records and creating directories and subdirectories. These programs also restore accidentally erased files, locate files within the directory structure, and manage memory usage.

System performance monitors are programs that monitor the processing of jobs on a computer system. They monitor performance in areas such as processor time, memory space, input/output devices, and system and application programs.

System security monitors are programs that monitor the use of a computer system to protect it and its resources from unauthorized use, fraud, and destruction.

17

Page 18: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.3 Application SoftwareTG2.3 Application Software

Application software consists of computer instructions that direct a computer system to perform specific information-processing activities and that provide functionality for users.

Because there are so many different uses for computers, there are a correspondingly large number of application software programs.

18

Page 19: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.3.1 Types of application TG2.3.1 Types of application softwaresoftwareApplication software includes both

proprietary and off-the-shelf software.

19

Page 20: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Proprietary application software addresses a specific or unique business need for a company.

This type of software may be developed in-house by the organization’s information systems personnel, or it may be commissioned from a software vendor. Specific software programs developed for a particular company by a vendor are called contract software.

20

Page 21: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Off-the-shelf application software can be purchased, leased, or rented from a vendor that develops programs and sells them to many organizations.

Off-the-shelf software may be a standard package, or it may be customizable. Special-purpose programs or “packages” can be tailored for a specific purpose, such as inventory control or payroll.

21

Page 22: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.3.2 Categories of personal TG2.3.2 Categories of personal application softwareapplication softwareGeneral-purpose, off-the-shelf application

programs designed to help individual users increase their productivity are referred to as personal application software.

Some of the major types of personal application software are listed in Table TG2.1.

22

Page 23: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.4 Open SystemsTG2.4 Open Systems

The concept of open systems refers to a model of computing products that work together. Achieving this goal is possible through the use of the same operating system with compatible software on all the different computers that would interact with one another in an organization.

23

Page 24: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.4.1 Open-source softwareTG2.4.1 Open-source software

There is a trend within the software industry away from proprietary software toward open-source software.

Open-source software is copyrighted and distributed with license terms ensuring that the source code will always be available.

There are advantages and disadvantages to implementing open-source software in an organization.

24

Page 25: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Advantages of open-source development of software ◦ high-quality◦ Reliable◦ flexible (code can be changed to meet the

needs of the user)◦ low-cost

25

Page 26: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Disadvantages of open-source development of software ◦ Require technical experts either in-house or

from a third party◦ Concerns about the ease of use of open-source

software, the amount of time and expense needed to train users, and the compatibility with existing systems or with the systems of business partners

26

Page 27: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.5 Programming LanguagesTG2.5 Programming Languages Programming languages allow people to write

instructions that tell computers what to do. They are the means by which all systems and application software are developed.

Because computers do exactly what they are told, programming languages require a high degree of precision and completeness. Also, digital computers only understand 0s and 1s, or binary digits.

Therefore, all computer languages, except machine language, must be translated into binary digits for processing. This process is accomplished by a type of systems software called a compiler. Table TG2.2 provides a description of common categories of programming languages.

27

Page 28: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

28

Page 29: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Object-oriented languagesObject-oriented languages Object-oriented languages work differently than the

languages in Table TG2.2. Object-oriented languages are based on the idea of taking a small amount of data and the instructions about what to do with that data, which are called methods, and combining them into what is called an object.

When the object is selected or activated, the computer has the desired data and takes the desired action. This is what happens when you click on an icon on your GUI-equipped computer screen.

For example, when you click on the Internet Explorer (IE) icon on your desktop (which is an object), the IE window will open. The IE icon object contains the program code for opening a window.

29

Page 30: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

TG2.5.1 Hypertext Markup TG2.5.1 Hypertext Markup Language and Extensible Markup Language and Extensible Markup LanguageLanguageHypertext markup language (HTML) and

extensible markup language (XML) are programming languages that are used to build rich multimedia web pages, websites, and web-based applications. For example, you can use these languages to build your own web page.

30

Page 31: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Hypertext markup language (HTML) is used for creating and formatting documents on the World Wide Web. HTML gives users the option of controlling visual elements such as fonts, font size, and paragraph spacing without changing the original information.

Extensible markup language (XML) improves the functionality of web documents by describing what the data in documents actually mean, and identifying the business purpose of the documents themselves. As a result, XML improves the compatibility among the disparate systems of business partners by allowing XML documents to be moved to any format on any platform without the elements losing their meaning.

31

Page 32: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

32

Page 33: TECHNOLOGY GUIDE 2 1 Computer Software. Technology Guide Overview 2

Copyright © 2011 John Wiley & Sons Canada, Ltd. All rights reserved. Reproduction or translation of this work beyond that permitted by Access Copyright (the Canadian copyright licensing agency) is unlawful. Requests for further information should be addressed to the Permissions Department, John Wiley & Sons Canada, Ltd. The purchaser may make back-up copies for his or her own use only and not for distribution or resale. The author and the publisher assume no responsibility for errors, omissions, or damages caused by the use of these files or programs or from the use of the information contained herein.

CopyrightCopyright

33