What is a standard file format?
Is one that will open and display correctly on all platforms.
What is lossy compression?
Lossy compression techniques compress data with a certain amount of visual loss when restored. Audio, video and some imaging applications can tolerate loss and in many cases, it may not be noticeable to the human ear or eye.
What is lossless compression?
Lossless compression is a technique that decompressed data back to its original form without any loss. All compression methods used to compress text, databases and other business data are lossless.
Factors that affect the size of a sound file are:
What is an operating system?
An operating system is a large program which manages the hardware and software of the computer system.
What are the functions of an operating system?
What is propietary software?
Is also known as ‘closed software’. It’s developed by companies who typically charge a license fee for the right to use their software.
(I.E: Microsoft office, Google earth, iOS, Skype)
What is open source software?
Open source software is developed, marketed and distributed by a community of individuals and is available for free.
What are some advantages of open source software?
What are some disadvantages to open source software?
What is a meta tag?
Meta tags are used to specify page description, keywords, author of document, last modified and other metadata.
How would you do a compression calculation?
Step 1) Multiply the resolution, frame rate and bits per pixel together.
Step 2) Divide by 1024 until you get the lowest number possible (That is higher than 0).
What are some advantages of propierty software?
What are some disadvantages of propierty software?
What is ‘portability’?
Portability is a measure of how easily an application can be transferred from one computer environment to another.
How do you reduce the size of a graphics file?
By cropping the image, lowering the resolution of changing the colour depth.
How do you reduce the size of a video file?
By trimming the length of the video, altering the resolution or reducing the frame rate.
What is a database driven website?
A database driven website is a web page that grabs information from a database and inserts that information into the web page each time it is loaded. If the information stored in the database changes the web page connected to the database will also change accordingly (and automatically) without human intervention.
What is client side scripting?
Client side scripts run on the client side of a client-server system. (I.E - On the World Wide Web, JavaScript scripts are used client-side because they are executed by your browser).
What is a relational database?
A relational database is a database which contains more than one table. The tables are linked together by using primary and foreign keys.
What are the advantages of using a relational database?
> Relational databases prevent unnecessary duplication of data.
Less time-consuming than a flat-file databse.
Explain the difference between a flat database and a relational database.
Flat-file databases is just one table with lots of recprds. A relational database may have two or more tables with the records more organsied. (I.E In a library one table for the book, one for the library and one for the user). These tables are linked with primary and foreign keys.
What is a primary key and what is it’s purpose in a database?
A primary key is a field in a table that contains a value that is unique for every record. It’s purpose is to ensure that every record is different and are used when linking tables together.
What is a surrogate key and when are they used?
A surrogate key is a field in a table which has been created by the system to ensure
that a unique field exists for every record. A surrogate key is used instead of a primary
key if no existing field is suitable.