SlideShare a Scribd company logo
1 of 25
Chapter 14 :
PROGRAMMING
AND LANGUAGES

Iostreamteam
PROGRAMS AND PROGRAMMING
What is a program?
●

A list of instructions for the computer to follow to
accomplish a task of processing data into
information.

What is programming?
●

●

Also known as software development / software
development life cycle(SDLC)

A six step procedure for creating that a list of instructions
The six steps are as follows:
STEP 1 : PROGRAM SPECIFICATION
●

Also called program definition or program analysis
●

Requires: programmer and end user
●

Five tasks:

1- Program objectives : the first task is to clearly define the problem to
solve in the form of program objectives.
2-Desired output : focus on the desired output before considering the
required inputs.

3-Input data : once outputs are defined ,determine the necessary input
data and the source of the data.
4-Processing requirements : determine the steps necessary
(processing requirements) to use input to produce output.
5-Program specifications document : to record this step’s program
objectives ,outputs, inputs and processing requirements.
STEP 2 : PROGRAM
DESIGN
●

●

Plan a solution using structured
programming technique
These techniques consist:

1) Top down program design
●

●

●

●

To identify the program's processing
steps
Such steps are called program
modules
Each module are made up of logically
related program statements
Example time and biling report
2)Pseudocode
An outline of the logic of the program
you will write
It is like doing summary of the program
before it is written

3)Flowcharts
These graphically present the detail sequence
of steps needed to solve a programming
problem
Logic Structures
●

●

●

The best way to link the various part of the flowcharts is by
combines three logic structures called concatenation
,selection and repetition.

In the concatenation structures-one program statements
follow another. There is no question of “yes” or “no” of the
decision suggesting other consequences.
The selection structures(IF-THEN-ELSE)- occurs when a
decision must be made.
●

●

●

The repetition or loop structures describe a process that
may be repeated as long as a certain condition remains
true

The structures is called “loop” or “iteration” because the
program loops around again and again

The repetition structures has two variation DO UNTIL
and DO WHILE
LOGIC STRUCTURES
STEP 3 : PROGRAM CODE
●

Writing the program is called CODING
ASPECTS OF WRITING A PROGRAM
1)GOOD PROGRAMS
●

●

Good programs are reliable ,detect obvious and common
errors and are well documented.

The best way to create good programs is to write
structured programs using the three basic logic structures
presented in steps 2.
2)CODING
There are hundreds of different programming languages.
Two types are:

●

●

Content mark-up language-instruct a computer how to
process different types types of information. Example
HTML used to create web pages.

Programming language-instruct a computer to perform
specific operations. C++ is widely used programming
language.
STEP 4 : PROGRAM TEST
●

●

Debugging is a process of testing and
eliminating errors in a program
Syntax and logic are two types of
programming errors.
SYNTAX ERROR

●

A violation of the rules of the programming language

●

Example in C++, each statement must end with a semicolon(;)

LOGIC ERROR
●

●

Occur when the programmer uses an incorrect calculation or
leaves out a programming procedures

Example, failure to include calculation of overtime hours in a
payroll program in a logic error
TESTING PROCESS
Five methods for testing for syntax and logic error are
●

●

●

●

●

1)Desk checking(code review):careful reading of a printout of the program.

2)Manual testing :using a calculator and sample data to test for correct
programming logic.

3)Attempt a translation: running the program using a translator program to
identify syntax errors.

4)Testing sample data: running the program and testing the program for
logic errors using sample data.

5) Testing by users (beta testing): final step in which potential users try the
program and provide feedback.
STEP 5: PROGRAM DOCUMENTATION
●

●

Documentation consist of written description
and procedures about a program and how to
use it
Program documentation is carried on
throughout all the programming steps
People who use documentation
include:
Users
●

who need to know how to use the program

●

some organizations offer training courses

●

other expect users to learn from written documentation

Operators
●

who need to know how to execute the program and how to recognize
and correct errors

Programmers
●

●

who may need to update and maintain the program in the future
documentation could include text and program flowchart ,program
listings and sample outputs
STEP 6 : PROGRAM MAINTENANCE
●

Design to ensure that the program operates correctly, efficiently and
effectively

●

Two categories of maintenance activities are the following

●

1) Operations
-include locating and correcting errors, improving usability and
standardizing software.

2)Changing needs
-organizations change over time and their programs must change
with them
starts with core program functionality, then
expands until the customer is satisfied with the results.
-AGILE DEVELOPMENT
CASE and OOP
CASE
●

Computer-aided software engineering(CASE) tools provide
automation and assistance in program design ,coding and
testing.

OOP
●

●

●

●

Traditional systems development focuses on procedure to
complete a specific objective.
Object-oriented software development focuses less on
procedures and more on defining relationships between
previously defined procedures or objects.
Object-oriented programming (OOP)- a process by which a
program is divided into modules called objects
Each object contains both the data and processing operations
necessary to perform a task.
GENERATIONS
OF
PROGRAMMING
LANGUAGES
 Programming languages have
levels or generations ranging
from low to high.

1.Lower-level languages are
closer to the 0s and 1s
language of computers.
2.Higher-level languages are
closer to the languages of
human.
Generation

Sample statement

First :
Machine languages

111100100111001111001111111

Second:
Assembly languages

ADD 210(8,13),02B(4,7)

Third:
High-level procedural languages

If (score> = 90)grade = ‘A’;

Fourth:
Task-oriented languages

SELECT client FROM dailyLog WHERE
serviceEnd > 17

Fifth:
Problems and constraints languages

Get patientDiagnosis from
patientSymptoms “sneezing”, “coughing”,
“aching”
CARRIERS IN
IT
 Computer programmers create, test, and

troubleshoot programs.
 They also update and repair existing programs
 Requirements include a bachelor’s or specialized

two-year degree in computer science or
information systems.
 Salary range is $51,500 to $88,000
Programming Languages and the Software Development Process

More Related Content

What's hot

2.8 normal forms gnf & problems
2.8 normal forms   gnf & problems2.8 normal forms   gnf & problems
2.8 normal forms gnf & problemsSampath Kumar S
 
Computer Graphics: Visible surface detection methods
Computer Graphics: Visible surface detection methodsComputer Graphics: Visible surface detection methods
Computer Graphics: Visible surface detection methodsJoseph Charles
 
Lec 01 basic concepts
Lec 01 basic conceptsLec 01 basic concepts
Lec 01 basic conceptsAbdul Khan
 
Graphics_3D viewing
Graphics_3D viewingGraphics_3D viewing
Graphics_3D viewingRabin BK
 
Introduction to computer graphics
Introduction to computer graphicsIntroduction to computer graphics
Introduction to computer graphicsPartnered Health
 
Dynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - AgileDynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - AgileMaruf Abdullah (Rion)
 
Visible surface determination
Visible  surface determinationVisible  surface determination
Visible surface determinationPatel Punit
 
Boundary Extraction
Boundary ExtractionBoundary Extraction
Boundary ExtractionMaria Akther
 
Back face detection
Back face detectionBack face detection
Back face detectionPooja Dixit
 
Control Flow Testing
Control Flow TestingControl Flow Testing
Control Flow TestingHirra Sultan
 
Design and Analysis of Algorithms
Design and Analysis of AlgorithmsDesign and Analysis of Algorithms
Design and Analysis of AlgorithmsArvind Krishnaa
 
C scan scheduling 50 2
C scan scheduling 50 2C scan scheduling 50 2
C scan scheduling 50 2myrajendra
 
Three Address code
Three Address code Three Address code
Three Address code Pooja Dixit
 

What's hot (20)

2.8 normal forms gnf & problems
2.8 normal forms   gnf & problems2.8 normal forms   gnf & problems
2.8 normal forms gnf & problems
 
Computer Graphics: Visible surface detection methods
Computer Graphics: Visible surface detection methodsComputer Graphics: Visible surface detection methods
Computer Graphics: Visible surface detection methods
 
Polygon filling
Polygon fillingPolygon filling
Polygon filling
 
Lec 01 basic concepts
Lec 01 basic conceptsLec 01 basic concepts
Lec 01 basic concepts
 
Graph algorithm
Graph algorithmGraph algorithm
Graph algorithm
 
Graphics_3D viewing
Graphics_3D viewingGraphics_3D viewing
Graphics_3D viewing
 
Introduction to computer graphics
Introduction to computer graphicsIntroduction to computer graphics
Introduction to computer graphics
 
Frame buffer
Frame bufferFrame buffer
Frame buffer
 
Dynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - AgileDynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - Agile
 
Visible surface determination
Visible  surface determinationVisible  surface determination
Visible surface determination
 
Boundary Extraction
Boundary ExtractionBoundary Extraction
Boundary Extraction
 
Code Generation
Code GenerationCode Generation
Code Generation
 
Back face detection
Back face detectionBack face detection
Back face detection
 
Software cost estimation
Software cost estimationSoftware cost estimation
Software cost estimation
 
Control Flow Testing
Control Flow TestingControl Flow Testing
Control Flow Testing
 
Chapter4 1
Chapter4 1Chapter4 1
Chapter4 1
 
Design and Analysis of Algorithms
Design and Analysis of AlgorithmsDesign and Analysis of Algorithms
Design and Analysis of Algorithms
 
C scan scheduling 50 2
C scan scheduling 50 2C scan scheduling 50 2
C scan scheduling 50 2
 
Three Address code
Three Address code Three Address code
Three Address code
 
Chomsky Normal Form
Chomsky Normal FormChomsky Normal Form
Chomsky Normal Form
 

Similar to Programming Languages and the Software Development Process

Similar to Programming Languages and the Software Development Process (20)

Understanding Computers: Today and Tomorrow, 13th Edition Chapter 13 - Progra...
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 13 - Progra...Understanding Computers: Today and Tomorrow, 13th Edition Chapter 13 - Progra...
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 13 - Progra...
 
Uc13.chapter.13
Uc13.chapter.13Uc13.chapter.13
Uc13.chapter.13
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxCOMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
 
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxCOMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
 
COM1407: Structured Program Development
COM1407: Structured Program Development COM1407: Structured Program Development
COM1407: Structured Program Development
 
Programming_Lecture_1.pptx
Programming_Lecture_1.pptxProgramming_Lecture_1.pptx
Programming_Lecture_1.pptx
 
Introduction to Software Engineering
Introduction to Software EngineeringIntroduction to Software Engineering
Introduction to Software Engineering
 
Notacd08
Notacd08Notacd08
Notacd08
 
Software Development presentation basic only
Software Development presentation basic onlySoftware Development presentation basic only
Software Development presentation basic only
 
Overview of c++
Overview of c++Overview of c++
Overview of c++
 
Programming part2
Programming part2Programming part2
Programming part2
 
Coding - SDLC Model
Coding - SDLC ModelCoding - SDLC Model
Coding - SDLC Model
 
Notacd081
Notacd081Notacd081
Notacd081
 
Computer programing 111 lecture 2
Computer programing 111 lecture 2Computer programing 111 lecture 2
Computer programing 111 lecture 2
 
Cp 111 lecture 2
Cp 111 lecture 2Cp 111 lecture 2
Cp 111 lecture 2
 
Software development slides
Software development slidesSoftware development slides
Software development slides
 
Week10 final
Week10 finalWeek10 final
Week10 final
 
Rishi
RishiRishi
Rishi
 
Rishi
RishiRishi
Rishi
 

Recently uploaded

Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Recently uploaded (20)

Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

Programming Languages and the Software Development Process

  • 1. Chapter 14 : PROGRAMMING AND LANGUAGES Iostreamteam
  • 2. PROGRAMS AND PROGRAMMING What is a program? ● A list of instructions for the computer to follow to accomplish a task of processing data into information. What is programming? ● ● Also known as software development / software development life cycle(SDLC) A six step procedure for creating that a list of instructions
  • 3. The six steps are as follows:
  • 4. STEP 1 : PROGRAM SPECIFICATION ● Also called program definition or program analysis ● Requires: programmer and end user ● Five tasks: 1- Program objectives : the first task is to clearly define the problem to solve in the form of program objectives. 2-Desired output : focus on the desired output before considering the required inputs. 3-Input data : once outputs are defined ,determine the necessary input data and the source of the data. 4-Processing requirements : determine the steps necessary (processing requirements) to use input to produce output. 5-Program specifications document : to record this step’s program objectives ,outputs, inputs and processing requirements.
  • 5. STEP 2 : PROGRAM DESIGN ● ● Plan a solution using structured programming technique These techniques consist: 1) Top down program design ● ● ● ● To identify the program's processing steps Such steps are called program modules Each module are made up of logically related program statements Example time and biling report
  • 6. 2)Pseudocode An outline of the logic of the program you will write It is like doing summary of the program before it is written 3)Flowcharts These graphically present the detail sequence of steps needed to solve a programming problem
  • 7. Logic Structures ● ● ● The best way to link the various part of the flowcharts is by combines three logic structures called concatenation ,selection and repetition. In the concatenation structures-one program statements follow another. There is no question of “yes” or “no” of the decision suggesting other consequences. The selection structures(IF-THEN-ELSE)- occurs when a decision must be made.
  • 8. ● ● ● The repetition or loop structures describe a process that may be repeated as long as a certain condition remains true The structures is called “loop” or “iteration” because the program loops around again and again The repetition structures has two variation DO UNTIL and DO WHILE
  • 10. STEP 3 : PROGRAM CODE ● Writing the program is called CODING
  • 11. ASPECTS OF WRITING A PROGRAM 1)GOOD PROGRAMS ● ● Good programs are reliable ,detect obvious and common errors and are well documented. The best way to create good programs is to write structured programs using the three basic logic structures presented in steps 2.
  • 12. 2)CODING There are hundreds of different programming languages. Two types are: ● ● Content mark-up language-instruct a computer how to process different types types of information. Example HTML used to create web pages. Programming language-instruct a computer to perform specific operations. C++ is widely used programming language.
  • 13. STEP 4 : PROGRAM TEST ● ● Debugging is a process of testing and eliminating errors in a program Syntax and logic are two types of programming errors.
  • 14. SYNTAX ERROR ● A violation of the rules of the programming language ● Example in C++, each statement must end with a semicolon(;) LOGIC ERROR ● ● Occur when the programmer uses an incorrect calculation or leaves out a programming procedures Example, failure to include calculation of overtime hours in a payroll program in a logic error
  • 15. TESTING PROCESS Five methods for testing for syntax and logic error are ● ● ● ● ● 1)Desk checking(code review):careful reading of a printout of the program. 2)Manual testing :using a calculator and sample data to test for correct programming logic. 3)Attempt a translation: running the program using a translator program to identify syntax errors. 4)Testing sample data: running the program and testing the program for logic errors using sample data. 5) Testing by users (beta testing): final step in which potential users try the program and provide feedback.
  • 16. STEP 5: PROGRAM DOCUMENTATION ● ● Documentation consist of written description and procedures about a program and how to use it Program documentation is carried on throughout all the programming steps
  • 17. People who use documentation include: Users ● who need to know how to use the program ● some organizations offer training courses ● other expect users to learn from written documentation Operators ● who need to know how to execute the program and how to recognize and correct errors Programmers ● ● who may need to update and maintain the program in the future documentation could include text and program flowchart ,program listings and sample outputs
  • 18. STEP 6 : PROGRAM MAINTENANCE ● Design to ensure that the program operates correctly, efficiently and effectively ● Two categories of maintenance activities are the following ● 1) Operations -include locating and correcting errors, improving usability and standardizing software. 2)Changing needs -organizations change over time and their programs must change with them starts with core program functionality, then expands until the customer is satisfied with the results. -AGILE DEVELOPMENT
  • 19. CASE and OOP CASE ● Computer-aided software engineering(CASE) tools provide automation and assistance in program design ,coding and testing. OOP ● ● ● ● Traditional systems development focuses on procedure to complete a specific objective. Object-oriented software development focuses less on procedures and more on defining relationships between previously defined procedures or objects. Object-oriented programming (OOP)- a process by which a program is divided into modules called objects Each object contains both the data and processing operations necessary to perform a task.
  • 21.  Programming languages have levels or generations ranging from low to high. 1.Lower-level languages are closer to the 0s and 1s language of computers. 2.Higher-level languages are closer to the languages of human.
  • 22. Generation Sample statement First : Machine languages 111100100111001111001111111 Second: Assembly languages ADD 210(8,13),02B(4,7) Third: High-level procedural languages If (score> = 90)grade = ‘A’; Fourth: Task-oriented languages SELECT client FROM dailyLog WHERE serviceEnd > 17 Fifth: Problems and constraints languages Get patientDiagnosis from patientSymptoms “sneezing”, “coughing”, “aching”
  • 24.  Computer programmers create, test, and troubleshoot programs.  They also update and repair existing programs  Requirements include a bachelor’s or specialized two-year degree in computer science or information systems.  Salary range is $51,500 to $88,000