Preskoči na glavni sadržaj
Prijava
Sign up for FREE
arrow_back
Biblioteka

Copy of Year 9 Computing Assessment 1 Winter 2025 - Topics 9.1 and 9.2 (12/4/2025)

star
star
star
star
star
Posljednje ažuriranje 7 months ago
35

Please wait here until your teacher tells you to begin.

Topic 9.1 - Data Representation 3
Obavezno
1
NCCE.CT.01
Obavezno
3
NCCE.CT.01
Obavezno
7
NCCE.CT.01
Obavezno
2
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
2
NCCE.CT.01
Obavezno
4
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
2
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
5
NCCE.CT.01
Obavezno
1
NCCE.CT.01
Obavezno
3
NCCE.CT.01
Topic 9.2 - Computational Thinking and Programming 3
Obavezno
8
NCCE.CT.04
Obavezno
1
NCCE.CT.05
Obavezno
2
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
2
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
3
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
1
NCCE.CT.05
Obavezno
3
NCCE.CT.05
Pitanje 1
1.

What is binary for?

Pitanje 2
2.
Pitanje 3
3.

Place the following data sizes in order, from smallest at the top to largest at the bottom.

  1. Megabyte

  2. Byte

  3. Kilobyte

  4. Bit

  5. Terabtye

  6. Nibble

  7. Gigabyte

Pitanje 4
4.
Pitanje 5
5.

Work out the answer to this binary addition sum by placing the correct digit in each box. You will need to get all the carry and all the answer boxes correct to get the point

Drugi mogući odgovor:
0
1
Pitanje 6
6.

When the answer to a binary addition has too many digits, this is called an....

Pitanje 7
7.

What is the purpose of 'ASCII'?

Pitanje 8
8.

Which of these text representation systems can represent the most characters?

Pitanje 9
9.
Drugi mogući odgovor:
Resolution
colour depth
Pitanje 10
10.

Explain how resolution and colour depth can affect the quality and file size of an image.

NOTE: There are 4 marks available for this question. You will need to be able to identify 1 impact on quality and 1 on file size, and for each you need to explain what the impact is.

Pitanje 11
11.

What is the main purpose of hexadecimal?

Pitanje 12
12.
Pitanje 13
13.
Pitanje 14
14.

Why would removing / reducing data in an image be helpful?

Pitanje 15
15.
Pitanje 16
16.

Which type of compression is used for which type of file?

Lossy

Lossless

Pictures

Sounds

Videos

Program files

Documents

Pitanje 17
17.

When capturing a sound wave to record it to digital format, the frequency that the captures are taken is called the...?

Pitanje 18
18.
Pitanje 19
19.

Match all of these terms to their correct definitions

Stavka koja se može prevućiarrow_right_altOdgovarajuća stavka

Flow chart

arrow_right_alt

A method of solving a problem logically – to think and act like a computer

Computational thinking

arrow_right_alt

The instructions or steps required to solve a problem and program the actions a computer takes

Pseudocode

arrow_right_alt

Breaking an algorithm into smaller, more manageable parts

Algorithm

arrow_right_alt

Focusing on what is important, ignoring or removing any detail that is not necessary to the core algorithm

Decomposition

arrow_right_alt

Looking for similarities and trends in computer programs and algorithms

Pattern recognition

arrow_right_alt

Shows the flow and direction of the steps of an algorithm in a visual way

Debugging

arrow_right_alt

Shows each step of an algorithm in a clearly ordered, written structure using a generic standard format - which can then be written into any programming language

Abstraction

arrow_right_alt

The act of finding and fixing bugs (errors) in your program

Pitanje 20
20.
Pitanje 21
21.
Drugi mogući odgovor:
calls
controls
functions
commands
Pitanje 22
22.
Drugi mogući odgovor:
call
command
charge
control
Pitanje 23
23.

When using a function you need to use which type of brackets?

Pitanje 24
24.

The rules that control the structure of the symbols, punctuation, and words of a programming language

Pitanje 25
25.
Pitanje 26
26.

The string data type is written within quotation marks

Pitanje 27
27.

What is a sequence?

Pitanje 28
28.

What is meant by iteration?

Pitanje 29
29.
Pitanje 30
30.

What is the function used in Python that performs count-controlled iteration?

Pitanje 31
31.

Turtle is a what within Python?

Pitanje 32
32.

Which Turtle instruction performs which action?

Stavka koja se može prevućiarrow_right_altOdgovarajuća stavka

turtle.forward(150)

turtle.left(90)

arrow_right_alt

Draws a triangle

for i in range(3):

    turtle.forward(100)

    turtle.right(120)

arrow_right_alt

Draws a square

for i in range(4):

    turtle.forward(100)

    turtle.right(90)

arrow_right_alt

Moves the turtle forward by 150 units and then turns left by 90 degrees

Pitanje 33
33.

What action will the following instruction perform?

Pitanje 34
34.
Pitanje 35
35.

Write the code required below to demonstrate how to create an pentagon (5 sides) using iteration, where each side is 50 units long.

Use your answers to the previous few questions to guide you. You should have 4 or more lines of code depending on your approach. Check the hints for more advice if you need.