Programming For IT Professionals
Programming For IT Professionals
IT Professionals
• Algorithm
– Defines steps for performing a task
– Keep it as simple as possible
• Bug
– An error that causes unpredictable results
• Pseudocode
– English-like language used to create the structure of a
program
// The following function was added to the program June 15, 2005
// per a request from the Marketing Department.
// It appears that reports generated by the sales() function were
// not giving the Marketing folks information about the sales in
// Asia. This new function now uses data from text files from the
// offices in Tokyo and Hong Kong. – Bob C. Twins
• Compiler
– Converts a text-based program (source code) into
executable or binary code
• Some C compilers can also create executable
programs in C++
• Operators
– Compare values
– Perform mathematical calculations
– Types
• Mathematical operators
• Logical operators
• For loop