Computing : F452

Computer Science and ICT discussion, revision, exam and homework help.

Announcements Posted on
TSR launches Learn Together! - Our new subscription to help improve your learning 16-05-2013
IMPORTANT: You must wait until midnight (morning exams)/4.30AM (afternoon exams) to discuss Edexcel exams and until 1pm/6pm the following day for STEP and IB exams. Please read before posting, including for rules for practical and oral exams. 28-04-2013
Sign in to Reply
  1. sw121's Avatar
    • Junior Member
    • Location: Newcastle Upon Tyne
    • Posts: 28
    Computing : F452
    Hello!

    does anyone have the cheif examiner's notes for f452? please help
  2. ReeceL's Avatar
    • Exalted Member
    Re: Computing : F452
    Hello, you don't see which year or sessions you are looking for, so here are all of them.

    Jan '09
    June '09

    Jan '10
    June '10

    Jan '11
    June '11

    Inside the PDF, just do a search for "F452" and you'll be able to find the section you are looking for.
  3. sw121's Avatar
    • Junior Member
    • Location: Newcastle Upon Tyne
    • Posts: 28
    Re: Computing : F452
    (Original post by ReeceL)
    Hello, you don't see which year or sessions you are looking for, so here are all of them.

    Jan '09
    June '09

    Jan '10
    June '10

    Jan '11
    June '11

    Inside the PDF, just do a search for "F452" and you'll be able to find the section you are looking for.
    thanks
  4. john.harvey93's Avatar
    • New Member
    • Posts: 16
    Re: Computing : F452
    Hi,

    Apologies for what might seem a really dumb question - I'm learning the AS with a friend as our sixth form doesn't offer Computing.

    What does it mean when a subroutine is *called* or when a recursion "calls" itself?

    Cheers
  5. Riya2595's Avatar
    • New Member
    • Location: Bristol
    • Posts: 17
    Re: Computing : F452
    (Original post by john.harvey93)
    Hi,

    Apologies for what might seem a really dumb question - I'm learning the AS with a friend as our sixth form doesn't offer Computing.

    What does it mean when a subroutine is *called* or when a recursion "calls" itself?

    Cheers
    basically it means when there is a main set of instructions and when the subroutine is called it jumps to the subroutine set of instructions, executes them, then jumps back to the main set of instructions
  6. Inorien's Avatar
    • New Member
    • Posts: 9
    Re: Computing : F452
    (Original post by john.harvey93)
    Hi,

    Apologies for what might seem a really dumb question - I'm learning the AS with a friend as our sixth form doesn't offer Computing.

    What does it mean when a subroutine is *called* or when a recursion "calls" itself?

    Cheers
    Here, I'll show you with an example. I'll use Pascal as the language for it's fairly similar across most languages.
    Code:
    program example;
    
    procedure example_procedure (arguments) //declaring the procedure
    begin
            <statements>
            example_procedure(arguments)         // calling the procedure from within itself is called recursion
    end;          //procedure is over
    
    begin       // main body of code 
    var example_integer : integer;        //declaring a variable type integer
    
    example_integer = example_procedure(example_integer) //calling the procedure with argument 
    
    
    end.      //program is over

    Hope this helped, I just got up and I'm writing this from an extremely laggy iPhone. If there are mistakes, someone please correct them.

    -Ino
    Last edited by Inorien; 28-05-2012 at 11:17.
Sign in to Reply
Share this discussion:  
Article updates
Moderators

We have a brilliant team of more than 60 volunteers looking after discussions on The Student Room, helping to make it a fun, safe and useful place to hang out.

Reputation gems:
The Reputation gems seen here indicate how well reputed the user is, red gem indicate negative reputation and green indicates a good rep.
Post rating score:
These scores show if a post has been positively or negatively rated by our members.