[PDF] OCR GCSE (9-1) Computer Science End of Unit Quiz 2.1





Previous PDF Next PDF



The Oakwood Academy

A theme park uses a 3D computer simulation of a rollercoaster. Riders must wear Computer Science (9-1). OCR Resources: the small print. OCR's resources are ...



OCR GCSE (9-1) Computer Science End of Unit Quiz 2.1

Give a corrected version. c. How would an insertion sort algorithm arrange the numbers in the scores array into order? Page 



GCSE (9-1) Computer Science J277 Specification

Responses in OCR Exam Reference Language or a high-level programming language test a student's ability to form an answer using precise programming commands but 



OCR GCSE (9-1) Computer Science J276 Support Highlights

End of Unit Quiz – Unit 1.1 Systems Architecture. 1. What is the purpose of the CPU? 2. What is the function of the CPU? 3. What is meant by a register? 4 



SAM and Markscheme - OCR AS Level Computer Science

mark scheme and the question paper for this unit. ... Always check the pages (and additional objects if present) at the end of the response in case any answers ...



Specification Cambridge National in Creative iMedia J834 - OCR

1 Sept 2022 • GCSE Computer Science. • GCSE Media Studies. • GCSE Business Studies ... If a student completes any work at all for a NEA unit then the work ...



OCR GCSE (9-1) Combined Science A (Gateway Science) J250/07

This document consists of 28 pages. © OCR 2021. [601/8687/2]. J250/07. D10040/2.1.



OCR GCSE (9-1) Computer Science J276/02 Computational

mark scheme and the question paper for this unit. ... These questions are designed to test both a candidate's programming logic and understanding of core ...



294468-biology-practical-skills-handbook.pdf

2.1 to calculate the fastest rate of change in haemoglobin saturation as oxygen partial pressure increases. Determine the units for your answer. [3 marks]. A 



SAM and Markscheme - OCR A Level Computer Science

mark scheme and the question paper for this unit. ... Always check the pages (and additional objects if present) at the end of the response in case any answers ...



End of Unit Quiz – Unit 2.1 Algorithms

OCR 2017. End of Unit Quiz – Unit 2.1 Algorithms. 1. a. How is decomposition used when thinking computationally? b. A theme park uses a 3D computer 



OCR GCSE (9-1) Computer Science End of Unit Quiz 2.1

OCR 2017. End of Unit Quiz – Unit 2.1 Algorithms. 1. a. How is decomposition used when thinking computationally? b. A theme park uses a 3D computer 



GCSE Computer Science MCQS and Answers

OCR 2016. GCSE (9–1). COMPUTER SCIENCE. MCQs and Answers Unit 1.4 Wired and Wireless Networks ... A unit of data that travels along a network.



OCR GCSE (9-1) Computer Science J276 Support Highlights

These end of unit quizzes may be used as both 'check in' and 'check out' quizzes. This booklet is a subsetof our main Programming Challenges booklet.



OCR A Level Computer Science H446 Specification

3 Assessment of OCR A Level in Computer Science (a) The Arithmetic and Logic Unit; ALU Control Unit ... 2.1 Elements of computational thinking.



GCSE (9-1) Computer Science J277 Specification

Oxford Cambridge and RSA is a Company Limited by Guarantee. Registered in. England. Registered company number 3484466. Page 3. Version 2.1 © OCR 2021.



OCR GCSE (9-1) Computer Science Specification - J277

ocr.org.uk/computerscience. SCIENCE. GCSE (9–1). Specification. J277. For first assessment in 2022. Version 2.0. COMPUTER 



GCSE Computer Science MCQS and Answers

OCR 2017. GCSE (9–1). COMPUTER SCIENCE. MCQs and Answers. UNIT 1.6 SECURITY SYSTEMS MCQS. Question 1: An example of social engineering (4-6).



Computer Science KNOWLEDGE ORGANISER Y11

Link to Craigndave videos on all topics 1.1 to 1.8 and Unit 2.1 to 2.6. The method used by all modern computers to allow the programming of a machine.



OCR GCSE (9-1) Computer Science J276/02 Computational

Answer all the questions. • Write your answer to each question in the space provided. • If additional space is required use the lined page(s) at the end of 

Version 1 1 © OCR 2017

End of Unit Quiz Unit 2.1 Algorithms

1. a. How is decomposition used when thinking computationally? b. A theme park uses a 3D computer simulation of a rollercoaster. Riders must wear a virtual reality headset to experience the ride. Using examples from this scenario, explain what is meant by abstraction. 2. ai. The array people contains the values: L³HPRJHQ´ ³)OHPŃOHU´ ³.LUVPLH´ ³=RH´ ³*MYLQ´@ What is the reason why this array could not be searched using a binary search? aii. Once the issue identified in part (i) has been resolved, describe the steps that

Version 1 2 © OCR 2017

bi. The algorithm below uses a different method to search through the array for a name.

Fill in the gaps to complete the algorithm.

array people[5] SHRSOH L³HPRJHQ´ ³)OHPŃOHU´ ³.LUVPLH´ ³=RH´ ³*MYLQ´@ found = False x = 0 VHMUŃOIRU LQSXP³HQPHU M QMPH PR VHMUŃO IRU ³

ROLOH IRXQG )MOVH """" [ D

if people[x] = searchfor then

IRXQG """"""""BB

SULQP ³IRXQG MP SRVLPLRQ´ Ą """""""

x = x + 1 endif bii. What is the name of this searching algorithm? c. A user has a database of 100,000 people and needs to search through to find one particular person. Compare the efficiency of both searching algorithms covered in parts (a) and (b) for a data set of this size.

Version 1 3 © OCR 2017

3. ai. A programmer has a list of numbers in an array called scores, as shown below:

17 9 4 -12 3 39

When setting up a bubble sort algorithm for these numbers, the programmer uses a variable called swaps which can either be True or False.

What is the data type of the variable swaps?

aii. How would the programmer use this variable when implementing the bubble sort? b. One section of the bubble sort algorithm used by the programmer is shown below: if scores[x] > scores [x] + 1 //if scores in wrong order scores[x] = scores[x+1 scores[x+1] = scores[x] // swap numbers over What is the error that is contained in the code above? Give a corrected version. c. How would an insertion sort algorithm arrange the numbers in the scores array into order?

Version 1 4 © OCR 2017

d. What is the name of one other sorting algorithm? e. What is one advantage and one disadvantage of using a bubble sort?

4. A school divides students into house groups based on the month that they were born in.

Students born in January, February, March or April are put into Numpty House. Students born in May, June, July or August are put into Muchamore House. All other students are put into Twit house.

Using pseudocode, write an algorithm that will:

Ask the user to enter a number (1 to 12) relating to their birth month Decide which house they are in and print this out. Keep a running total of how many students are in each house.

Repeat the above for 20 students.

When 20 students have entered their details, print out how many students are in each house.

Version 1 5 © OCR 2017

5. num = 7 for x = 1 to num print x * num next

Draw a flowchart version of this algorithm.

Version 1 6 © OCR 2017

6. Complete the following table to describe the use of each of the following flow chart

symbols.

Symbol Explanation of use

7. A car dealer uses the following algorithm to determine the price to charge for cars.

01 S LQSXP³SXUŃOMVH SULŃH RI ŃMU´

02 L LQSXP³QXPNHU RI LPSURYHPHQPV PMGH´

03 M LQSXP³MJH RI ŃMU LQ \HMUV´

04 s = p + (i*100)

05 if a <= 10 then

06 s = s + s

07 endif

Version 1 7 © OCR 2017

08 SULQP ³VMOH SULŃH LV ³ Ą V

Work out the output value with the following inputs: ai. p = 1000, i = 2, a = 12 aii. p = 5000, i = 3, a = 10 aiii. p = 8000, i = 0, a = 5 b. rewrite line 06 so that the + operator is not used.quotesdbs_dbs4.pdfusesText_7
[PDF] octave fft example

[PDF] oecd

[PDF] oecd alcohol consumption by country 2019

[PDF] oecd education 2030 pdf

[PDF] oecd teaching

[PDF] office administration pdf

[PDF] office management textbook pdf

[PDF] office of energy efficiency and renewable energy

[PDF] offre emploi culturel hauts de france

[PDF] ofii bordeaux contact

[PDF] ofii document

[PDF] ofii stamp online

[PDF] oh pka

[PDF] ohio bmv

[PDF] ohio coronavirus update