100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
A Level Computer Science Q&A Bundle $40.49   Add to cart

Package deal

A Level Computer Science Q&A Bundle

Prepare with confidence and achieve excellence in your A Level Computer Science exams with the A Level Computer Science Q&A Bundle.

23 items

A-Level Computer Science - AQA 2024

(0)
$10.99

Arithmetic Logic Unit (ALU) The part of the central processing unit that performs arithmetic computations and logical operations Control Unit Coordinates activities in the CPU, memory and peripherals Clock Creates pulses to step the control unit through its operations. Increasing the frequ...

View example

A-Level AQA Computer Science Paper 2 2024

(0)
$14.49

Baud Rate The maximum possible number of signal changes that can occur in a wire per second. Bit Rate The number of bits that can be sent down a wire per second. Integer A whole number that can be positive, negative or zero. Examples: -3, 0, 7, 2013588. Natural (Number) A whole...

View example

A Level Computer Science AQA, Binary Representation of Images and Sound Review Questions and Answers

(0)
$8.99

Describe how bit patterns may represent other forms of data, including graphics and sound. Bit patterns can be used to store information about other forms of data, for example images can be stored using the images height and width in pixels with the colour depth and sound can be stored as digital sa...

View example

A-Level OCR Computer Science Practice Questions and Answers

(0)
$10.99

CPU Central Processing Unit ALU Arithmetic Logic Unit CU Control Unit PC (CPU) Program Counter ACC Accumulator MAR Memory Address Register MDR Memory Data Register CIR Current Instruction Register Define CPU The main processor in a computer system handling data and instructions. Define ALU ...

View example

AQA A Level Computer Science Revision Questions and Answers

(0)
$9.99

List two components with which the CPU works to execute program instructions. Memory Input and Output Devices Describe the role of the Control Unit in the fetch-decode-execute cycle. The control unit coordinates the actions of the computer. It sends out control signals to other parts of the CPU and...

View example

AQA A-Level Computer Science - Fundamentals of Programming Revision Questions and Answers

(0)
$9.99

Constants They are variable whose values will not be changed by the program. What are the advantages of having constants? - Improves the readability of code - Easier to update the programming code if the value changes - Reduce the likelihood of inconsistency causing errors if multiple places use th...

View example

Cambridge AS Level Computer Science – Theory Examination Questions and Answers

(0)
$9.99

176 Convert Denary 374 to Hexadecimal. 2DF Convert Denary 735 to Hexadecimal. Convert Hexadecimal DB7 to Binary. 64001 Convert Hexadecimal FA01 to Decimal. The binary number obtained by subtracting each digit in a binary number from 1. Define one's compliment. The one's compliment of a binar...

View example

Cambridge International AS and A-Level Computer Science (9618) Communication and Network Technologies Review Questions and Answers

(0)
$9.99

What is a static IP Address - never changes - provided by ISP What is the purpose and benefits of networking devices - File sharing - you can easily share data between different users. - Resource sharing - using peripheral devices and software between users, saves money - Sharing a single internet ...

View example

Computer Science AQA A-Level Paper 1 Revision Questions and Answers

(0)
$9.99

What is an integer? A positive or negative whole number What is a Real or Float number? A positive or negative number that can have a fractional part. What is a Boolean? True or False What is a character? A single letter, number or symbol What is a string? A group of characters What is Date/Tim...

View example

Computer Science OCR A Level Practice Questions and Answers

(0)
$10.99

Start LDA one OUT LDA zero OUT LDA count SUB one STA count BRP start HLT One DAT 1 Zero DAT 0 Count DAT 3 Explain, giving an example, how pipelining in a CPU could speed up the execution of this program. ( 3 marks ) An instruction can be fetched as the previous one is being decoded and the one befo...

View example

Computer Science Paper 1 Practice Questions and Answers

(0)
$16.99

Control Unit A register in the cpu that controls and coordinates the activities of the cpu directing the flow of data Bus a series of connectors that transfer signals between internal components Memory Read causes data from the addressed location in RAM to be placed on the data bus Memory Write C...

View example

Data Structures A Level Computer Science AQA Revision Questions and Answers

(0)
$10.49

What is a queue? A First In First Out Data Structure. What is a stack? A LIFO, last-in first-out data structure. Define Abstract data type An abstract data type is a logical description of how the data is viewed and the operations that can be performed on it, but this is not necessarily known to t...

View example

Hardware and software - A-Level Computer Science Practice Questions and Answers

(0)
$8.99

Software Software comprises all of the programs that make the computer function Hardware The physical components of a computer system Systems software Required to run and manage the computer's hardware and application programs Disk Defragmentation Process of consolidating fragmented files on the...

View example

A-Level AQA Computer Science Paper 2 Review Questions and Answers

(0)
$10.49

Baud Rate The maximum possible number of signal changes that can occur in a wire per second. Bit Rate The number of bits that can be sent down a wire per second. Integer A whole number that can be positive, negative or zero. Examples: -3, 0, 7, 2013588. Natural (Number) A whole number that is ei...

View example

OCR A Level Computer Science- Networks Review Questions and Answers

(0)
$8.99

Protocol A set of rules governing the exchange or transmission of data between devices. Hypertext Transfer Protocol (HTTP) protocol that defines how messages are formatted and transmitted over the World Wide Web File Transfer Protocol (FTP) a simple network protocol that allows the transfer of fil...

View example

OCR A level Computer Science Paper 2 Exam Revision Questions and Answers

(0)
$8.99

Abstraction Representation that is arrived at by removing unnecessary details Pop Remove and return the last item from a list/data structure Push To add an item to the top of a stack/end of a queue/list Depth First Traversal Each node in one branch is visited before backtracking to explore the ne...

View example

OCR A Level Computer Science Paper 2 Practice Questions and Answers

(0)
$9.49

Abstraction a way of separating logical and physical parts of a problem e.g. the london underground map. You get rid of unnecessary details Problem abstraction where you keep removing details until the problem reduces to one that has already been solved Modelling and Simulation Building a model of...

View example

OCR A-Level Computer Science - Software Development – Methodologies Questions and Answers

(0)
$9.49

Waterfall Method A development methodology that splits a project up into a number of sequential stages, with each stage having a specific purpose. Pure Waterfall Method Identical to Waterfall Method, except once a stage is passed it cannot be re-visited. Stages of Waterfall Method 1. Define Requir...

View example

OCR A-Level Computer Science Review Questions and Answers

(0)
$9.49

1 Dimensional Arrays A standard list array - one index is needed to search for something in an array. 2 Dimensional Arrays An array with 2 indexes needed to search - for example a table could be this. Interception of PseudoCode The ability to pick out and explain parts of code. Big O' A measure ...

View example

OCR A-Level Computer Science Software Development Review Questions and Answers

(0)
$8.99

Stages of software development analysis Design Programming Testing Implementation Evaluation Analysis defining the problem so it can be solved Design consideration of how the product will look and work Programming breaking down the problem into smaller and smaller modules so each performs a singl...

View example

OCR AS and A level Computer Science Exercises

(0)
$8.99

Q1.(a) Explain why compression is considered necessary for images on the web. [2] Transmission of data is faster (web pages will load more quickly) and uses less data allowance with smaller image files. Q1.(b) Explain why lossy compression techniques would not be suitable for use with files contain...

View example

OCR Computer Science A Level Paper 1 Exam Questions and Answers

(0)
$10.49

PC Program counter, contains the address of the next instruction CIR Current Instruction Register: stores the address of the next instruction currently being executed and decoded MAR Memory Address Register, holds relevant memory address (to read from or write to) MDR Memory Data Register, stores...

View example

WJEC A-Level Computer Science Revision Questions and Answers

(0)
$9.99

A Network of Networks. Internet A process or set of rules to be followed to solve a given problem. Algorithm A collection of related records. File A collection of related fields. Record Is an Internet standard for electronic mail transmission. SMTP Is an Internet standard protocol used by e-mai...

View example
Show all
avatar-seller

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller Gianna1. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $40.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

78310 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$238.27 $40.49
  • (0)
  Add to cart