1 / 34

Software Development

Software Development. Languages and Environments. Computer Languages. Just as there are many human languages, there are many computer programming languages that can be used to develop software.

ita
Download Presentation

Software Development

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Software Development Languages and Environments

  2. Computer Languages • Just as there are many human languages, there are many computer programming languages that can be used to develop software. • Some are named after people, such Ada and Pascal. Some are abbreviations, such as PL/1 and Prolog. • Prolog is good for developing programs in artificial intelligence. COBOL is for developing commercial data processing programs.

  3. Programming Languages • The are two different kinds of programming languages; • Low Level Languages • High Level Languages

  4. Low level Languages • Processors only understand binary. • Instructions and commands made in binary digital form is known as machine codes. • Here are a few machine codes for a 6502 processor: • 10101001 00000001 • 10000101 01110000 • 10100101 01110000 • I’m sure you’ll agree that they are not very easy to understand. • Machine codes are an example of low level languages,

  5. Advantages of Low Level Languages • They do not need to be translated into binary

  6. Disadvantages of Low Level Languages • machine codes for different processors are different • they are very hard for humans to understand and use • they take up a lot of space to write down • it is difficult to spot errors in the codes (debug).

  7. High Level Languages • To get round these difficulties, computer scientists invented high level languages. • Prolog • Java

  8. High Level Languages • High level languages (HLL) are similar to human languages. • Instead of using binary codes, they use ‘normal’ words. • For example, the computer language JAVA uses words like; • PRINT • IF • THEN, • That means that high level languages are easier to understand than machine code, and are more ‘readable’, meaning, it is easier to spot and correct errors.

  9. Advantages of High Level Languages • High level languages are easier to understand than machine codes and are more readable. • It is easier to find mistakes using HLLs

  10. Disadvantages of High Level Languages • HLLs must be translated into machine code so that the processor can understand the instructions • This can slow down the running of the program • This can use more hardware resources to store the program; i.e. we now have to store the HLL program, the translator and the machine code

  11. Jotter Work • Which type of language (high or low level) is easier to understand? • Which type would be easier to correct if it had a mistake in it? • Name two high level languages. • Explain the difference between high and low level languages. • List two advantages of high level languages.

  12. Translators • Processors don’t understand high level languages at all! • To get round this problem, translator programs have been developed to translate programs written in high level languages into machine code.

  13. Translators Programs • There are two main types of translator program; • Interpreters • Compilers • Although both of these utilities do the same task (convert HLL to machine code) they both work differently)

  14. Interpreters • The interpreter translates high level language program code as it is being written. • If takes each line of high level language code and translates it into machine code and passes it to the processor to carry out that instruction. • It works its way through the high level language program one line at a time. • This process of translation must take place every time the program is run.

  15. Advantages of Interpreters • Errors are highlighted as soon as the line is written showing exactly where the error is.

  16. Disadvantages of Interpreters • Interpreted programs are slow to run. • The interpreter runs every time the program is run. This is a waste of time and resources.

  17. Compiler • The compiler takes your HLL program and translates the whole program into machine code at the same time. • Any errors are reported in a batch once all the lines of code have been translated • The machine code version of the program is saved. • The program is then run from the saved machine code, with the result that the program only has to be translated once.

  18. Advantages of Compilers • Running the machine code version of the code is very fast. • Running the machine code version of the code does not waste computer resources.

  19. Disadvantages of Compilers • Harder to find and edit mistakes when given in a batch • Running a compiler is time consuming

  20. Some important main points! • The compiler translates the whole program at the same time at the end and saves it as object code. • The interpreter translates the program one line at a time as the code is being written, therefore identifying errors as they are written. • The compiler only need to translate the program once and then it can be run from the saved object code. • The interpreter has to translate the code every time it is run . • Interpreted code takes longer to run than compiled code, because of this repeated translation process.

  21. Jotter Work • Name two main types of translator program. • Which one translates the whole program into machine code before it is executed? • Which one translates a program line by line as it is being written? • Why do machine code programs run more quickly on a computer than high level language programs?

  22. Text Editors • We use text editors at the implementation stage of the Software Development Process. • Text editors are used to enter and edit program code, i.e. We write our code in a text editor and can fix any errors here too. • A text editor is a similar tool to a word processor and shares many of the same features. • The most useful of these is the ability to cut/copy and paste sections of code. • As you will soon realise when you start programs the same sections of code are reused often and copy and paste saves you from having to retype the entire section.

  23. Scripting Languages and Macros • A Scripting Language is a special type of High Level Language. • Scripting Languages are embedded within existing application packages, e.g. Microsoft Excel, Microsoft Word. • Using a Scripting Language we can create a macro, which is a way of carrying out multiply tasks with a single key-stroke.

  24. How to record a macro • Choose record macro • Carry out the steps you want to record • Press stop recording • Assign to a keystroke

  25. Example 1: creating an Excel spreadsheet macro • Set up a small spreadsheet as below and save it as course.xls • Save a second copy of the same spreadsheet as course_copy.xls.

  26. Example 1: creating an Excel spreadsheet macro cont’d • From the Tools menu, select Macro,then Record New Macro. • The following dialog box should appear: Enter the name (tidy_up_SS) And the shortcut key (Ctrl + Shift + K) Then OK

  27. Example 1: creating an Excel spreadsheet macro cont’d • WARNING!!! • Follow the se instructions very carefully –all your actions are being recorded! • Select cell A1 (the title of the spreadsheet) • Change its font to 18pt Bold • Select A3 to D13 (all the data) • Centre it all using the centre button on the menu bar • Select row 3 (the column headings) • Make them bold.

  28. Example 1: creating an Excel spreadsheet macro cont’d • The spreadsheet should now look like this: Click on Stop Recording Save the improved spreadsheet as course2.xls

  29. Example 1: creating an Excel spreadsheet macro cont’d • All the series of actions that you applied to course.xls to turn it into course2.xls have been recorded and stored as a macro. • To see the macro you have created: • go to the Tools menu • select Macro • select Macros

  30. Example 1: creating an Excel spreadsheet macro cont’d • A dialog box like this should appear, with your named macro listed under the name you gave it. • Click on Edit

  31. Example 1: creating an Excel spreadsheet macro cont’d • Another window will open, which displays the code of the macro you have recorded. • The macro is actually coded in a scripting language called Visual BASIC for Applications or VBA for short.

  32. What use is a macro? • Keep course2.xls open • Open course_copy.xls • Hold down Ctrl + Shift + K • Thefile course_copy.xls should be automatically formatted by the macro to be the same as course.xls • If the user has several similar unformatted spreadsheets and wanted them all formatted in this way, he could save a great deal of time by using a macro.

  33. Macros cont’d • A macro is a time-saving program written in a scripting language which can be activated by a series of key strokes for repeat use. • A macro cannot exist alone – it only works with an application program (in this case Excel).

  34. Macros cont’d • Examples of when you would use a macro • If you wanted to repeatedly search and sort a database using the same conditions it would be easier and quicker to use a macro • If you wanted to repeatedly do a mail merge again it would be easier to use a macro • If you wanted to change all of the headings in this presentation to Comic Sans you could use a macro instead of having to manually change each page.

More Related