AQA GCSE Computer Science Paper 1 8520/1 - 13 May 2019 [Exam Discussion]
Watch
FEEL FREE TO SHARE EXAM TECHNIQUES, RESOURCES, PREDICTIONS OR EVEN YOUR WORRIES!
HOPE EVERYTHING GOES OK
Evil Homer
SPECIFICATION: https://www.aqa.org.uk/subjects/comp...on-at-a-glance
PRACTICE PAPERS: https://www.aqa.org.uk/subjects/comp...ment-resources
HOPE EVERYTHING GOES OK

Evil Homer
SPECIFICATION: https://www.aqa.org.uk/subjects/comp...on-at-a-glance
PRACTICE PAPERS: https://www.aqa.org.uk/subjects/comp...ment-resources
Last edited by uv67; 1 year ago
0
reply
Report
#2
Hey guys
Just wanted to set this up incase anyone wanted to talk about the AQA paper tomorrow but had no where to do it
How is everyone feeling for the exam ? Are you ready?
Feel free to share last minute advice, questions or revision resources!
Just wanted to set this up incase anyone wanted to talk about the AQA paper tomorrow but had no where to do it

How is everyone feeling for the exam ? Are you ready?
Feel free to share last minute advice, questions or revision resources!
0
reply
Report
#4
I feel like the paper could go superbly well if I get the ideal questions as I am really good with programming and understanding/writing algorithms. At this point I'm just worried if I get thrown off guard by some weird questions so just need to be prepared for the worst
1
reply
Topic 1 - Fundamentals of Algorithms
Topic 2 - Programming
Topic 3 - Fundamentals of Data Representation
Topic 4 - Computer Systems
Good luck!!
Topic 2 - Programming
Topic 3 - Fundamentals of Data Representation
Topic 4 - Computer Systems
Good luck!!
(Original post by JamesSteward_)
Anyone got a list for the P1 topics?
Anyone got a list for the P1 topics?
1
reply
Report
#7
Anyone got a list for the P1 topics?
Appreciate that, you too
(Original post by uv67)
Topic 1 - Fundamentals of Algorithms
Topic 2 - Programming
Topic 3 - Fundamentals of Data Representation
Topic 4 - Computer Systems
Good luck!!
Topic 1 - Fundamentals of Algorithms
Topic 2 - Programming
Topic 3 - Fundamentals of Data Representation
Topic 4 - Computer Systems
Good luck!!

0
reply
Report
#10
That was so easy. The 11 marker was so simple.
The Subroutine name should have been something like "End"
The parameter should have been "board"
You should have used variables "hits" and "alive"
There should have been at most 2 IF statements.
You should have ended the Subroutine.
My teacher said there would probably be 2 marks for the name of the subroutine and the parameter.
The Subroutine name should have been something like "End"
The parameter should have been "board"
You should have used variables "hits" and "alive"
There should have been at most 2 IF statements.
You should have ended the Subroutine.
My teacher said there would probably be 2 marks for the name of the subroutine and the parameter.
1
reply
Report
#11
(Original post by DoctorWhoFanatic)
That was so easy. The 11 marker was so simple.
The Subroutine name should have been something like "End"
The parameter should have been "board"
You should have used variables "hits" and "alive"
There should have been at most 2 IF statements.
You should have ended the Subroutine.
My teacher said there would probably be 2 marks for the name of the subroutine and the parameter.
That was so easy. The 11 marker was so simple.
The Subroutine name should have been something like "End"
The parameter should have been "board"
You should have used variables "hits" and "alive"
There should have been at most 2 IF statements.
You should have ended the Subroutine.
My teacher said there would probably be 2 marks for the name of the subroutine and the parameter.

What are you plans for the rest of the day? Afternoon off? Or another exam hot on the heals of this one?

0
reply
Report
#12
Didn't have enough time to go through my answers but I am pretty sure I got the majority right, the 11 marker and 6 marker was actually really straight forward, surprisingly. I might have lost a mark for forgetting to end the subroutine, but hopefully it isn't that big of a deal. Hopefully I did alright, a lot of easy multiple choice and shorter questions which should help out where I potentially might have lost a couple marks.
Last edited by MarcusNorris2003; 1 year ago
0
reply
Report
#13
I thought it went well too, I feel like my pseudocode was too simple for 11 marks. But the paper seemed to good to be true! I'm going to take a bit of a break then get cracking with biology revision for tommorow.
0
reply
Report
#14
(Original post by rachellouise21)
I thought it went well too, I feel like my pseudocode was too simple for 11 marks. But the paper seemed to good to be true! I'm going to take a bit of a break then get cracking with biology revision for tommorow.
I thought it went well too, I feel like my pseudocode was too simple for 11 marks. But the paper seemed to good to be true! I'm going to take a bit of a break then get cracking with biology revision for tommorow.

Fingers crossed on a good grade then

Enjoy your break!

Hopefully the weather is as nice near you as it is right here

0
reply
Report
#15
Rip i didn't see that we had to make it a subroutine so i just wrote it as straight code.
Do you reckon i could still get marks for it as the rest of it was correct.
Do you reckon i could still get marks for it as the rest of it was correct.
0
reply
Report
#16
(Original post by rorymacleod23)
Rip i didn't see that we had to make it a subroutine so i just wrote it as straight code.
Do you reckon i could still get marks for it as the rest of it was correct.
Rip i didn't see that we had to make it a subroutine so i just wrote it as straight code.
Do you reckon i could still get marks for it as the rest of it was correct.
1
reply
Report
#17
(Original post by rorymacleod23)
Rip i didn't see that we had to make it a subroutine so i just wrote it as straight code.
Do you reckon i could still get marks for it as the rest of it was correct.
Rip i didn't see that we had to make it a subroutine so i just wrote it as straight code.
Do you reckon i could still get marks for it as the rest of it was correct.
0
reply
Report
#18
Is this answer 11/11 you guys think?
SUBROUTINE WhateverYouWantToCallThisThing(B oard)
NotHit = 0
For i = 0 to LEN(Board) - 1
h = board(i)
IF h = 1 THEN
NotHit = NotHit + 1
ENDIF
ENDFOR
IF NotHit = 0 THEN
OUTPUT ("winner")
ELSEIF Nothit => 1 AND Nothit<= 3 THEN
OUTPUT ("almost there")
ENDIF
ENDSUBROUTINE
SUBROUTINE WhateverYouWantToCallThisThing(B oard)
NotHit = 0
For i = 0 to LEN(Board) - 1
h = board(i)
IF h = 1 THEN
NotHit = NotHit + 1
ENDIF
ENDFOR
IF NotHit = 0 THEN
OUTPUT ("winner")
ELSEIF Nothit => 1 AND Nothit<= 3 THEN
OUTPUT ("almost there")
ENDIF
ENDSUBROUTINE
Last edited by Will_W; 1 year ago
3
reply
Report
#20
Any guesses about grade boundaries, guys? It was definitely harder than last year's paper 1
1
reply
X
Quick Reply
Back
to top
to top