D) Types of Programming and Mark Up Languages Flashcards
What is an IDE?
IDE stands for Integrated Development Environment, and it is a software tool designed to aid software development. Common features include a code editor, debugger and compiler.
What is a code library?
A set of pre-written functions that can be incorporated into other programs. They can come included with the programming language, be purchased or be written by the programmer themselves.
What are the advantages/disadvantages of using code libraries?
adv:
- widely used
- frequently updated
- saves development time
disadv:
- security concerns
- a bespoke solution could better suit business needs
What is Git?
A version control system used to track changes made to software. It allows for source code repositories to be shared between developers. Github is a cloud based version of this.
What is an API?
API stands for Application Program Interface, it is a piece of code or set of procedures that enables other programs to communicate and share data.
What is an SDK?
SDK stands for Software Development Kit, it is a set of tools to help quickly develop a certain type of app.
What is procedural programming?
A top down approach to coding. Procedural programs are composed of statements, blocks and subroutines.
What is a statement?
An instruction to perform an activity, written in the programming language. Examples include creating a variable or calling a function.
What is a block?
A group of statements that are always run together, for example statements within loops.
What is a subroutine?
A named block of code that is run by calling it from the main program. The two main types are functions and procedures. data can be passed to functions and procedures as arguments. The main difference between functions and procedures is that functions always return a value to the main program.
What is object-oriented programming?
A type of programming language that relies on the concept of classes and objects. It structures programs into simple, reusable pieces of code.
What is encapsulation?
The process of making objects and classes. an object is a collection of properties (data internal to the object) and methods (ways to access and manipulate this data). Classes are templates that define object properties and methods. Multiple object instances can be created from a single class.
What is abstraction?
It is a way of reducing complexity and improving security by choosing to make objects and classes either public or private. To use an object, programmers only need to know its public properties and methods.
What is inheritance?
It is a way of making code reusable. Subclasses are derived from a parent class and can inherit their properties and methods, but can add to and modify these. Subclasses can be used to make more specialised objects from reused code.
What is polymorphism?
The principle that a single class can have multiple methods with the same name. Different actions can take place depending on which way the method is invoked.
What is event driven programming?
Relies on events to occur to execute code. Code is run non-sequentially and consists of a main program loop, events, trigger functions and callback functions.
What is a main program loop?
A loop which executes different code when various events are detected.
What is an event?
A detectable occurrence which causes the main loop to respond accordingly. Events can be user generated, timer generated or service-oriented. An example could be the user clicking a button.
What is a trigger function?
They respond to events and determine what code to execute.
What is an event handler/callback function?
A form of subroutine that is executed by a trigger function in response to detected events.
What is a markup language?
A markup language uses tags to annotate the content displayed. Tags are a form of metadata, meaning they cant be seen by the end user.
What are the mark up languages?
- HTML: Used to create documents to be displayed on a web browser and describes the structure of the web page.
- CSS: Used to change how different HTML elements are displayed.
- XML: Allows programmers to design their own tags. Often used to transport data between applications/scripts.
What is the difference between markup and programming languages?
Programming languages don’t directly manipulate formatting of content.
What are the programming languages for the web?
- JavaScript: An event driven language with object oriented features that adds interactive features to the web.
- PHP: Used to create dynamic web content. It is executed on a server and delivers results to a client browser in the form of HTML.
What is the client-server model?
The client makes a request to the server and the server responds to the client with requested data.
What are network protocols?
Standardised sets of rules that govern data communication between devices in a network. Common ones include HTTP and HTTPS.
What is client side processing?
When programs are executed within the web browser. Provides interactive, event driven elements.
What is server side processing?
When programs are executed on the web server. Used to create dynamic web content and can be integrated onto other server-based systems.
What is translation?
The process of converting a program in one language to another language. Can be done by hand or with transcompilers.
In what situations is translation useful?
- original language cannot meet requirements
- support for original language is ending
- original language is insecure
- original language is not compatible with ne hardware
- changes in company policy
- skill availability
What are the impacts of translation on developers?
- may need to learn new skills
- must optimise and debug new code
What are the impacts of translation on end users?
- new version may have reduced functionality
- new code may have performance issues
- new version may be less stable
- new bugs may be introduced
What are the impacts of translation on organisations?
- may require purchasing new licenses
- may need to hire new staff
- question of value
What are alternatives to translation?
- exploring newer versions of current language
- using different third party languages
- changing compilers or interpreters
- improving current code
- having developers review and propose changes to current code
What are the advantages/disadvantages of translation?
adv:
- allows use of more modern programming languages
- development time is reduced
- cost is reduced
- support improved
- improved functionality
disadv:
- exact translation may not be possible
- new version may be less efficient
- may be time consuming
- unexpected limitations
- lack of experience with new language
What are the advantages/disadvantages of procedural programming?
adv:
- easy to understand
- supports development by multiple programmers
- corresponds to how computers execute instructions
- flexible
disadv:
- limited ability to reuse code in other projects
- limited security
- complex programs can become difficult to debug and maintain
What are the advantages/disadvantages of object oriented programming?
adv:
- encapsulation helps programmers to share workload
- abstraction helps improve security and reduce complexity
- encapsulation and inheritance supports reusable code
- polymorphism makes code flexible
disadv:
- can be difficult to determine what should constitute a separate object/class
- can be difficult to determine what properties and methods should be public/private
- can increase memory requirements
What are the advantages/disadvantages of event driven programming?
adv:
- provide prebuilt code allowing for faster development
- intuitive
disadv:
- not suitable for all types of problems, particularly those that are not dependent on events
What are the advantages/disadvantages of client side processing?
adv:
- secure as the code runs inside the browser
- easily allows incorporation of media
- platform independent
- code run will always be the latest version
disadv:
- requires a compatible web browser and internet access
- code is downloaded to the client, so can be viewed and copied
- less efficient than native code
- not all web browsers support web standards
- functionality can be limited compared to native code
What are the advantages/disadvantages of server side processing?
adv:
- source code is secure
- performance can be monitored centrally
- does not depend on performance of client
- easy to integrate with other systems
disadv:
- requires resources to host which can be costly
- systems can become a target for hackers
- website performance may be poor if code is inefficient