Proof of completion and notes for Code.Org

Lesson 1


Software Engineer: Person who designs, develops, and tests software for home, school, and business use.

Lesson 2


Lesson 3


Lesson 4


Argument vs. Parameter:
An Argument is a value passed to a method or constructor when the method or constructor is called.

A Parameter is a variable in a method or constructor signature that defines the type of value to receive when the method or constructor is called.

Effectively the difference between when it is utilized. Parameter is coded in, while the argument is passed when the method/constructor is called.

Lesson 5