Code matchingOnline version Code matching for test. by Summer Hogenson 1 Abstraction 2 Function 3 API (Application program interface 4 Documentation 5 Hexadecimal 6 Library 7 Parameter 8 Iterate(Loop) 9 For Loop 10 Top-down Design allow you to hide details to help manage complexity Abstraction reusable abstractions that reduce the complexity of writing and maintaining programs. Function API (Application program interface A collection of commands made available to a programmer. Documentation Description of the behavior of a command, function, library, API, etc. Hexadecimal A base-16 number system that uses sixteen distinct symbols 0-9 and A-F to represent numbers from 0 to 15. Library Collection of commands/functions, usually with a shared purpose. Parameter Extra piece of information passed to a function to customize it for a specific need. Iterate(Loop) Doing something over and over again. Loops that have a prearranged beginning, end, and increment (step interval). For Loop A problem solving approach(also known as stepwise design) in which you break down a system to gain insight into the subsystems that make it up. Top-down Design