AS Level Past Paper Questions

WJEC AS Level Computer Science

Summer 2024 logical operations 6m truth table Q1

Draw a truth table for the following Boolean expression:: X = P ⊕ Q + R·(P + Q̄)

PQRP⊕QP+Q̄R·(P+Q̄)X
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
Summer 2024 data transmission 5m short answer Q2a

Describe the typical contents of a TCP/IP packet.

Summer 2024 data transmission 3m short answer Q2b

Explain network collisions, how they are detected, and dealt with.

Summer 2024 logical operations 8m written Q3

Clearly showing each step, simplify the following Boolean expression:

A·(B + C) + C·(A + C) + B·(B + A)

Summer 2024 hardware communication 1m short answer Q4a

Describe the term 'word length' in relation to a CPU.

Summer 2024 organisation of data 4m short answer Q4b

Convert the denary number 27₁₀ and the hexadecimal number 7E₁₆ into two 8-bit binary numbers. Add the two numbers together using binary addition, leaving your answer in binary.

You must show all of your workings.

Summer 2024 organisation of data 3m short answer Q4c

Using the binary number 101.0101₂, demonstrate truncation to one binary place, and calculate the effect upon accuracy in terms of relative error.

Summer 2024 principles programming 8m written Q5

A builders' merchant wants to convert imperial measurements for length (inches) into metric measurements.

1 inch = 2.54 cm
1 inch = 0.0254 m

Write an algorithm, using pseudo-code, that will allow a user to input:
- the imperial measurement (in inches)
- whether the output is to be in cm or m.

The algorithm should terminate when a user inputs a rogue value less than 0.0.
It should output a suitable error message for any measurement entered that is not a real data type.
It should use self-documenting identifiers.

Summer 2024 organisation of data 6m written Q6

Describe the difference between fixed and variable length records. Give an example of data that could be contained in each.

Summer 2024 organisation of data 6m written Q7

Explain the difference between sequential and indexed sequential file access.

Summer 2024 software maintenance 4m written Q8

Describe computer-based processes that protect the security of data.

Summer 2024 principles programming 2m code error Q9a

Consider the constructs in the following algorithm. Identify and describe the purpose of the constant.

START
  factor = 2
  i = 0
  input num
  while (i <= 10)
    if i MOD 2 = 0
      num = num + i
    else
      num = num * factor
    end if
    i = i + 1
  end while
  output num
END
Summer 2024 principles programming 2m short answer Q9b

From the algorithm above, identify and describe the purpose of a variable.

Summer 2024 principles programming 2m short answer Q9c

From the algorithm above, identify and describe the purpose of the selection construct.

Summer 2024 principles programming 2m short answer Q9d

From the algorithm above, identify and describe the purpose of the repetition construct.

Summer 2024 principles programming 2m written Q10a

Describe the relationship between an object and a class.

Summer 2024 principles programming 1m short answer Q10b_i

From the class diagram (Person → Pupil, Staff), give one example of a super class.

Summer 2024 principles programming 1m short answer Q10b_ii

From the class diagram, give one example of a sub class.

Summer 2024 principles programming 1m short answer Q10b_iii

From the class diagram, give one example of a method that does not require a parameter.

Summer 2024 principles programming 3m written Q10c

Describe the difference between public, private and protected methods.

Summer 2024 software design 4m written Q11a

Describe the contents and use made of user documentation.

Summer 2024 software design 4m written Q11b

Describe the contents and use made of maintenance documentation.

Summer 2024 software design 6m written Q12

Explain the role of Integrated Development Environment (IDE) tools in developing and debugging programs.

Summer 2024 program design 3m written Q13a

Describe the following stage in the compilation process: Lexical analysis.

Summer 2024 program design 3m written Q13b

Describe the following stage in the compilation process: Semantic analysis.

Summer 2024 operating system 10m written Q14

Describe the role of the operating system in providing a user interface and managing hardware resources.

Summer 2023 organisation of data 6m matching Q1a

Complete the table by providing an example and the storage requirements (in bits) for each data type.

Description
Summer 2023 organisation of data 2m short answer Q1b

Describe how character sets are used in a computer system.

Summer 2023 hardware communication 3m short answer Q2a_i

A single-core processor processes Y = (4×5) + (1×6) + (5×3) + (3×2) in seven steps. Describe, showing each step, how a quad-core processor would process the calculation.

Summer 2023 hardware communication 1m short answer Q2a_ii

State the name given to this method of processing data (where multiple cores process parts of a calculation simultaneously).

Summer 2023 hardware communication 4m written Q2b

Identify and state the purpose of four components in a CPU.

Summer 2023 logical operations 3m short answer Q3

The following data is stored in an 8 bit register: 10111000. Demonstrate how the state of the most significant bit can be determined using a logical operation.

Summer 2023 hardware communication 6m written Q4a

Explain, with reference to the functional characteristics of a Hard Disk Drive (HDD), how performance is affected by data fragmentation.

Summer 2023 hardware communication 3m short answer Q4b

Describe how the effect of fragmentation can be reduced on a HDD.

Summer 2023 data transmission 1m short answer Q5a

State what is meant by the term handshaking.

Summer 2023 data transmission 3m written Q5b

Explain the importance of having networking standards.

Summer 2023 data transmission 6m written Q5c

Name two standard networking protocols and describe their function and importance.

Summer 2023 data transmission 6m written Q6

Describe simplex, half duplex and full duplex data transmission methods and give an example use for each.

Summer 2023 principles programming 8m written Q7

Write an algorithm, using pseudo-code, which will allow a user to enter the radius to calculate the area and circumference of a circle. The values input should be in metres, but the output should be converted into centimetres (1 m² = 10,000 cm² and 1 m = 100 cm).

For example: Input r = 1.5 (metres) → Output A = 70650 cm², C = 942.0 cm

Your algorithm should output a suitable error message if the value entered is not valid.
Your algorithm should be written using self-documenting identifiers.

Summer 2023 logical operations 7m written Q8

Clearly showing each step, simplify the following expression using only Boolean identities and rules:

Q·(P + Q) + P·(1 + R) + Q·(P·P̄)

Summer 2023 algorithms programs 2m short answer Q9a_i

The array myArray contains [1, 2, 5, 6, 8, 11, 14] at indices (0) to (6). Write down the order in which each number will be accessed when performing a linear search for 14.

Summer 2023 algorithms programs 2m short answer Q9a_ii

The array myArray contains [1, 2, 5, 6, 8, 11, 14] at indices (0) to (6). Write down the order in which each number will be accessed when performing a binary search for 14.

Summer 2023 algorithms programs 2m short answer Q9b

Give one advantage and one disadvantage of a binary search over a linear search.

Summer 2023 organisation of data 6m written Q10

Describe the principles of data compression algorithms.

Summer 2023 organisation of data 2m short answer Q11a

Describe the term data structure and why data structures are used in computing.

Summer 2023 organisation of data 2m short answer Q11b_i

Using the films table (FilmID, Title, Certificate, Genre), describe a 'field' with an example from the table.

Summer 2023 organisation of data 2m short answer Q11b_ii

Using the films table, describe a 'record' with an example from the table.

Summer 2023 organisation of data 2m short answer Q11b_iii

Using the films table, describe a 'primary key' with an example from the table.

Summer 2023 organisation of data 6m written Q12

Describe sequential files and how records are added to them.

Summer 2023 software design 3m written Q13

Describe, giving an example, one type of maintenance performed on a computer program.

Summer 2023 organisation of data 12m written Q14

Andrew is considering three methods for storing positive numbers using two's complementation:

Method 1: Store numbers as an integer using an 8 bit register.
Method 2: Store real numbers in normalised floating-point form, using a 5 bit mantissa and a 3 bit exponent.
Method 3: Store real numbers in normalised floating-point form, using a 4 bit mantissa and a 4 bit exponent.

Calculate the denary range (highest and lowest) of numbers that can be stored by each method. Compare the advantages of representing numbers in integer and floating-point forms.

Summer 2022 hardware communication 4m written Q1

Describe the fetch-decode-execute cycle showing how data can be read from RAM into registers. Your answer should make reference to the MAR, MDR, PC and CIR.

Summer 2022 hardware communication 4m written Q2a

Describe the use of voice input as a contemporary method for input. Your answer should include benefits and drawbacks.

Summer 2022 hardware communication 4m written Q2b

Describe the use of touch input as a contemporary method for input. Your answer should include benefits and drawbacks.

Summer 2022 data transmission 2m short answer Q3a

Explain the role of multiplexing on a network.

Summer 2022 data transmission 6m written Q3b

Describe the contents of a typical TCP/IP data packet.

Summer 2022 hardware communication 1m short answer Q4a

State the meaning of the term 'word'.

Summer 2022 organisation of data 5m short answer Q4b

Convert the hexadecimal numbers AE₁₆ and 1B₁₆ into binary and, using binary addition, calculate the number that would result from adding them. Convert your answer into denary. You must show all of your working.

Summer 2022 organisation of data 2m short answer Q4c

Show how −39₁₀ would be represented using sign/magnitude and how it would be represented using two's complement representation in an 8 bit register.

Summer 2022 organisation of data 3m short answer Q4d_i

In a computer system, real numbers are stored in normalised floating point form using two's complementation, an 8 bit mantissa and a 3 bit exponent.

The following is a floating point representation: 0.1110100 010

Calculate the denary value of the mantissa and exponent, and convert this floating point number into a denary number.

Summer 2022 organisation of data 3m short answer Q4d_ii

Showing your workings, calculate the largest positive denary number that this computer system can store (8 bit mantissa, 3 bit exponent, two's complement, normalised floating point).

Summer 2022 organisation of data 5m written Q4e

Using the number 111.10110₂, describe truncation and rounding to two binary places, and their effect upon accuracy in terms of their absolute errors. State which method is more accurate.

Summer 2022 organisation of data 6m written Q5

Explain the difference between fixed and variable length records.

Summer 2022 software maintenance 6m written Q6a

Describe the benefits of user groups having different views of database data. Describe how these views may be varied for each user group.

Summer 2022 software maintenance 1m short answer Q6b

Describe the need for archiving files.

Summer 2022 principles programming 8m written Q7

The following user login details are stored in a two-dimensional string array called loginDetails:

[0] MurahanA / 152599 / Alice Murahan
[1] JonesT / p@ssword12134 / Tim Jones
[2] MurrayB / Fred1985 / Benjamin Murray
[3] AliZ / 1234 / Zaheer Ali
[4] DaviesD / #12356! / Denzil Davies

Write an algorithm, using pseudo-code, which will allow a user to enter a username and password to login. If the user has logged in successfully, display a suitable welcome message followed by their full name. Output a suitable error message if the password entered is incorrect or if the username is not found. Use self-documenting identifiers.

Summer 2022 operating system 4m written Q8

Describe a suitable mode of operation for producing payslips in a payroll application.

Summer 2022 logical operations 5m written Q9

Clearly showing each step, simplify the following Boolean expression:

(Ā + B)·(A + C) + B·B̄

Summer 2022 principles programming 2m short answer Q10a_i

Consider the algorithm for calculating the area of a circle:

StarProc areaOfCircle
A is real
B is real
C is real
set C = 3.14
output "Please enter the radius"
input A
B = C * (A * A)
output "The Area is ", B
End Proc

Identify and define the constant in the algorithm.

Summer 2022 principles programming 2m short answer Q10a_ii

From the same algorithm, identify and define a variable.

Summer 2022 principles programming 4m written Q10b

Describe why the use of self-documenting identifiers is important in programs and suggest suitable changes that you would make to the algorithm above to achieve this.

Summer 2022 principles programming 4m written Q11a

Describe the distinguishing features of a procedural programming paradigm.

Summer 2022 principles programming 4m written Q11b

Describe the distinguishing features of a mark-up programming paradigm.

Summer 2022 software maintenance 4m written Q12

Describe the difference between malicious and accidental damage to data and identify one situation where each could occur.

Summer 2022 operating system 11m written Q13

Explain the purpose of expert systems and describe the possible effects of these systems on the nature of employment in wider society. Discuss their general benefits and drawbacks.

Summer 2019 data transmission 1m short answer Q1a

Define the term Internet.

Summer 2019 data transmission 1m short answer Q1b_i

Describe the use of Universal Datagram Protocol (UDP).

Summer 2019 data transmission 1m short answer Q1b_ii

Describe the use of Dynamic Host Configuration Protocol (DHCP).

Summer 2019 data transmission 1m short answer Q1b_iii

Describe the use of Simple Mail Transfer Protocol (SMTP).

Summer 2019 principles programming 2m short answer Q2a

The following algorithm has myFunction which declares c and d as local variables. The main program declares a and b, sets a = 0, calls myFunction, then attempts to output a, b, c and d.

State the outputs that this algorithm will give.

Summer 2019 principles programming 4m written Q2b

Explain why the algorithm (which tries to output local variables c and d from myFunction in the main program) does not work as intended.

Summer 2019 hardware communication 6m written Q3

Apart from buses, describe the function of three main components in a contemporary Von Neumann type CPU architecture.

Summer 2019 hardware communication 5m written Q4a

Describe the functional characteristics of a HDD.

Summer 2019 hardware communication 3m short answer Q4b_i

Explain why there would be a difference in disk access speeds when loading a fragmented file and a non-fragmented file into main memory from an HDD.

Summer 2019 hardware communication 2m short answer Q4b_ii

An alternative secondary storage medium which does not have the same fragmentation issue is a Solid State Drive (SSD). Explain why this is the case.

Summer 2019 logical operations 1m short answer Q5a

Give the simplest Boolean expression for the truth table:
A=0,B=0→C=0; A=0,B=1→C=1; A=1,B=0→C=0; A=1,B=1→C=0

Summer 2019 logical operations 1m short answer Q5b

Give the simplest Boolean expression for the truth table:
P=0,Q=0→R=1; P=0,Q=1→R=0; P=1,Q=0→R=0; P=1,Q=1→R=0

Summer 2019 logical operations 1m short answer Q5c

Give the simplest Boolean expression for the truth table:
X=0,Y=0→Z=1; X=0,Y=1→Z=0; X=1,Y=0→Z=0; X=1,Y=1→Z=1

Summer 2019 principles programming 2m short answer Q6a

Explain what is meant by the term parameter and how passing parameters by reference works.

Summer 2019 principles programming 2m short answer Q6b

Describe another method for passing parameters to a procedure.

Summer 2019 principles programming 1m short answer Q6c

Give one disadvantage of passing parameters by reference.

Summer 2019 organisation of data 4m written Q7a

Draw a clearly labelled diagram that shows how a transaction file and master file are used during an update.

Summer 2019 organisation of data 4m written Q7b

Describe the data used and the organisation of transaction files and a master file for an application of your choice.

Summer 2019 operating system 3m short answer Q7c

Describe the most suitable mode of operation for your chosen application (transaction/master file update).

Summer 2019 logical operations 6m written Q8

Clearly showing each step, simplify the following Boolean expression using Boolean algebra and identities:

A·(B + C) + A·(0 + Ā) + B·(1 + C)

Summer 2019 software maintenance 6m written Q9

Describe methods used in file security to prevent accidental data loss from computer systems.

Summer 2019 algorithms programs 3m short answer Q10a

Using the binary search algorithm provided, show how it will reduce the part of the array being searched at each repetition when searching for 22 in: [12, 22, 27, 31, 38, 54, 63, 71, 73, 87, 92].

Summer 2019 algorithms programs 8m written Q10b

Write a linear search algorithm, using pseudo-code, for the array myArray = [45, 12, 98, 54, 56] (indices 1-5). Your algorithm should output the position of the searchValue if found, or a suitable message if not found. Use self-documenting identifiers.

Summer 2019 algorithms programs 2m short answer Q10c

Describe an appropriate circumstance for the use of each search type (linear and binary).

Summer 2019 organisation of data 3m short answer Q11a

Convert 6C₁₆ and AF₁₆ into binary and add them together using binary addition.

Summer 2019 organisation of data 6m written Q11b

In a certain computer system, real numbers are stored in normalised floating-point form using a positive 4 bit mantissa and a positive 4 bit exponent. Calculate the denary range of positive real numbers that can be stored.

Summer 2019 organisation of data 4m written Q11c

Give the advantages of representing numbers in integer form and in floating-point form.

Summer 2019 software design 6m written Q12

Describe the different methods of investigation used by a systems analyst.

Summer 2019 organisation of data 11m written Q13

Discuss the advantages of using database systems and their associated features to store data.

Summer 2018 logical operations 4m truth table Q1

Complete the following truth table for the expression NOT((A OR C) XOR (B AND C)).: NOT((A OR C) XOR (B AND C))

ABCA OR CB AND C(A OR C) XOR (B AND C)NOT((A OR C) XOR (B AND C))
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
Summer 2018 data transmission 1m short answer Q2a

State the use of the DHCP network protocol.

Summer 2018 data transmission 1m short answer Q2b

State the use of the SMTP network protocol.

Summer 2018 data transmission 1m short answer Q2c

State the use of the HTTP network protocol.

Summer 2018 software maintenance 4m written Q3a

Describe the dangers that can arise from the use of computers to store personal data.

Summer 2018 software maintenance 4m written Q3b

Describe processes that protect the security and integrity of data.

Summer 2018 logical operations 8m written Q4

Clearly showing each step, simplify the following expression using Boolean identities and rules:

A·(Ā + B) + C̄·(A + B) + A·(B̄ + C) + B̄·B

Summer 2018 organisation of data 3m short answer Q5a

Convert 31₁₆ and 6D₁₆ into binary numbers and add them together using binary addition.

Summer 2018 organisation of data 3m short answer Q5b_i

In a certain computer system, real numbers are stored in floating point form using two's complementation, a 12 bit mantissa and a 4 bit exponent. Convert 16.125₁₀ into this floating point form.

Summer 2018 organisation of data 3m short answer Q5b_ii

In a different computer system, real numbers are stored in floating point form using two's complementation, a 5 bit mantissa and a 3 bit exponent. Calculate the largest positive denary number this system can store.

Summer 2018 organisation of data 2m short answer Q6a

State the full name of the data structure used to store monthly handset recycling totals per staff member, and state why it is the most appropriate.

Summer 2018 organisation of data 1m short answer Q6b

State the most suitable data type for the handset recycling data structure.

Summer 2018 organisation of data 2m short answer Q6c

PhoneRecycle also stores customer details. State the most suitable data structure and justify your choice.

Summer 2018 hardware communication 5m written Q7

Explain parallel processing and caching in a CPU.

Summer 2018 principles programming 8m written Q8

EuroTravel offers currency conversion: £1.00 = €1.14. Write an algorithm using pseudo-code that allows a user to enter a value in pounds and outputs conversions for each value £5 below and £5 above the initial value input.

For example, if the user inputs £500.00, it outputs £495 to £505 with their euro equivalents.

Your algorithm should output a suitable error message for non-numeric data.
Use self-documenting identifiers.

Summer 2018 algorithms programs 6m written Q9a

Explain how linear search and binary search algorithms operate.

Summer 2018 algorithms programs 3m written Q9b

Describe appropriate circumstances for the use of each search algorithm (linear and binary).

Summer 2018 algorithms programs 3m short answer Q10a

The bubble sort algorithm provided contains an error. Suggest appropriate test data to dry-run this algorithm to identify possible errors.

Summer 2018 algorithms programs 2m short answer Q10b

Describe how a bubble sort algorithm should operate.

Summer 2018 algorithms programs 2m short answer Q10c

Explain why the bubble sort algorithm in this question will fail.

Summer 2018 algorithms programs 1m short answer Q10d

Suggest a suitable change to overcome the problem in the bubble sort algorithm.

Summer 2018 algorithms programs 3m short answer Q10e

Name and describe a different sort algorithm.

Summer 2018 operating system 5m written Q11a

Explain the use of a range of utility software in computer systems.

Summer 2018 operating system 6m written Q11b

Explain how an operating system manages computer resources.

Summer 2018 software design 8m written Q12

Compare bespoke and off-the-shelf software.

Summer 2018 software design 11m written Q13

An analyst has been commissioned to produce a new computer based system for weather forecasting. Discuss the purpose of a feasibility study and describe the processes an analyst would carry out. Describe the role of the computer in weather forecasting.

Summer 2017 logical operations 2m truth table Q1

Complete the following truth table.: B XOR (A AND B)

ABA AND BB XOR (A AND B)
0 0
0 1
1 0
1 1
Summer 2017 hardware communication 10m written Q2

Compare the functional characteristics of Hard Disc Drives (HDD) and Optical Drives and give a typical use and storage capacity for each.

Summer 2017 data transmission 1m short answer Q3a

State what is meant by a protocol.

Summer 2017 data transmission 1m short answer Q3b_i

Name the most appropriate protocol for obtaining an IP address from a server.

Summer 2017 data transmission 1m short answer Q3b_ii

Name the most appropriate protocol for sending an email from one server to another.

Summer 2017 data transmission 1m short answer Q3b_iii

Name the basic communication protocol used on the Internet.

Summer 2017 data transmission 1m short answer Q3c

State the role of handshaking.

Summer 2017 data transmission 2m short answer Q3d

Data is sometimes detected simultaneously on a bus network. State the name given to this problem and describe how the network deals with it.

Summer 2017 data transmission 3m written Q3e

Describe how traffic is routed on a packet switched network.

Summer 2017 organisation of data 2m short answer Q4a_i

Using the denary example 108₁₀, calculate the minimum storage requirements for an integer data type within a range of 0₁₀ to 127₁₀.

Summer 2017 organisation of data 1m short answer Q4a_ii

In a system using sign and magnitude representation, give the range for a signed integer data type with the same storage requirements as 7 bits.

Summer 2017 organisation of data 3m written Q4b

Describe the use and advantages of the Unicode standardised character set.

Summer 2017 organisation of data 2m short answer Q4c

Giving suitable examples, compare the storage requirements for a character and a string data type.

Summer 2017 software maintenance 6m written Q5

Describe potential threats to computer systems and how contingency planning can help recover from disasters.

Summer 2017 logical operations 6m written Q6

Clearly showing each step, simplify the following Boolean expression:

A·(A + B) + C·(A + B) + A·(B + C)

Summer 2017 organisation of data 5m short answer Q7a

Convert the denary numbers 87₁₀ and 113₁₀ into their equivalent unsigned 8 bit binary numbers. Carry out the binary addition and convert your answer into hexadecimal. Show all workings.

Summer 2017 organisation of data 3m short answer Q7b_i

In a computer system using two's complementation, an 8 bit mantissa and a 4 bit exponent, convert 4.125₁₀ into normalised floating-point form.

Summer 2017 organisation of data 3m short answer Q7b_ii

The following floating-point number uses an 8 bit mantissa and 4 bit exponent (two's complement):
Mantissa: 0.11110 00, Exponent: 0111

Calculate the denary value of the mantissa and exponent, and convert to denary.

Summer 2017 organisation of data 2m short answer Q8a

At Myles-Hill College, students study courses taught by teachers. Using an example from this scenario, explain what is meant by a foreign key in a database.

Summer 2017 organisation of data 1m short answer Q8b

Describe the difference between flat file and relational database systems.

Summer 2017 organisation of data 3m written Q8c

Construct an entity relationship diagram for the Myles-Hill College scenario (students study courses, courses taught by teachers; a student can study many courses, a teacher can teach many courses, each course taught by one teacher).

Summer 2017 principles programming 4m written Q9

Describe the object-oriented approach to programming and the relationship between an object, class and method.

Summer 2017 principles programming 8m written Q10

Write an algorithm using pseudo-code that determines if a number entered (between 3 and 256 inclusive) is a prime number. A prime number is divisible only by itself and 1. Use self-documenting identifiers with suitable inputs and outputs.

Summer 2017 operating system 1m short answer Q11a_i

The operating system enables users to set up a hierarchical storage structure. Draw a clearly labelled diagram to illustrate a hierarchical structure.

Summer 2017 operating system 1m short answer Q11a_ii

Give one advantage of using a hierarchical storage structure.

Summer 2017 operating system 6m written Q11b

Attributes can be assigned to files by the operating system (e.g. read only). Name and describe three other file attributes.

Summer 2017 algorithms programs 4m written Q12

Describe how bubble sort and insertion sort algorithms operate.

Summer 2017 software maintenance 5m written Q13

Explain how the Data Protection Act impacts on an organisation that stores data on a computer system.

Summer 2017 program design 12m written Q14

Describe the difference between high and low level languages. Explain the role of the Integrated Development Environment (IDE) in developing high and low level language programs.

Summer 2016 principles programming 3m short answer Q1a

The algorithm checks if numbers are even or odd using MOD. Explain the role of MOD in the algorithm.

Summer 2016 principles programming 2m short answer Q1b

Using an example from the EvenOdd algorithm, describe the purpose of selection.

Summer 2016 principles programming 2m short answer Q1c

Using an example from the EvenOdd algorithm, describe the purpose of repetition.

Summer 2016 logical operations 4m truth table Q2

Complete the following truth table for: A·(Ā + B·C): A·(Ā + B·C)

ABCĀB·CĀ + B·CA·(Ā + B·C)
1 1 1
1 0 1
0 1 1
0 0 1
Summer 2016 hardware communication 8m written Q3

Describe the function of the main components of the Von Neumann CPU architecture.

Summer 2016 software design 6m written Q4

Describe six Integrated Development Environment (IDE) tools used in the development and debugging of programs.

Summer 2016 data transmission 3m short answer Q5a

Describe simplex, half-duplex and full duplex transmission methods.

Summer 2016 data transmission 2m short answer Q5b

Describe what is meant by a data collision on a bus network and how such collisions should be dealt with.

Summer 2016 organisation of data 1m short answer Q6a_i

State the meaning of 'Byte'.

Summer 2016 organisation of data 1m short answer Q6a_ii

State the meaning of 'Word'.

Summer 2016 organisation of data 4m short answer Q6b

Convert the hexadecimal numbers 2A₁₆ and BB₁₆ into two binary numbers and, using binary addition, calculate the binary number that would result from adding them. Show all working.

Summer 2016 organisation of data 2m short answer Q6c

Using an example, describe two's complementation in an 8 bit register.

Summer 2016 organisation of data 3m short answer Q6d

A floating point number uses two's complementation, an 8 bit mantissa (0.1101000) and a 4 bit exponent (0011). Calculate the denary value of the mantissa and exponent, and convert to denary.

Summer 2016 organisation of data 6m written Q6e

Using the number 26.8₁₀ as an example, describe truncation and rounding, and their effect upon accuracy.

Summer 2016 organisation of data 6m written Q7

Describe direct (random) access files in terms of hashing algorithms, overflow areas and the need for files to be re-organised on occasions.

Summer 2016 algorithms programs 8m written Q8

Write a binary search algorithm, using pseudo-code, for the array myArray = [23, 34, 39, 42, 47, 56, 61] (indices 0-6). Output the position of the SearchValue if found, or a suitable message if not present. Use self-documenting identifiers.

Summer 2016 principles programming 4m short answer Q9

Giving an example, describe standard modules and their benefits.

Summer 2016 logical operations 5m written Q10

Clearly showing each step, simplify the following Boolean expression:

A·(A + C) + C·(A + B)

Summer 2016 organisation of data 4m written Q11

A university has departments, each offering several courses. Modules make up each course. Students enrol on a course and take modules for that course. Draw an entity relationship diagram.

Summer 2016 software design 10m written Q12a

Compare two methods of changeover that a systems analyst may suggest to an organisation.

Summer 2016 software design 6m written Q12b

A systems analyst produces maintenance documentation. Describe the typical contents of this documentation.

Summer 2016 software maintenance 10m written Q13

A large organisation wishes to back up its network data daily. Explain a suitable backup procedure and compare three different types of secondary storage devices on which data can be stored.