Most important things to remember Flashcards

1
Q

What is an AND logic gate?

A

Both the inputs needs to be the same for the outcome to be the same:
True + true = true
true + false = false
false + false = false
false + true = false
if this was a statement, both parts would have to be true
e.g. I have blonde hair and blue eyes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

What is the OR logic gate?

A

Only one of the inputs needs to be true for the outcome to be true:
True + false = true
False + true = true
True + True = true
False + false = false
If this was a statement only one part needs to be true
e.g. I have brown hair and blue eyes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the NOT logic gate?

A

The NOT logic gate is always the opposite output to what the input was
True = false
False = true
An example of this is saying something is not something else or think of it as it is NOT true therefore it is false and it is NOT false therefore it is true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the XOR logic gate?

A

The XOR logic gate is very similar to the OR logic gate and in most cases, only one of the inputs has to be true for the outcome to be true:
True + false = true
False + true = true
False + false = false

The only difference is that when both the inputs are true then the outcome will be false
true + true = false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is HTML?

A

Hyper Text Markup Language - the building blocks of a website and not a programming language. Works with CSS and JavaScript and is relevant to marketing as you may need to change something on a CMS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is JavaScript?

A

JavaScript helps to make a website dynamic, it is the wizard and works alongside HTML and CSS to improve a website’s interactivity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is Java?

A

Java is a completely independent language that doesn’t need HTML or CSS to run and is mostly used for applications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a server stack?

A

it is an Operating System (OS), a web server, a database and a programming language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Lamp?

A

Linux
Apache
MySQL
PHP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is XAMPP

A

Cross platform
Apache
MySQL
PHP
Perl

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a MAMP?

A

Mac OS
Apache
MySQL
PHP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is WAMP?

A

Windows
Apache
MySQL
PHP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a PDF?

A
  • Portable Document Format * Developed by Adobe
  • Contain text and rich formatting * PDFs always look the same, no matter what program they are opened in * Can be viewed for free
    in Adobe Reader
  • Can only be edited in certain programs, such as Adobe Acrobat Pro.
  • Perfect for sharing documents with anyone
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the different image types

A

GIF - 256 colours and transparent backgrounds - lower quality
PNG - Portable Network graphics - Lossless so allows data to be perfectly reconstructed with no impact on the quality
JPG - Joint Photographic Experts Group. The most common type of image - the higher the file size the better the quality. for over 256 colours and uses lossy compression - for photographs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a JPG

A

Joint photographic experts group - a large photo with more than 256 colours

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is an MPEG?

A

A compressed video file - moving pictures expert group - popular type of video

16
Q

What is an MP3?

A

A compressed audio file that doesn’t compromise quality

17
Q

What is hosting?

A

renting space form the internet

18
Q

What is a client?

A

An end piece of equipment like a phone

19
Q

What is an application?

A

A piece of software on a client that performs a specific task

20
Q

What is a web server?

A

is computer software and underlying hardware that accepts HTTP and HTTP requests

21
Q

What is a rendering engine?

A

It takes HTML and converts it into what you can see

22
Q

What is a search engine crawler?

A

search engine crawlers - they crawl the internet, read pages one by one and look at the data and uses an algorithm to show relevant websites to the user,

23
Q

What is HTTP

A

Hyper Text Transfer Protocol is used to load pages using hypertext links - this is not encrypted

24
Q

What is HTTPS

A

Hyper Text Transfer Protocol Secure - the same as HTTP but the data is encrypted

25
Q

What is an SSL certificate?

A

Secure Sockets Layer and it is the s in HTTPS - a cryptographic protocol that provides secure communication over a computer network. It works by encrypting data transmitted between a client and a server.

26
Q

What is TLS?

A

Transport Layer Security - a cryptographic protocol that ensures privacy and data integrity between two communicating applications and it is the successor of SSL

27
Q

What is IETF?

A

Internet Engineering Task Force a large international community of designers, operators, vendors and researchers concerned with evolution and smooth operation of the internet

28
Q

What are cookies?

A

A piece of code that identifies as user and tracks their behaviour to use for marketing purposes.

29
Q

What is a flat file database?

A

A database where all the information is in one place and sometimes repeated.

30
Q

What is a relational database?

A

Where information is separated into different tables and these tables pull information for each other.

31
Q

What does the terms static and dynamic mean?

A

Static sites use HTML CSS and JS. Dynamic sites use HTML, CSS and a dynamic programming language such as PHP and a database such a MySQL.

32
Q

What are the disadvantages of a dynamic site?

A

More complicated, can take longer to load and more can go wrong with the site.

33
Q

What is w3c?

A

The World Wide Web Consortium is an international community where member organisations, a full-time staff and the public work together to develop web standards.

34
Q

What is an API Key? (Application Programming Interface)

A

is a code used to identify and application or users and is used for authentication in computer applications

35
Q

What is an application server?

A

An application server handles the more complicated tasks such as pulling information from databases.