About 1,570 results
Open links in new tab
  1. What is a procedure? - Procedures and functions - KS3 Computer Science ...

    Key fact A procedure is a small section of a program that performs a specific task. Procedures can be used repeatedly throughout a program. A real-life example of a procedure is brushing...

  2. 7 FUNCTIONS AND PROCEDURES - COMPUTER SCIENCE CAFÉ

    A procedure performs a task and does not necessarily return any values, where are a function would return values for elsewhere in the program to use. For example a procedure might be to draw a …

  3. What is a Procedure: AP® Computer Science Principles Review

    May 20, 2025 · Learn what is a procedure in programming, how it organizes code, handles parameters, and why it’s essential for AP® CS Principles.

  4. Procedures with parameters | AP CSP (article) | Khan Academy

    When programming, we use procedures to make our code more reusable and to better organize our code. Often-times, we pass parameters to a procedure so that we can change the output of the code.

  5. Calling Procedures - AP CSP Study Guide | Fiveable

    How do I write the syntax for calling a procedure in AP Computer Science? To call a procedure on the AP exam you use the exam-reference format: procName (arg1, arg2, ...). That means you write the …

  6. Functions - IGCSE Computer Science Revision Notes

    May 7, 2025 · Learn about procedures & functions for your IGCSE computer science exam. This revision note includes parameters, returns, and scope.

  7. Writing and calling procedures in AP CSP Pseudocode

    The careForBaby procedure can be written and tested independently from the rest of the program. Each time the careForBaby procedure is called, the code inside is run.

  8. 3.12 Calling Procedures | Computer Science Principles

    A procedure is a named group of programming instructions that may have parameters and return values. Procedures are referred to by different names, such as method or function, depending on the …

  9. Functions & Procedures - A Level Computer Science

    We run a procedure by calling it by its name. hello_world() #This will run the hello_world() procedure. You can call a function as many times as you like: hello_world() #This will keep running the function …

  10. What is a procedure in coding? - California Learning Resource Network

    May 13, 2025 · In the realm of computer science and software engineering, a procedure represents a fundamental building block for structuring and organizing code. A procedure, at its core, is a discrete, …