Programming Languages and Program Development

Just an initial demo map, so that you don't start with an empty map list ...

Jetzt loslegen. Gratis!
oder registrieren mit Ihrer E-Mail-Adresse
Programming Languages and Program Development von Mind Map: Programming Languages and Program Development

1. Other Programming Languages and Development Tools

1.1. A 4GL (fourth‐generation language) is a nonprocedural language that enables users and programmers to access data in a database

1.1.1. One popular 4GL is SQL

1.2. Classic programming languages include

1.2.1. Ada

1.2.2. ALGOL

1.2.3. APL

1.2.4. BASIC

1.2.5. Forth

1.2.6. FORTRAN

1.2.7. HyperTalk

1.2.8. LISP

1.2.9. Logo

1.2.10. Modula‐2

1.2.11. Pascal

1.2.12. PILOT

1.2.13. PL/1

1.2.14. Prolog

1.2.15. RPG

1.2.16. Smalltalk

1.3. An application generator is a program that creates source code or machine code from a specification of the required functionality

1.4. A macro is a series of statements that instructs an application how to complete a task

1.5. You usually create the macro in one of two ways

1.5.1. Record the macro with a macro recorder

1.5.2. Write the macro

2. Web Page Development

2.1. HTML is a special formatting language that programmers use to format documents for display on the Web

2.2. XHTML is a markup language that allows Web sites to be displayed more easily on mobile device

2.3. XML allows Web developers to create customized tags and use predefined tags to display content appropriately on various devices

2.4. Two applications of XML are RSS 2.0 and ATOM

2.5. Web browsers can execute short programs to add interactive elements to Web pages

2.6. To send and receive information between your computer and a Web server, these programs use the CGI (common gateway interface)

2.7. Programmers write scripts, applets, servlets, or ActiveX controls using a variety of languages

2.7.1. JavaScript

2.7.2. Perl

2.7.3. PHP

2.7.4. Rexx

2.7.5. Tcl

2.7.6. VBScript

2.8. Web 2.0 allows Web sites to provide a means for users to

2.8.1. Share personal information

2.8.2. Allow users to modify Web site content

2.8.3. Have application software built into the site

2.9. Most Web 2.0 sites use APIs

2.9.1. An API enables programmers to interact with an environment such as a Web site or operating system

2.10. Web page authoring software can create sophisticated Web pages that include images, video, audio, animation, and other effects

2.10.1. Dreamweaver

2.10.2. Expression Web

2.10.3. Flash

2.10.4. SharePoint Designer

3. Multimedia Program Development

3.1. Multimedia authoring software allows programmers to combine text, graphics, animation, audio, and video in an interactive presentation

3.1.1. ToolBook

3.1.2. Director

4. Program Development

4.1. Program development consists of a series of steps programmers use to build computer programs

4.2. Step 1 – Analyze Requirements

4.2.1. To initiate program development, programmer

4.2.1.1. Reviews the requirements

4.2.1.2. Meets with the systems analyst and users

4.2.1.3. Identifies input, processing, and output

4.2.2. IPO chart

4.3. Step 2 – Design Solution

4.3.1. Design a solution algorithm

4.3.2. • In structured design, the programmer typically begins with a general design and moves toward a more detailed design

4.3.3. Programmers use a hierarchy chart to show program modules graphicall

4.3.4. With object‐oriented (OO) design, the programmer packages the data and the program into a single object

4.3.5. The sequence control structure shows one or more actions following each other in order

4.3.6. The selection control structure tells the program which action to take, based on a certain condition

4.3.7. The repetition control structure enables a program to perform one or more actions repeatedly as long as a certain condition is met

4.3.8. A program flowchart graphically shows the logic in a solution algorith

4.3.9. Flowcharting software makes it easy to modify and update flowcharts

4.3.10. Pseudocode uses a condensed form of English to convey program logic

4.3.11. UML (Unified Modeling Language) has been adopted as a standard notation for object modeling and development

4.4. Step 3 – Validate Design

4.4.1. Check for logic errors using test data

4.5. Step 4 – Implement Design

4.5.1. Implementation of the design includes using a program development tool that assists the programmer by

4.5.1.1. Generating or providing some or all code

4.5.1.2. Writing the code that translates the design into a computer program

4.5.1.3. Creating the user interface

4.5.2. Extreme programming is a strategy where programmers immediately begin coding and testing solutions as soon as requirements are defined

4.6. Step 5 – Test Solution

4.6.1. The goal of program testing is to ensure the program runs correctly and is error free

4.6.1.1. Errors include syntax errors and logic errors

4.6.1.2. Debugging the program involves removing the bugs

4.6.1.3. A beta is a program that has most or all of its features and functionality implemented

4.7. Step 6 – Document Solution

4.7.1. In documenting the solution, the programmer performs two activities

4.7.1.1. Review the program code

4.7.1.2. Review all the documentation

5. Computer Programs and Programming Languages

5.1. A computer program is a series of instructions that directs a computer to perform tasks

5.1.1. Created by a programmer using a programming language

6. Low‐Level Languages

6.1. Machine language is the first generation of programming languages

6.2. Only language the computer directly recognize

6.3. Assembly language is the second generation of programming languages

6.4. Programmer writes instructions using   symbolic instruction codes

6.5. A source program contains the code to be converted to machine language

7. Procedural Languages

7.1. In a procedural language, the programmer writes instructions that tell the computer what to accomplish and how to do it

7.1.1. Third‐generation language (3GL)

7.2. COBOL (COmmon Business‐Oriented Language) is designed for business applications, but easy to read because of the English‐like statements

7.3. An object‐oriented programming (OOP) language allows programmers the ability to reuse and modify existing objects

7.4. Other advantages include

7.4.1. Objects can be reused

7.4.2. Programmers create applications faster

7.4.3. Work well in a RAD environment

7.4.4. Most program development tools are IDEs

8. Object‐Oriented Programming Languages and Program Development Tools

8.1. Java is an object‐oriented programming language developed by Sun Microsystems

8.2. The Just‐in‐time (JIT) compiler to convert the bytecode into machine‐dependent code

8.3. The Microsoft .NET Framework allows almost any type of program to run on the Internet or an internal business network, as well as computers and mobile devices

8.4. Features include

8.4.1. CLR (Common Language Runtime)

8.4.2. Classes

8.5. C++ is an extension of the C programming languag

8.5.1. Additional features for working with objects, classes, events, and other object‐oriented concepts

8.6. C# is based on C++ and was developed by Microsoft

8.7. PowerBuilder is a powerful program development RAD tool

8.8. Best suited for Web‐ based, .NET, and large‐ scale enterprise object‐ oriented applications