The Student Room Group

Official OCR Computer Science A451/01 Exam Thread

Scroll to see replies

isnt records 16?
would you like a medal ?
Original post by s4b3rt00th
I completed the exam within 40 minutes and I had to sit there for another 50 minutes. That's how easy I found the paper.
Original post by osamabinlad3n
would you like a medal ?


Yes!

Spoiler

Reply 63
Original post by richageorge
well last year, 55% was an A, and since the grade boundaries have been going down every year, i reckon 50% will be an A this year, so don't stress :smile:


How many marks and % is a c grade?
Original post by DarthYoda
These are rough approximations of the questions, not word for word
Question 1: Sat nav I/O
What is a computer system?
-A system containing electronic devices that have software and hardware working together
-It is an electronic data processing machine that can take inputs and output results
Why does a computer system need input devices?
-To have data to process
Give an example of an input device for the sat nav for a disabled person and explain how it is useful.
-Keyboard. Only sensible one so far.
Why does the satnav need a secondary storage device?
-store maps, previous locations etc.
Why solid state storage?
-Portable-small, light
-withstand movement, no moving parts
Why are the commands stored as binary?
-1 and 0 can easily be represented via on and off siganls. It allows easy simple logic gates. It allows less error as there are only two values
Name a task carried out by the CPU:
-To fetch/execute commands from memory
-To decode commands
-To carry out the fetch, decode, execute cycle
-Perform Logic operations

Question 2: HTML and internet
What else might be in an HTML file other than text for the webpage?
-image references
-cascading style sheets, CSS
-video references
One reason why is it good for HTML to be a standard?
-All webpages are the same (pretty much) so browsers only have to support html
-People can have gaurenteed support for their webpage
-Other languages can be implemented effectively such as php, javascript and xml
Hex
- 58 = 3A, 156 = 9C
Another question ??

How does the DNS connect the user to a webpage from the URL?
The DNS has access to a database and associates the URL with a specific IP address. This can access the files and connect the user to the IP which also allows the DNS to contact the correct website.

3: Algorithm (I think)
Fill in the gaps
-'count' and 'Total / Quantity)
What is a constant and give an example?
-A value stored in a specific memory location represented by a name. The value cannot be changed while the program is running
E.g. Quantity
What data type is the Mean?
Real as it could be a decimal.
What other two types of iteration are there other than For?
-while
-repeat/do until ?
It gives an example of a validation algorithm, Give an example of a boundary value and an invalid value.
-100 or 0 are boundaries
-anything not between 0 and 100 inclusive are invalid values

4: Databases
Why is a database a persistent organised store of data?
-It is a structured object that contains data. It is stored in tables. (Not sure about this one)
What is a suitable data type for the ID?
Text, as it has leading zeros
How many records are there
-four
Which field is the primary key?
-The first field, it is unique and follows the same format. It is a short number.
Name a validation method for TeacherID and Date, they must be different.
-TeacherID, follow format Letter,Letter,ID, or must be length three etc
-Date, follow format DD/MM/YYYY or it must be less than or equal to the current date
Name two features of a DBMS that allow you to make customizable applications.
-Query, ask for records with certain attributes easily, e.g this lets the admin create a query for all outstanding repairs
-Form, create a GUI to make it easier to make a query, e.g. admin enters teachers ID into search box to get their repairs.

Question 5: Cars
Describe the ethical and legal issues surrounding the development of automatic technology such as driverless cars.
-Cars follow the law always and may not cope in an emergency situation and therefore ccause harm.
-Cars and automatic devices collect data perhaps unethically or illegally
-Automation increases unemployment, not right for robots to 'take over'
-Security required and so could break the data protection Act
-Hackability, could break the computers misuse act
Question 6: OCR accounts
Two advantages of a network in the office over standalone PCs:
-Share expensive peripherals. All users can use the peripherals plugged in to any PC. This saves money as only one peripheral is needed and all the computers have access saving time.
-Share data/resources/programs. This allows quicker sharing of data and ideas over methods such as email. It is cheaper as users do not have to use physical storage devices to transfer data. Saves time as users do not have to take so long copying files as they are in a shared folder.
Name a piece of hardware to get an internet connection. Usually OCR accepts:
Router, modem (modulator-demodulator) or ADSL adapter
Name two other pieces of hardware for a network and explain:
-Router/modem/ADSL, internet connection
-Hub, connect the devices for sharing
-NIC, allows connection via Ethernet or wireless
-Server, dedicated machine to supply data to clients etc.
-switches, like a hub but faster
Network policies:
-Acceptable Use: User priviliges, malware protection etc
-Backup
-Failover
-Disaster Recovery
-Archive

Pseudocode:
the criteria were
Use iteration
Have a previously stored number to guess
allow ten guesses
say to guess higher or lower
ask the user to guess
say congratulations and end the game if they guess it

I guess that it is one mark per criteria

approximately
Const Value = random number
count = 0
Ouput 'Guess the number'
Repeat
Output 'enter a number'
Guess = Input
If Guess = Value Then
Output 'Congratulations'
END
If Guess > Value THEN
Output 'guess higher'
if guess < Value then
Output 'Guess lower'
count = count + 1
Repeat until count = 10
output 'Sorry you did not guess the number. It was' + value
END
Thanks for all the input people have given

If anyone else has question answers contribute to help update the full markscheme


Two advantages of a network in the office over standalone PCs:
-Share expensive peripherals. All users can use the peripherals plugged in to any PC. This saves money as only one peripheral is needed and all the computers have access saving time.
I'm quite sure you can't share peripherals over a network.
Int random = random(0,10)//just to make it cool
int attempts = 10;
Int guess = input('Enter random num')
While guess != random and attempts > 1:
if guess > random:
guess = input('Go lower')
attempts-=1
else
guess = input('Go higher')
attempts-=1//
print('congratulations')

Sorry for making the grade boundaries higher :smile:
Original post by jeffrey2000
Int random = random(0,10)//just to make it cool
int attempts = 10;
Int guess = input('Enter random num':wink:
While guess != random and attempts > 1:
if guess > random:
guess = input('Go lower':wink:
attempts-=1
else
guess = input('Go higher':wink:
attempts-=1//
print('congratulations':wink:

Sorry for making the grade boundaries higher :smile:


lol I don't think one person is going to affect grade boundaries :tongue:
Grade boundary predictions anyone?
Original post by jeffrey2000
Two advantages of a network in the office over standalone PCs:
-Share expensive peripherals. All users can use the peripherals plugged in to any PC. This saves money as only one peripheral is needed and all the computers have access saving time.
I'm quite sure you can't share peripherals over a network.


Yes, many peripherals you cannot share however an example is a printer or scanner which can be.
Original post by Badr44s
How many marks and % is a c grade?


well last year it was 27 marks for a C and that's 34%, so i reckon this year will be around 24 marks which is 30%

and don't forget, you always do better than you think you did
Reply 70
Original post by richageorge
well last year it was 27 marks for a C and that's 34%, so i reckon this year will be around 24 marks which is 30%

and don't forget, you always do better than you think you did


Thanks man I appreciate it. I always panic after the exam, it said so unhealthy
Reply 71
I got an A in my coursework overall. What mark would an A be?
Original post by DarthYoda
Yes, many peripherals you cannot share however an example is a printer or scanner which can be.

I didn't say peripherals, I said devices such as printers :wink:
For the DBMS features question I talked about forms and reports. Would this be accepted?
Reply 74
Original post by the_nshoesmith
For the DBMS features question I talked about forms and reports. Would this be accepted?


ye
Original post by Pretish
I got an A in my coursework overall. What mark would an A be?


in the exam or the coursework?
Reply 76
Original post by richageorge
in the exam or the coursework?


in the exam
Original post by Pretish
in the exam


around 40/80
In the exam for Q4 - *What is a database a persistent organised store of data*, I wrote that it is setup in fields and records.
Original post by richageorge
well last year, 55% was an A, and since the grade boundaries have been going down every year, i reckon 50% will be an A this year, so don't stress :smile:


Hopefully, the grade boundaries will be lower, so that we can achieve an A or A*.

Quick Reply

Latest

Trending

Trending