Year 9 basics Flashcards

1
Q

Whats an If statement?

A

If the statement is true, then do a group of things once

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

Whats an if/else statement?

A

If the ‘if’ statement is false, the ‘else’ statements will be executed.

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

Whats a flow chart?

A

A diagram portraying a process, a system or computer algorithm.

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

What shape is the start/end of a flowchart?

A

oval - rectangle with rounded corners

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

What shape is the input/output of a flowchart?

A

A parallelogram - tilted rectangle

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

What shape is the process of a flowchart?

A

A rectangle

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

What shape is the decision of a flowchart?

A

A Diamond

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

Whats a while loop?

A

Runs the code forever until the condition is satisfied

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

Whats a for loop?

A

Runs code a certain number of times

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

Whats RAM?

A

Random Access Memory

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

Is RAM volatile or non-volatile?

A

Volatile

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

Why is RAM volatile?

A

Computer needs to be on, changes a lot. If the computer is turned off, it wipes. Day to day operations.

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

Whats ROM?

A

Read Only Memory

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

Is ROM volatile or non-volatile?

A

Non-volatile

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

Why is ROM non-volatile?

A

Changes only when programmed. Stays when the power is off.

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

What does RAM do when power is turned off?

A

It gets wiped.

16
Q

What does ROM do when the power is turned off?

A

Stays

16
Q

What does ROM do when the power is turned off?

A

Stays

17
Q

Name two differences between RAM and ROM.

A

RAM is volatile, ROM is Non-volatile. RAM is for day-to-day operations, while ROM is usually left alone for long periods of time

18
Q

Whats a subroutine?

A

A small block of code inside ‘def’ designed to preform a particular task. It can be called by writing the subroutine’s name in a program statement

19
Q

Whats an Integer?

A

A whole number. Can do mathematic functions.

20
Q

Whats a Character?

A

A single visual object to represent text, numbers, or symbols. Can do string operations.

21
Q

Whats a String?

A

A collection of Characters. Can do string operations.

22
Q

Whats a Float/Real?

A

A decimal number. Can do mathematic operations.

23
Q

Whats a Boolean?

A

True/false operations.

24
Q

Whats a Variable?

A

Stores a piece of data that might be needed later in the program. E.g. Name, Age, time, x, y.

24
Q

Whats happens if you haven’t defined a variable?

A

It does not exist to the computer

25
Q

Whats Binary?

A

A system where numbers and values are expressed 1 or 0.

26
Q

Whats Denary?

A

Denary is a base 10 number system, also known as decimal. Each number position contains one of the 10 digits of 0-9.

27
Q

Pros of Star Networks.

A

Very reliable, when a device or cable fails, other connected devices will still work. Easy to use. Highly efficient

28
Q

Whats a Star Network?

A

Each piece of network is attached to a central switch

29
Q

Cons of Star Networks.

A

High cost. Central device dependency. High maintenance.

30
Q

Whats a Mesh Network?

A

All devices and computers are interconnected.

31
Q

Pros of using Mesh Network.

A

Failure of one device does not affect the network. No traffic. Multiple paths for data transmission.

32
Q

Cons of using Mesh Network.

A

High cost. Hard to maintain.