Functions Flashcards
1
Q
Procedure
A
Collection of stmts that performs a task
2
Q
Function
A
A collection of stmts that performs a task and RETURNS A VALUE
3
Q
How to declare a function
A
Function functionname (argument list) as datatype Statements End function