The Student Room Group

OCR A-level Computer Science Paper 2 (H446/02) - 19th June 2023 [Exam Chat]

Scroll to see replies

Original post by CJTShadow28
Huh, I swear u needed a loop and there was no taking away?


You did need a loop
Reply 341
i did recursion (python)

def octal(num):
if num < 8:
return str(num)
return octal(num//8) + octal(num%8)
number = int(input())
print(octal(number))
Original post by CJTShadow28
Huh, I swear u needed a loop and there was no taking away?

Yeah I remember a loop
Reply 343
prediction for grade boundaries?
Was this paper hard guys ?
Any predictions for this year
Original post by Anna166
Was this paper hard guys ?
Any predictions for this year

Considering an A* was 120 marks, which is the highest we’ve seen for Paper 2, I’d assume it was relatively straightforward.

Quick Reply

Latest

Trending

Trending