Year 10 Pre-VCE Applied Computing Revision Booklet

0.0(0)
studied byStudied by 4 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/82

flashcard set

Earn XP

Description and Tags

Flashcards for Year 10 Pre-VCE Applied Computing Revision Booklet

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

83 Terms

1
New cards

What is a Digital System?

A system that processes digital signals or data using binary numbers (0s and 1s).

2
New cards

What is an Input Device?

Devices used to provide data and instructions to a computer.

3
New cards

What is an Output Device?

Hardware components that convey information from a computer to the user.

4
New cards

What is the role of the Processor (CPU)?

Transforms the input into an output.

5
New cards

What is RAM (Random Access Memory)?

Temporary memory used for running applications; can be modified.

6
New cards

What is ROM (Read-Only Memory)?

Permanent memory that stores critical startup instructions and cannot be easily changed.

7
New cards

What is System Software?

Manages hardware (e.g., operating systems).

8
New cards

What is Application Software?

Used for specific tasks (e.g., MS Word).

9
New cards

What is an Operating System?

Manages hardware and software resources in a computer.

10
New cards

What is an advantage of using a network?

Enables resource sharing.

11
New cards

What is a LAN (Local Area Network)?

A system that connects multiple computers in a small area.

12
New cards

What is a Client-Server Network?

A network model where a central server provides resources and services to multiple clients.

13
New cards

What is a Peer-to-Peer (P2P) Network?

Devices communicate directly without a central server.

14
New cards

What is a Router?

Connects multiple networks together and directs data packets between them.

15
New cards

What is a Switch?

Connects devices in a network and forwards data only to the device it is intended for.

16
New cards

What is a Hub?

Sends every message to every other connected device, creating a lot of unnecessary traffic.

17
New cards

What is a Bridge?

Connects local networks together to form Wide Area Networks (WAN).

18
New cards

What is a Network Interface Card (NIC)?

A component that connects a computer to a network.

19
New cards

How are Network speeds measured?

Measured in bits per second.

20
New cards

What is a Star Topology?

Managed from a central hub.

21
New cards

What is a Bus Topology?

Simple layout, easy to add more devices, less cable used.

22
New cards

What is a Ring Topology?

Offers faster speeds due to all packets moving in the same direction.

23
New cards

What is a Mesh Topology?

Very reliable, as faults in single cables or nodes don't affect other nodes.

24
New cards

What is a Network Protocol?

A set of rules for communication between devices in a network.

25
New cards

What is HTTP (Hypertext Transfer Protocol)?

Used to access hypertext (text with links) on the World Wide Web. This is not a secure protocol.

26
New cards

What is HTTPS (Hypertext Transfer Protocol Secure)?

A secure type of HTTP connection where data is encrypted when exchanged with these pages.

27
New cards

What is TCP/IP (Transmission Control Protocol/Internet Protocol)?

The combined protocols that control much of the data transferred over the internet.

28
New cards

What is FTP (File Transfer Protocol)?

A method of transferring files over a network.

29
New cards

What is DHCP (Dynamic Host Configuration Protocol)?

Configures IP addresses for devices plugged into a home Wi-Fi network.

30
New cards

What is SMTP (Simple Mail Transfer Protocol)?

Transfers email messages from the sender to the recipient's mail server.

31
New cards

What is Ethernet?

Transmits data in digital packets over a LAN.

32
New cards

What is an IP Address?

A unique identifier for a device on a network.

33
New cards

What are two advantages of cloud storage?

Accessible from anywhere with internet, reduces the need for physical storage devices and supports data backup.

34
New cards

What is Encryption?

A security technique that converts readable data into an encoded format to prevent unauthorized access.

35
New cards

What is a Firewall?

A program that checks and filters all the data passing into your system from a network.

36
New cards

What problems are caused by computer viruses?

System slowdowns, data loss, unauthorized access and security breaches.

37
New cards

How are viruses spread?

Downloading infected email attachments, clicking on malicious links, or being transferred on removable media like USB drives.

38
New cards

What is Ransomware?

Encrypts files, demands payment.

39
New cards

What are Bots?

Take control of computers, form botnets for destructive means.

40
New cards

What is reCAPTCHA?

A security service that protects websites that post spam and steal data.

41
New cards

What is a Hacker?

A person who gains unauthorised access to computer data.

42
New cards

What is a Backdoor?

An unauthorised (or undocumented) way of accessing a computer.

43
New cards

What is the data size order, from smallest to largest?

Kilo, Mega, Giga, Tera, Peta, Exa, Zeta.

44
New cards

What is a Database?

A structured collection of data; often defined as organised data.

45
New cards

What is a Table?

A structured set of data stored in tables.

46
New cards

What is a Record?

A row in a table, representing a single entity.

47
New cards

What is a Field?

A column in a table, representing an attribute of the entity.

48
New cards

What is a Primary Key?

Uniquely identifies each record in a table.

49
New cards

What is a Foreign Key?

A field in one table that refers to the primary key in another table.

50
New cards

What is the importance of related tables?

Using multiple related tables instead of putting all data in one table helps avoid repetition (data redundancy) and organize data better.

51
New cards

What is SQL (Structured Query Language)?

A language used to interact with databases to retrieve, update, and manage data efficiently.

52
New cards

What is the purpose of the SELECT command in SQL?

Used to retrieve data from a database.

53
New cards

What is the purpose of the INSERT INTO command in SQL?

Used to add new records into a table.

54
New cards

What is the purpose of the UPDATE command in SQL?

Used to modify existing records in a table.

55
New cards

What is the purpose of the DELETE FROM command in SQL?

Used to remove records from a table.

56
New cards

What is the purpose of the WHERE clause in SQL?

Used to filter records based on a specified condition.

57
New cards

What is the purpose of the ORDER BY clause in SQL?

Used to sort data.

58
New cards

What is the purpose of the JOIN (INNER JOIN) clause in SQL?

Used to combine rows from two or more tables based on a related column between them.

59
New cards

What is a Database Form (e.g., Microsoft Access Form) used for?

Used for entering and viewing data easily.

60
New cards

What are the key principles of database design?

Identify main entities, determine key fields for each table, establish relationships using primary and foreign keys, normalize data, ensure data validation and implement security measures.

61
New cards

What is HTML (HyperText Markup Language)?

The language used to structure web pages, defining the content and structure of documents online.

62
New cards
What is the purpose of the

to

tags in HTML?
Used to create headings in HTML, with

being the largest.

63
New cards
What is the purpose of the (anchor) tag in HTML?

Creates hyperlinks, allowing users to navigate to other pages or resources.

64
New cards
What is the purpose of the tag in HTML?

Displays an image on a webpage.

65
New cards

What is the purpose of the

Used to embed content from another source into a webpage.

66
New cards

What is the purpose of HTML comments (``)?

Used to add notes within the HTML code that do not appear on the webpage itself.

67
New cards

What is the role of a Web Browser?

Interprets and displays HTML/CSS and allows navigation via hyperlinks and URLs.

68
New cards

What is a good reason to use a footer on a webpage?

To provide contact information.

69
New cards

What are the most important features for accessibility in web design?

Using easy-to-read fonts and good contrast.

70
New cards

What is Qualitative Data?

Used for categorising different items of data and gathers detailed personal experiences and emotions.

71
New cards

What is Quantitative Data?

Used for ranking counts of items and things.

72
New cards

What are some examples of Digital Data?

Text and documents, messages, images, videos and sound.

73
New cards

What is Information (often defined as)?

Organised data.

74
New cards

What is Primary Data?

Collected by the researcher himself.

75
New cards

What is Secondary Data?

Collected from other people's collections.

76
New cards

What is a Focus Group?

Individuals discuss a topic in a group setting, guided by a moderator.

77
New cards

What is an Online Survey?

Participants answer a set of questions without interviewer interaction.

78
New cards

What does Data Bias involve?

Involves manipulating data to present an unfair view.

79
New cards

What are the major risks of Big Data?

Privacy concerns and security breaches.

80
New cards

What is Data Privacy?

Concerns how private data is stored and shared, involving transparency and allowing anonymity where possible.

81
New cards

What is Data Security?

Protecting data from people who shouldn't have access to it. Includes creating passwords, using secure folders, and not sharing files indiscriminately.

82
New cards

What is Ethical Responsibility in computing?

Acting within society's values, doing the right thing by others.

83
New cards

What is Legal Responsibility in computing?

Ensuring that everything is carried out within the law.