Summer Assessment Revision Flashcards

1
Q

Name three ways a password can be made more secure

A

1) Make it longer
2) Use numbers, letters and symbols
3) Mix uppercase and lowercase letters

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

What is the subject section of an email used for

A

Writing a short description of what the email is about

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

Everything we do or say online reflects on us in the real world. What is the term used to describe this?

A

Digital Footprint

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

What is cyberbullying?

A

the use of electronic communication to bully a person, typically by sending messages of an intimidating or threatening nature:

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

What 4 things can you do if you are worried about cyberbullying?

A

1) Tell a teacher
2) Speak to a trusted adult outside school
3) Use the CEOPS website
4) Report the behaviour to the social media website
5) Contact Childline

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

True or False: When creating presentations you should use lots of different colours

A

False! It is generally better to stick to a few colours

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

What things should you keep OFF your social media profiles?

A

1) Your real name
2) The school you go to
3) Your address or current location
4) Your real photo
5) Your date of birth

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

What is the Internet?

A

A vast network of computers all connected together.

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

What is The Internet Of Things?

A

This is everyday things that are connected to the internet

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

What is the World Wide Web?

A

A service provided on the internet. It is the websites, web pages, and links found on the internet.

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

What is Voice over Internet Protocol? (VOIP)

A

This allows voice data to be sent in packets over the internet.

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

What is E-mail?

A

A service that allows users to send and receive electronic messages

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

What are the advantages of E-mail over other ways of communicating?

A

1) Fast
2) Free
3) Documents and links can be attached

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

One piece of hardware found on a network is a Hub. What does a hub do?

A

A hub links all other devices on the network. It can forward on packets of information to their destination.

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

What is the purpose of a server on a network?

A

A server and hold files and applications for all devices that are connected to the network.

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

What role does a Router play on a network?

A

A router acts as a gateway connecting our home and office networks to the internet.

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

To communicate computers must follow certain network protocols. What does this mean?

A

A network protocol is a set of rules that all computers must follow when they send or receive information. If computers do not follow the same protocol they will not be able to communicate.

18
Q

What software would be best used to write an essay?

A

Word processing software.

19
Q

What software would be best used to send an electronic message?

A

E-mail software

20
Q

If you were planning a party and wanted to calculate the price of all the decorations and food you needed to buy, what software would be best?

A

Spreadsheet software.

21
Q

If you wanted to make a logo for a website, what software would be best?

A

Image manipulation software.

22
Q

When working with software applications. What does formatting mean?

A

Formatting is when we change the appearance of the document by using features such as font styles, spacing, size and colours.

23
Q

If you use a picture from the internet without permission what law could you be breaking?

A

Copyright Designs and Patents Act

24
Q

If you are happy for other people to use your digital work what license can you give them?

A

Creative commons licence

25
Q

Give three ways of checking the reliability of information you find online.

A

1) Check the author - are they an expert or professional in that area?
2) Check the date - is it recent?
3) Can you find the same information elsewhere online?

26
Q

What is a citation?

A

When you include someone else’s work in your own and acknowledge them

27
Q

What is a paraphrase?

A

When you repeat something written or spoken using different words

28
Q

What is it called when you use someone else’s words or work without acknowledging them

A

Plagiarism

29
Q

How can you make Tracy the turtle move forward 50 steps?

A

forward(50)

30
Q

How do you make Tracy turn left or right 90 degrees?

A

left(90)
right(90)

31
Q

How do you stop Tracy from drawing a line when she moves across the screen?

A

penup()

32
Q

How do you make Tracy draw a line as she moves around the screen?

A

pendown()

33
Q

How do you tell Tracy to repeat something 5 times?

A

for i in range(5):
repeated code goes here!

34
Q

Write the instructions to draw a square using a loop

A

for i in range(4):
forward(50)
right(90)

35
Q

How do you make Tracy run commands faster?

A

speed(0)
1 - 10 = Slow to fast
0 = Fastest

36
Q

How do you make Tracy go back without changing the direction she is facing?

A

backward(50)

37
Q

How do you make Tracy draw a circle with a radius of 50 pixels?

A

circle(50)

38
Q

How do you make Tracy move to a specific co-ordinate on the screen?
For example, x = 100 y = -100

A

setposition(100,-100)

39
Q

What instructions would you give to Tracy to draw a rectangle with a width of 100 and height of 50?

A

for i in range(2):
forward(100)
left(90)
forward(50)
left(90)

40
Q

How can you change the color of the line Tracy draws from the default black to red?

A

color (“red”)

41
Q

How can you make Tracy draw a Hexagon?

A

for i in range(6):
forward(50)
rigth(60)

42
Q

how do you create a function for Tracy the turtle?

A

def function_name():
some code goes here!