This is the Lesson 1 Quiz. Each question is worth 5 points. Your final score will reflect the percentage of total points that you earned. Please consider re-assessing this lessons if you score less than 70%.
'Office' software like Microsoft's Word or The Document Foundation's LibreOffice
Plain text editors like Scite or Notepad
Terminal emulators like Microsoft's CMD.exe or a Linux shell
Class
BEGIN
Main
HELLO WORLD
Show which programmers programmed different code
Change the order that the program is run in
Prevent different variable names from being confused by the programmer
Prevent different variable names from being confused by the compiler
Lines that begin with '#'
Lines that begin with //
Any text surrounded by '{' and '}'
Any text that is capitalized
Writing the name of the data to the left of a function name: variable function
Writing the name of the data to the right of the a function name: function() variable
Writing the name of the data in the parentheses immediately after the function name: function(variable)
By writing the value of the variable in the parentheses immediately following the function name: function(1)