3v4l.org

run code in 300+ PHP versions simultaneously
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <?php $questions=array( array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is malware?", "A program a user can use to create and manage spreadsheets", "The software that controls everything inside the computer. It controls the hardware and software the user works with", "Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data", "A web browser", "Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What program controls items such as the start menu, windows, and the taskbar?", "Spybot Search and Destroy", "Internet Explorer", "Word", "Explorer", "Explorer" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is a folder?", "A location that stores saved files and programs", "A paper document inside a file cabinet", "The Start button", "A type of file", "A location that stores saved files and programs" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is an input device?", "Keyboard", "Monitor", "Printer", "Motherboard", "Keyboard" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is the brain of the computer?", "GPU", "CPU", "Motherboard", "Monitor", "CPU" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is an operating system?", "A word processing program that allows the user to edit text and format it", "Motherboard", "An important part of systems files. It manages the interaction between the user, application programs, and hardware", "A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers", "An important part of systems files. It manages the interaction between the user, application programs, and hardware" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What are the small pictures on the desktop called?", "Icons", "Folders", "Recycle Bin", "File Type", "Icons" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is the bar at the bottom of the screen called?", "Shortcut", "System Tray", "Program", "Taskbar", "Taskbar" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "Where can you find a list of all the storage devices connected to the computer?", "Control Panel", "Computer", "Documents", "Desktop", "Computer" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is Task Manager?", "A program that manages your tasks", "A program that lets your organize data into databases", "An operating system", "A utility program used for managing processes and programs running on the computer", "A utility program used for managing processes and programs running on the computer" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is the default web browser for Windows?", "Firefox", "Safari", "Google Chrome", "Internet Explorer", "Internet Explorer" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "Where do you type links to take you to different web sites?", "Menu Bar", "Address Bar", "Search Bar", "Favorites Bar", "Address Bar" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is a search engine?", "Software enabling the user to organize emails", "A program that allows a user to store, manage, manipulate, and secure data then make queries", "A tool used to lookup information on the internet", "The program that runs the internet browser", "A tool used to lookup information on the internet" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "The first page displayed after starting the web browser is called what?", "The home page", "The search engine", "Web Page 1", "google.com", "The home page" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "To refresh a web page you may?", "Press the F13 key", "Press the white \"-\" at the top of the window", "Press the red \"X\" key at the top of the page", "Click the refresh button", "Click the refresh button" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "Email is?", "Software programs that can compose, send, and receive email messages", "The default folder that stores deleted messages", "A service that allows users to send messages and/or documents to each other over an internet network", "hotmail.com", "A service that allows users to send messages and/or documents to each other over an internet network" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "Phishing is?", "Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient", "Creating a carbon copy of your email", "Updating software", "Composing a new email message and sending it", "Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "The three parts of an email address in order are?", "User ID, @ symbol, host name", "GB, MB, KB", "IP, DNS, ISP", "CPU, Motherboard, Video Cards", "User ID, @ symbol, host name" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "What is a carbon copy?", "A copy of the email sent to the recipient emailed to you", "A physical copy of the email", "Writing the email down on paper with pencil", "Copying the email onto the desktop to view later", "A copy of the email sent to the recipient emailed to you" ), array( // [0] is the question, [1]-[4] are the answer choices, [5] is the correct chioce "Where do you type the recipient's name in a new email?", "The message itself", "The \"From\" line", "The Search Bar", "The \"To\" line", "The \"To\" line" ), ); $numbers = array( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ); $x = 1; ob_start(); echo "<div style=\"margin-left:25%; \">" ."<form name=\"post\" action=\"score.php\" method=\"get\">"; while ($x <= 20) { $num=array_rand($numbers); echo $numbers[$num]."<br>"; echo "<label>" . $x . ".) " . $questions[$numbers[$num]][0] . "</label>" . "<p style=\"text-align:left;\">" . "<input type=\"radio\" name=\"question" . $x . "\" value=\"". $questions[$numbers[$num]][1] . " \" required >" . $questions[$numbers[$num]][1] . "<br>" . "<input type=\"radio\" name=\"question" . $x . "\" value=\"". $questions[$numbers[$num]][2] . " \">" . $questions[$numbers[$num]][2] . "<br>" . "<input type=\"radio\" name=\"question" . $x . "\" value=\"". $questions[$numbers[$num]][3] . " \">" . $questions[$numbers[$num]][3] . "<br>" . "<input type=\"radio\" name=\"question" . $x . "\" value=\"". $questions[$numbers[$num]][4] . " \">" . $questions[$numbers[$num]][4] . "<br>" . "</p>"; array_splice($numbers,$num,1); $x++; } ?> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>2<br><label>6.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question6" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question6" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question6" value="The Start button ">The Start button<br><input type="radio" name="question6" value="A type of file ">A type of file<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>11.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question11" value="The message itself " required >The message itself<br><input type="radio" name="question11" value="The "From" line ">The "From" line<br><input type="radio" name="question11" value="The Search Bar ">The Search Bar<br><input type="radio" name="question11" value="The "To" line ">The "To" line<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>19.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question19" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question19" value="Word ">Word<br><input type="radio" name="question19" value="Explorer ">Explorer<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>7<br><label>10.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Shortcut " required >Shortcut<br><input type="radio" name="question10" value="System Tray ">System Tray<br><input type="radio" name="question10" value="Program ">Program<br><input type="radio" name="question10" value="Taskbar ">Taskbar<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>14.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question14" value="The home page " required >The home page<br><input type="radio" name="question14" value="The search engine ">The search engine<br><input type="radio" name="question14" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question14" value="google.com ">google.com<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>5.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question5" value="The message itself " required >The message itself<br><input type="radio" name="question5" value="The "From" line ">The "From" line<br><input type="radio" name="question5" value="The Search Bar ">The Search Bar<br><input type="radio" name="question5" value="The "To" line ">The "To" line<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>15<br><label>15.) Email is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question15" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question15" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question15" value="hotmail.com ">hotmail.com<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>11<br><label>17.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question17" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question17" value="Address Bar ">Address Bar<br><input type="radio" name="question17" value="Search Bar ">Search Bar<br><input type="radio" name="question17" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>5<br><label>19.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question19" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question19" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>17<br><label>4.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question4" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question4" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question4" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question4" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>11.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question11" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question11" value="Address Bar ">Address Bar<br><input type="radio" name="question11" value="Search Bar ">Search Bar<br><input type="radio" name="question11" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>4<br><label>13.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="GPU " required >GPU<br><input type="radio" name="question13" value="CPU ">CPU<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br></p>1<br><label>14.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question14" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question14" value="Word ">Word<br><input type="radio" name="question14" value="Explorer ">Explorer<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>16.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Shortcut " required >Shortcut<br><input type="radio" name="question16" value="System Tray ">System Tray<br><input type="radio" name="question16" value="Program ">Program<br><input type="radio" name="question16" value="Taskbar ">Taskbar<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>20.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="Control Panel " required >Control Panel<br><input type="radio" name="question20" value="Computer ">Computer<br><input type="radio" name="question20" value="Documents ">Documents<br><input type="radio" name="question20" value="Desktop ">Desktop<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>2.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="Control Panel " required >Control Panel<br><input type="radio" name="question2" value="Computer ">Computer<br><input type="radio" name="question2" value="Documents ">Documents<br><input type="radio" name="question2" value="Desktop ">Desktop<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>14.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question14" value="The home page " required >The home page<br><input type="radio" name="question14" value="The search engine ">The search engine<br><input type="radio" name="question14" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question14" value="google.com ">google.com<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>18<br><label>17.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question17" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question17" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question17" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question17" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>5.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question5" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question5" value="An operating system ">An operating system<br><input type="radio" name="question5" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>19<br><label>8.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question8" value="The message itself " required >The message itself<br><input type="radio" name="question8" value="The "From" line ">The "From" line<br><input type="radio" name="question8" value="The Search Bar ">The Search Bar<br><input type="radio" name="question8" value="The "To" line ">The "To" line<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>12.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question12" value="Keyboard " required >Keyboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br><input type="radio" name="question12" value="Printer ">Printer<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br></p>4<br><label>13.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="GPU " required >GPU<br><input type="radio" name="question13" value="CPU ">CPU<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>15.) Email is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question15" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question15" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question15" value="hotmail.com ">hotmail.com<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>17.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Icons " required >Icons<br><input type="radio" name="question17" value="Folders ">Folders<br><input type="radio" name="question17" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question17" value="File Type ">File Type<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>2.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="Control Panel " required >Control Panel<br><input type="radio" name="question2" value="Computer ">Computer<br><input type="radio" name="question2" value="Documents ">Documents<br><input type="radio" name="question2" value="Desktop ">Desktop<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>14<br><label>8.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question8" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question8" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question8" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question8" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>19.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question19" value="Keyboard " required >Keyboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br><input type="radio" name="question19" value="Printer ">Printer<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 7.0.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>9<br><label>6.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question6" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question6" value="An operating system ">An operating system<br><input type="radio" name="question6" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>11<br><label>8.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question8" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question8" value="Address Bar ">Address Bar<br><input type="radio" name="question8" value="Search Bar ">Search Bar<br><input type="radio" name="question8" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>12.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question12" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question12" value="Word ">Word<br><input type="radio" name="question12" value="Explorer ">Explorer<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>7<br><label>15.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Shortcut " required >Shortcut<br><input type="radio" name="question15" value="System Tray ">System Tray<br><input type="radio" name="question15" value="Program ">Program<br><input type="radio" name="question15" value="Taskbar ">Taskbar<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.22
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>2.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question2" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question2" value="Address Bar ">Address Bar<br><input type="radio" name="question2" value="Search Bar ">Search Bar<br><input type="radio" name="question2" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>17<br><label>7.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question7" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question7" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question7" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question7" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>13.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question13" value="The message itself " required >The message itself<br><input type="radio" name="question13" value="The "From" line ">The "From" line<br><input type="radio" name="question13" value="The Search Bar ">The Search Bar<br><input type="radio" name="question13" value="The "To" line ">The "To" line<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>7<br><label>16.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Shortcut " required >Shortcut<br><input type="radio" name="question16" value="System Tray ">System Tray<br><input type="radio" name="question16" value="Program ">Program<br><input type="radio" name="question16" value="Taskbar ">Taskbar<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.21
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>2.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question2" value="The home page " required >The home page<br><input type="radio" name="question2" value="The search engine ">The search engine<br><input type="radio" name="question2" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question2" value="google.com ">google.com<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>2<br><label>10.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question10" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question10" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question10" value="The Start button ">The Start button<br><input type="radio" name="question10" value="A type of file ">A type of file<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>13.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question13" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question13" value="Address Bar ">Address Bar<br><input type="radio" name="question13" value="Search Bar ">Search Bar<br><input type="radio" name="question13" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>10<br><label>15.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question15" value="Firefox " required >Firefox<br><input type="radio" name="question15" value="Safari ">Safari<br><input type="radio" name="question15" value="Google Chrome ">Google Chrome<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.20
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>2.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question2" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question2" value="Address Bar ">Address Bar<br><input type="radio" name="question2" value="Search Bar ">Search Bar<br><input type="radio" name="question2" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>3.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question3" value="The home page " required >The home page<br><input type="radio" name="question3" value="The search engine ">The search engine<br><input type="radio" name="question3" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question3" value="google.com ">google.com<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>9.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question9" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question9" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question9" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>10.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="Control Panel " required >Control Panel<br><input type="radio" name="question10" value="Computer ">Computer<br><input type="radio" name="question10" value="Documents ">Documents<br><input type="radio" name="question10" value="Desktop ">Desktop<br></p>3<br><label>11.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question11" value="Keyboard " required >Keyboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br><input type="radio" name="question11" value="Printer ">Printer<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>6<br><label>13.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Icons " required >Icons<br><input type="radio" name="question13" value="Folders ">Folders<br><input type="radio" name="question13" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question13" value="File Type ">File Type<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.19
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>15<br><label>2.) Email is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question2" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question2" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question2" value="hotmail.com ">hotmail.com<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>14<br><label>6.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question6" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question6" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question6" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question6" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>10.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question10" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question10" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question10" value="The Start button ">The Start button<br><input type="radio" name="question10" value="A type of file ">A type of file<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>11<br><label>13.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question13" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question13" value="Address Bar ">Address Bar<br><input type="radio" name="question13" value="Search Bar ">Search Bar<br><input type="radio" name="question13" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>15.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question15" value="Firefox " required >Firefox<br><input type="radio" name="question15" value="Safari ">Safari<br><input type="radio" name="question15" value="Google Chrome ">Google Chrome<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.18
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">15<br><label>1.) Email is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question1" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question1" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question1" value="hotmail.com ">hotmail.com<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>19<br><label>7.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question7" value="The message itself " required >The message itself<br><input type="radio" name="question7" value="The "From" line ">The "From" line<br><input type="radio" name="question7" value="The Search Bar ">The Search Bar<br><input type="radio" name="question7" value="The "To" line ">The "To" line<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.17
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">6<br><label>1.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Icons " required >Icons<br><input type="radio" name="question1" value="Folders ">Folders<br><input type="radio" name="question1" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question1" value="File Type ">File Type<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>5.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question5" value="The message itself " required >The message itself<br><input type="radio" name="question5" value="The "From" line ">The "From" line<br><input type="radio" name="question5" value="The Search Bar ">The Search Bar<br><input type="radio" name="question5" value="The "To" line ">The "To" line<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>4<br><label>13.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="GPU " required >GPU<br><input type="radio" name="question13" value="CPU ">CPU<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.16
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>1<br><label>18.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question18" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question18" value="Word ">Word<br><input type="radio" name="question18" value="Explorer ">Explorer<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.15
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.14
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>14<br><label>6.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question6" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question6" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question6" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question6" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>11<br><label>8.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question8" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question8" value="Address Bar ">Address Bar<br><input type="radio" name="question8" value="Search Bar ">Search Bar<br><input type="radio" name="question8" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.13
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>0<br><label>15.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question15" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question15" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question15" value="A web browser ">A web browser<br></p>12<br><label>16.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question16" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question16" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question16" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>17.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question17" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question17" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question17" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question17" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.12
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">19<br><label>1.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question1" value="The message itself " required >The message itself<br><input type="radio" name="question1" value="The "From" line ">The "From" line<br><input type="radio" name="question1" value="The Search Bar ">The Search Bar<br><input type="radio" name="question1" value="The "To" line ">The "To" line<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>16.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question16" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question16" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question16" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question16" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>17.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question17" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question17" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question17" value="The Start button ">The Start button<br><input type="radio" name="question17" value="A type of file ">A type of file<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>19.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question19" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question19" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question19" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question19" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.11
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>10<br><label>6.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question6" value="Firefox " required >Firefox<br><input type="radio" name="question6" value="Safari ">Safari<br><input type="radio" name="question6" value="Google Chrome ">Google Chrome<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>15<br><label>10.) Email is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question10" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question10" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question10" value="hotmail.com ">hotmail.com<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.10
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>2.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question2" value="The home page " required >The home page<br><input type="radio" name="question2" value="The search engine ">The search engine<br><input type="radio" name="question2" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question2" value="google.com ">google.com<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>5.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question5" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question5" value="An operating system ">An operating system<br><input type="radio" name="question5" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>0<br><label>8.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question8" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question8" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question8" value="A web browser ">A web browser<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>2<br><label>15.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question15" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question15" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question15" value="The Start button ">The Start button<br><input type="radio" name="question15" value="A type of file ">A type of file<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.9
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>5.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question5" value="The message itself " required >The message itself<br><input type="radio" name="question5" value="The "From" line ">The "From" line<br><input type="radio" name="question5" value="The Search Bar ">The Search Bar<br><input type="radio" name="question5" value="The "To" line ">The "To" line<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>4<br><label>11.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="GPU " required >GPU<br><input type="radio" name="question11" value="CPU ">CPU<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.8
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">19<br><label>1.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question1" value="The message itself " required >The message itself<br><input type="radio" name="question1" value="The "From" line ">The "From" line<br><input type="radio" name="question1" value="The Search Bar ">The Search Bar<br><input type="radio" name="question1" value="The "To" line ">The "To" line<br></p>13<br><label>2.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question2" value="The home page " required >The home page<br><input type="radio" name="question2" value="The search engine ">The search engine<br><input type="radio" name="question2" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question2" value="google.com ">google.com<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>12.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question12" value="Firefox " required >Firefox<br><input type="radio" name="question12" value="Safari ">Safari<br><input type="radio" name="question12" value="Google Chrome ">Google Chrome<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>15.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Shortcut " required >Shortcut<br><input type="radio" name="question15" value="System Tray ">System Tray<br><input type="radio" name="question15" value="Program ">Program<br><input type="radio" name="question15" value="Taskbar ">Taskbar<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>2<br><label>10.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question10" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question10" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question10" value="The Start button ">The Start button<br><input type="radio" name="question10" value="A type of file ">A type of file<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>14.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question14" value="The home page " required >The home page<br><input type="radio" name="question14" value="The search engine ">The search engine<br><input type="radio" name="question14" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question14" value="google.com ">google.com<br></p>8<br><label>15.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="Control Panel " required >Control Panel<br><input type="radio" name="question15" value="Computer ">Computer<br><input type="radio" name="question15" value="Documents ">Documents<br><input type="radio" name="question15" value="Desktop ">Desktop<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>18.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question18" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question18" value="Word ">Word<br><input type="radio" name="question18" value="Explorer ">Explorer<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>8<br><label>8.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="Control Panel " required >Control Panel<br><input type="radio" name="question8" value="Computer ">Computer<br><input type="radio" name="question8" value="Documents ">Documents<br><input type="radio" name="question8" value="Desktop ">Desktop<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>15<br><label>13.) Email is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question13" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question13" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question13" value="hotmail.com ">hotmail.com<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>7<br><label>15.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Shortcut " required >Shortcut<br><input type="radio" name="question15" value="System Tray ">System Tray<br><input type="radio" name="question15" value="Program ">Program<br><input type="radio" name="question15" value="Taskbar ">Taskbar<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>5<br><label>4.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question4" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question4" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>5.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question5" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question5" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question5" value="The Start button ">The Start button<br><input type="radio" name="question5" value="A type of file ">A type of file<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>14.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question14" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question14" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question14" value="A web browser ">A web browser<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>20.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question20" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question20" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question20" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question20" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>15<br><label>2.) Email is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question2" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question2" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question2" value="hotmail.com ">hotmail.com<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>19<br><label>11.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question11" value="The message itself " required >The message itself<br><input type="radio" name="question11" value="The "From" line ">The "From" line<br><input type="radio" name="question11" value="The Search Bar ">The Search Bar<br><input type="radio" name="question11" value="The "To" line ">The "To" line<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>15.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question15" value="The home page " required >The home page<br><input type="radio" name="question15" value="The search engine ">The search engine<br><input type="radio" name="question15" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question15" value="google.com ">google.com<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>17.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Icons " required >Icons<br><input type="radio" name="question17" value="Folders ">Folders<br><input type="radio" name="question17" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question17" value="File Type ">File Type<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>12<br><label>2.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question2" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question2" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question2" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>7<br><label>10.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Shortcut " required >Shortcut<br><input type="radio" name="question10" value="System Tray ">System Tray<br><input type="radio" name="question10" value="Program ">Program<br><input type="radio" name="question10" value="Taskbar ">Taskbar<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>11<br><label>17.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question17" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question17" value="Address Bar ">Address Bar<br><input type="radio" name="question17" value="Search Bar ">Search Bar<br><input type="radio" name="question17" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>18.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question18" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question18" value="Word ">Word<br><input type="radio" name="question18" value="Explorer ">Explorer<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>9<br><label>5.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question5" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question5" value="An operating system ">An operating system<br><input type="radio" name="question5" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>11.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question11" value="Keyboard " required >Keyboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br><input type="radio" name="question11" value="Printer ">Printer<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.6.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>4.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question4" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question4" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question4" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question4" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>8<br><label>15.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="Control Panel " required >Control Panel<br><input type="radio" name="question15" value="Computer ">Computer<br><input type="radio" name="question15" value="Documents ">Documents<br><input type="radio" name="question15" value="Desktop ">Desktop<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.36
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>2.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question2" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question2" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question2" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>3<br><label>11.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question11" value="Keyboard " required >Keyboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br><input type="radio" name="question11" value="Printer ">Printer<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>16<br><label>13.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question13" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question13" value="Updating software ">Updating software<br><input type="radio" name="question13" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>15.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question15" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question15" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question15" value="The Start button ">The Start button<br><input type="radio" name="question15" value="A type of file ">A type of file<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.35
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>17<br><label>5.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question5" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question5" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question5" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question5" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>7.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question7" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question7" value="An operating system ">An operating system<br><input type="radio" name="question7" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>0<br><label>15.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question15" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question15" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question15" value="A web browser ">A web browser<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.34
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>2<br><label>10.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question10" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question10" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question10" value="The Start button ">The Start button<br><input type="radio" name="question10" value="A type of file ">A type of file<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>0<br><label>14.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question14" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question14" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question14" value="A web browser ">A web browser<br></p>8<br><label>15.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="Control Panel " required >Control Panel<br><input type="radio" name="question15" value="Computer ">Computer<br><input type="radio" name="question15" value="Documents ">Documents<br><input type="radio" name="question15" value="Desktop ">Desktop<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>17.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question17" value="Firefox " required >Firefox<br><input type="radio" name="question17" value="Safari ">Safari<br><input type="radio" name="question17" value="Google Chrome ">Google Chrome<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>18.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question18" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question18" value="Word ">Word<br><input type="radio" name="question18" value="Explorer ">Explorer<br></p>3<br><label>19.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question19" value="Keyboard " required >Keyboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br><input type="radio" name="question19" value="Printer ">Printer<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.33
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>10<br><label>5.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question5" value="Firefox " required >Firefox<br><input type="radio" name="question5" value="Safari ">Safari<br><input type="radio" name="question5" value="Google Chrome ">Google Chrome<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>19<br><label>8.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question8" value="The message itself " required >The message itself<br><input type="radio" name="question8" value="The "From" line ">The "From" line<br><input type="radio" name="question8" value="The Search Bar ">The Search Bar<br><input type="radio" name="question8" value="The "To" line ">The "To" line<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>3<br><label>12.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question12" value="Keyboard " required >Keyboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br><input type="radio" name="question12" value="Printer ">Printer<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>15.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Shortcut " required >Shortcut<br><input type="radio" name="question15" value="System Tray ">System Tray<br><input type="radio" name="question15" value="Program ">Program<br><input type="radio" name="question15" value="Taskbar ">Taskbar<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>17.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question17" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question17" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question17" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question17" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.32
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>16<br><label>3.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question3" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question3" value="Updating software ">Updating software<br><input type="radio" name="question3" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>17<br><label>5.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question5" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question5" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question5" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question5" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>6.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question6" value="Firefox " required >Firefox<br><input type="radio" name="question6" value="Safari ">Safari<br><input type="radio" name="question6" value="Google Chrome ">Google Chrome<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>8<br><label>8.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="Control Panel " required >Control Panel<br><input type="radio" name="question8" value="Computer ">Computer<br><input type="radio" name="question8" value="Documents ">Documents<br><input type="radio" name="question8" value="Desktop ">Desktop<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>14.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question14" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question14" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question14" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question14" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>15.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question15" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question15" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question15" value="The Start button ">The Start button<br><input type="radio" name="question15" value="A type of file ">A type of file<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>14<br><label>17.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question17" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question17" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question17" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question17" value="Click the refresh button ">Click the refresh button<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>11<br><label>20.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question20" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question20" value="Address Bar ">Address Bar<br><input type="radio" name="question20" value="Search Bar ">Search Bar<br><input type="radio" name="question20" value="Favorites Bar ">Favorites Bar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.31
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>8<br><label>2.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="Control Panel " required >Control Panel<br><input type="radio" name="question2" value="Computer ">Computer<br><input type="radio" name="question2" value="Documents ">Documents<br><input type="radio" name="question2" value="Desktop ">Desktop<br></p>13<br><label>3.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question3" value="The home page " required >The home page<br><input type="radio" name="question3" value="The search engine ">The search engine<br><input type="radio" name="question3" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question3" value="google.com ">google.com<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>5.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question5" value="The message itself " required >The message itself<br><input type="radio" name="question5" value="The "From" line ">The "From" line<br><input type="radio" name="question5" value="The Search Bar ">The Search Bar<br><input type="radio" name="question5" value="The "To" line ">The "To" line<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.30
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>12<br><label>2.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question2" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question2" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question2" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>14.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="GPU " required >GPU<br><input type="radio" name="question14" value="CPU ">CPU<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.29
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>17<br><label>4.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question4" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question4" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question4" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question4" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>9<br><label>5.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question5" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question5" value="An operating system ">An operating system<br><input type="radio" name="question5" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>11<br><label>11.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question11" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question11" value="Address Bar ">Address Bar<br><input type="radio" name="question11" value="Search Bar ">Search Bar<br><input type="radio" name="question11" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>15.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question15" value="The message itself " required >The message itself<br><input type="radio" name="question15" value="The "From" line ">The "From" line<br><input type="radio" name="question15" value="The Search Bar ">The Search Bar<br><input type="radio" name="question15" value="The "To" line ">The "To" line<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>12<br><label>19.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question19" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question19" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question19" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.28
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>19<br><label>8.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question8" value="The message itself " required >The message itself<br><input type="radio" name="question8" value="The "From" line ">The "From" line<br><input type="radio" name="question8" value="The Search Bar ">The Search Bar<br><input type="radio" name="question8" value="The "To" line ">The "To" line<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>14.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question14" value="The home page " required >The home page<br><input type="radio" name="question14" value="The search engine ">The search engine<br><input type="radio" name="question14" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question14" value="google.com ">google.com<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.27
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>17<br><label>5.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question5" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question5" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question5" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question5" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>7.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question7" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question7" value="An operating system ">An operating system<br><input type="radio" name="question7" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>8<br><label>15.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="Control Panel " required >Control Panel<br><input type="radio" name="question15" value="Computer ">Computer<br><input type="radio" name="question15" value="Documents ">Documents<br><input type="radio" name="question15" value="Desktop ">Desktop<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>18<br><label>17.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question17" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question17" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question17" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question17" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.26
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>17<br><label>5.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question5" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question5" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question5" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question5" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>10<br><label>12.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question12" value="Firefox " required >Firefox<br><input type="radio" name="question12" value="Safari ">Safari<br><input type="radio" name="question12" value="Google Chrome ">Google Chrome<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>19<br><label>16.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question16" value="The message itself " required >The message itself<br><input type="radio" name="question16" value="The "From" line ">The "From" line<br><input type="radio" name="question16" value="The Search Bar ">The Search Bar<br><input type="radio" name="question16" value="The "To" line ">The "To" line<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.25
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>4.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question4" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question4" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>17<br><label>12.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question12" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question12" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question12" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question12" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>18<br><label>18.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question18" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question18" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question18" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question18" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.24
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>10<br><label>7.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question7" value="Firefox " required >Firefox<br><input type="radio" name="question7" value="Safari ">Safari<br><input type="radio" name="question7" value="Google Chrome ">Google Chrome<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br></p>11<br><label>8.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question8" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question8" value="Address Bar ">Address Bar<br><input type="radio" name="question8" value="Search Bar ">Search Bar<br><input type="radio" name="question8" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>11.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="GPU " required >GPU<br><input type="radio" name="question11" value="CPU ">CPU<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>18<br><label>18.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question18" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question18" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question18" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question18" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.23
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>9<br><label>7.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question7" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question7" value="An operating system ">An operating system<br><input type="radio" name="question7" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>0<br><label>8.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question8" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question8" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question8" value="A web browser ">A web browser<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>5<br><label>19.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question19" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question19" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.22
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>2.) Email is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question2" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question2" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question2" value="hotmail.com ">hotmail.com<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>19<br><label>8.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question8" value="The message itself " required >The message itself<br><input type="radio" name="question8" value="The "From" line ">The "From" line<br><input type="radio" name="question8" value="The Search Bar ">The Search Bar<br><input type="radio" name="question8" value="The "To" line ">The "To" line<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>3<br><label>11.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question11" value="Keyboard " required >Keyboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br><input type="radio" name="question11" value="Printer ">Printer<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>18<br><label>18.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question18" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question18" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question18" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question18" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.21
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>5<br><label>3.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question3" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question3" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>4.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question4" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question4" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question4" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question4" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>15.) Email is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question15" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question15" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question15" value="hotmail.com ">hotmail.com<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.20
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>12<br><label>6.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question6" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question6" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question6" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>10<br><label>14.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question14" value="Firefox " required >Firefox<br><input type="radio" name="question14" value="Safari ">Safari<br><input type="radio" name="question14" value="Google Chrome ">Google Chrome<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>18.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question18" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question18" value="Word ">Word<br><input type="radio" name="question18" value="Explorer ">Explorer<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.19
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">15<br><label>1.) Email is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question1" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question1" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question1" value="hotmail.com ">hotmail.com<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>18<br><label>7.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question7" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question7" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question7" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question7" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>6<br><label>13.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Icons " required >Icons<br><input type="radio" name="question13" value="Folders ">Folders<br><input type="radio" name="question13" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question13" value="File Type ">File Type<br></p>10<br><label>14.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question14" value="Firefox " required >Firefox<br><input type="radio" name="question14" value="Safari ">Safari<br><input type="radio" name="question14" value="Google Chrome ">Google Chrome<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>16.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Shortcut " required >Shortcut<br><input type="radio" name="question16" value="System Tray ">System Tray<br><input type="radio" name="question16" value="Program ">Program<br><input type="radio" name="question16" value="Taskbar ">Taskbar<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>12<br><label>19.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question19" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question19" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question19" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.18
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>8<br><label>6.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="Control Panel " required >Control Panel<br><input type="radio" name="question6" value="Computer ">Computer<br><input type="radio" name="question6" value="Documents ">Documents<br><input type="radio" name="question6" value="Desktop ">Desktop<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>16.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Shortcut " required >Shortcut<br><input type="radio" name="question16" value="System Tray ">System Tray<br><input type="radio" name="question16" value="Program ">Program<br><input type="radio" name="question16" value="Taskbar ">Taskbar<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.16
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>15<br><label>10.) Email is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question10" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question10" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question10" value="hotmail.com ">hotmail.com<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>10<br><label>15.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question15" value="Firefox " required >Firefox<br><input type="radio" name="question15" value="Safari ">Safari<br><input type="radio" name="question15" value="Google Chrome ">Google Chrome<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>16.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question16" value="The message itself " required >The message itself<br><input type="radio" name="question16" value="The "From" line ">The "From" line<br><input type="radio" name="question16" value="The Search Bar ">The Search Bar<br><input type="radio" name="question16" value="The "To" line ">The "To" line<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>11<br><label>18.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question18" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question18" value="Address Bar ">Address Bar<br><input type="radio" name="question18" value="Search Bar ">Search Bar<br><input type="radio" name="question18" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.15
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>19<br><label>7.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question7" value="The message itself " required >The message itself<br><input type="radio" name="question7" value="The "From" line ">The "From" line<br><input type="radio" name="question7" value="The Search Bar ">The Search Bar<br><input type="radio" name="question7" value="The "To" line ">The "To" line<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.14
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>12<br><label>2.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question2" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question2" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question2" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>5<br><label>3.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question3" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question3" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>12.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question12" value="Keyboard " required >Keyboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br><input type="radio" name="question12" value="Printer ">Printer<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>4<br><label>14.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="GPU " required >GPU<br><input type="radio" name="question14" value="CPU ">CPU<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.13
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>8<br><label>6.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="Control Panel " required >Control Panel<br><input type="radio" name="question6" value="Computer ">Computer<br><input type="radio" name="question6" value="Documents ">Documents<br><input type="radio" name="question6" value="Desktop ">Desktop<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>14.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question14" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question14" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question14" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question14" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.12
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>15<br><label>2.) Email is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question2" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question2" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question2" value="hotmail.com ">hotmail.com<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>9<br><label>6.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question6" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question6" value="An operating system ">An operating system<br><input type="radio" name="question6" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>7.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Icons " required >Icons<br><input type="radio" name="question7" value="Folders ">Folders<br><input type="radio" name="question7" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question7" value="File Type ">File Type<br></p>14<br><label>8.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question8" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question8" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question8" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question8" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>7<br><label>16.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Shortcut " required >Shortcut<br><input type="radio" name="question16" value="System Tray ">System Tray<br><input type="radio" name="question16" value="Program ">Program<br><input type="radio" name="question16" value="Taskbar ">Taskbar<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.11
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">4<br><label>1.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="GPU " required >GPU<br><input type="radio" name="question1" value="CPU ">CPU<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>6.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="Control Panel " required >Control Panel<br><input type="radio" name="question6" value="Computer ">Computer<br><input type="radio" name="question6" value="Documents ">Documents<br><input type="radio" name="question6" value="Desktop ">Desktop<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>14<br><label>19.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question19" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question19" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question19" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question19" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>20.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question20" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question20" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question20" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question20" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.10
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>14<br><label>4.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question4" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question4" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question4" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question4" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>19<br><label>11.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question11" value="The message itself " required >The message itself<br><input type="radio" name="question11" value="The "From" line ">The "From" line<br><input type="radio" name="question11" value="The Search Bar ">The Search Bar<br><input type="radio" name="question11" value="The "To" line ">The "To" line<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.9
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">15<br><label>1.) Email is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question1" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question1" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question1" value="hotmail.com ">hotmail.com<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>5<br><label>4.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question4" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question4" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>1<br><label>10.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question10" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question10" value="Word ">Word<br><input type="radio" name="question10" value="Explorer ">Explorer<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>14.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question14" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question14" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question14" value="A web browser ">A web browser<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>11<br><label>17.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question17" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question17" value="Address Bar ">Address Bar<br><input type="radio" name="question17" value="Search Bar ">Search Bar<br><input type="radio" name="question17" value="Favorites Bar ">Favorites Bar<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.8
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">15<br><label>1.) Email is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question1" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question1" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question1" value="hotmail.com ">hotmail.com<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>19<br><label>15.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question15" value="The message itself " required >The message itself<br><input type="radio" name="question15" value="The "From" line ">The "From" line<br><input type="radio" name="question15" value="The Search Bar ">The Search Bar<br><input type="radio" name="question15" value="The "To" line ">The "To" line<br></p>18<br><label>16.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question16" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question16" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question16" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question16" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>19<br><label>8.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question8" value="The message itself " required >The message itself<br><input type="radio" name="question8" value="The "From" line ">The "From" line<br><input type="radio" name="question8" value="The Search Bar ">The Search Bar<br><input type="radio" name="question8" value="The "To" line ">The "To" line<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>15<br><label>13.) Email is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question13" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question13" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question13" value="hotmail.com ">hotmail.com<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>19.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question19" value="Keyboard " required >Keyboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br><input type="radio" name="question19" value="Printer ">Printer<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>14.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question14" value="Firefox " required >Firefox<br><input type="radio" name="question14" value="Safari ">Safari<br><input type="radio" name="question14" value="Google Chrome ">Google Chrome<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>15.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question15" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question15" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question15" value="A web browser ">A web browser<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">6<br><label>1.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Icons " required >Icons<br><input type="radio" name="question1" value="Folders ">Folders<br><input type="radio" name="question1" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question1" value="File Type ">File Type<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>17<br><label>7.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question7" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question7" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question7" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question7" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>15<br><label>15.) Email is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question15" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question15" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question15" value="hotmail.com ">hotmail.com<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>9.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question9" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question9" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question9" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>10.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Shortcut " required >Shortcut<br><input type="radio" name="question10" value="System Tray ">System Tray<br><input type="radio" name="question10" value="Program ">Program<br><input type="radio" name="question10" value="Taskbar ">Taskbar<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>12.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question12" value="Keyboard " required >Keyboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br><input type="radio" name="question12" value="Printer ">Printer<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">6<br><label>1.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Icons " required >Icons<br><input type="radio" name="question1" value="Folders ">Folders<br><input type="radio" name="question1" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question1" value="File Type ">File Type<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>1<br><label>10.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question10" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question10" value="Word ">Word<br><input type="radio" name="question10" value="Explorer ">Explorer<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>14.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question14" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question14" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question14" value="A web browser ">A web browser<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">6<br><label>1.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Icons " required >Icons<br><input type="radio" name="question1" value="Folders ">Folders<br><input type="radio" name="question1" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question1" value="File Type ">File Type<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>1<br><label>10.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question10" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question10" value="Word ">Word<br><input type="radio" name="question10" value="Explorer ">Explorer<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>16<br><label>13.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question13" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question13" value="Updating software ">Updating software<br><input type="radio" name="question13" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>15.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question15" value="Firefox " required >Firefox<br><input type="radio" name="question15" value="Safari ">Safari<br><input type="radio" name="question15" value="Google Chrome ">Google Chrome<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>16.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question16" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question16" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question16" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question16" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>3.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="GPU " required >GPU<br><input type="radio" name="question3" value="CPU ">CPU<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>6.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question6" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question6" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question6" value="The Start button ">The Start button<br><input type="radio" name="question6" value="A type of file ">A type of file<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>10.) Email is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question10" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question10" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question10" value="hotmail.com ">hotmail.com<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>14.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question14" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question14" value="Word ">Word<br><input type="radio" name="question14" value="Explorer ">Explorer<br></p>0<br><label>15.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question15" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question15" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question15" value="A web browser ">A web browser<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>10<br><label>17.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question17" value="Firefox " required >Firefox<br><input type="radio" name="question17" value="Safari ">Safari<br><input type="radio" name="question17" value="Google Chrome ">Google Chrome<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br></p>11<br><label>18.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question18" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question18" value="Address Bar ">Address Bar<br><input type="radio" name="question18" value="Search Bar ">Search Bar<br><input type="radio" name="question18" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>19.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question19" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question19" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.5.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>6.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question6" value="Firefox " required >Firefox<br><input type="radio" name="question6" value="Safari ">Safari<br><input type="radio" name="question6" value="Google Chrome ">Google Chrome<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>18<br><label>18.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question18" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question18" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question18" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question18" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>19.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question19" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question19" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question19" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question19" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.45
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>2.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question2" value="The home page " required >The home page<br><input type="radio" name="question2" value="The search engine ">The search engine<br><input type="radio" name="question2" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question2" value="google.com ">google.com<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>17<br><label>7.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question7" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question7" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question7" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question7" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>6<br><label>13.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Icons " required >Icons<br><input type="radio" name="question13" value="Folders ">Folders<br><input type="radio" name="question13" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question13" value="File Type ">File Type<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.44
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>5<br><label>3.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question3" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question3" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>14<br><label>6.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question6" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question6" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question6" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question6" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>7.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Icons " required >Icons<br><input type="radio" name="question7" value="Folders ">Folders<br><input type="radio" name="question7" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question7" value="File Type ">File Type<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.43
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>19<br><label>7.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question7" value="The message itself " required >The message itself<br><input type="radio" name="question7" value="The "From" line ">The "From" line<br><input type="radio" name="question7" value="The Search Bar ">The Search Bar<br><input type="radio" name="question7" value="The "To" line ">The "To" line<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>13<br><label>9.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question9" value="The home page " required >The home page<br><input type="radio" name="question9" value="The search engine ">The search engine<br><input type="radio" name="question9" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question9" value="google.com ">google.com<br></p>7<br><label>10.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Shortcut " required >Shortcut<br><input type="radio" name="question10" value="System Tray ">System Tray<br><input type="radio" name="question10" value="Program ">Program<br><input type="radio" name="question10" value="Taskbar ">Taskbar<br></p>11<br><label>11.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question11" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question11" value="Address Bar ">Address Bar<br><input type="radio" name="question11" value="Search Bar ">Search Bar<br><input type="radio" name="question11" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>12.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question12" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question12" value="Word ">Word<br><input type="radio" name="question12" value="Explorer ">Explorer<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>15.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="Control Panel " required >Control Panel<br><input type="radio" name="question15" value="Computer ">Computer<br><input type="radio" name="question15" value="Documents ">Documents<br><input type="radio" name="question15" value="Desktop ">Desktop<br></p>9<br><label>16.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question16" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question16" value="An operating system ">An operating system<br><input type="radio" name="question16" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.42
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">4<br><label>1.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="GPU " required >GPU<br><input type="radio" name="question1" value="CPU ">CPU<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br></p>11<br><label>2.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question2" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question2" value="Address Bar ">Address Bar<br><input type="radio" name="question2" value="Search Bar ">Search Bar<br><input type="radio" name="question2" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.41
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>8<br><label>8.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="Control Panel " required >Control Panel<br><input type="radio" name="question8" value="Computer ">Computer<br><input type="radio" name="question8" value="Documents ">Documents<br><input type="radio" name="question8" value="Desktop ">Desktop<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>15<br><label>13.) Email is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question13" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question13" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question13" value="hotmail.com ">hotmail.com<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.40
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>11.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question11" value="Keyboard " required >Keyboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br><input type="radio" name="question11" value="Printer ">Printer<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>14.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question14" value="Firefox " required >Firefox<br><input type="radio" name="question14" value="Safari ">Safari<br><input type="radio" name="question14" value="Google Chrome ">Google Chrome<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>18.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question18" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question18" value="Updating software ">Updating software<br><input type="radio" name="question18" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.39
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">15<br><label>1.) Email is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question1" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question1" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question1" value="hotmail.com ">hotmail.com<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>5<br><label>7.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question7" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question7" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>7<br><label>10.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Shortcut " required >Shortcut<br><input type="radio" name="question10" value="System Tray ">System Tray<br><input type="radio" name="question10" value="Program ">Program<br><input type="radio" name="question10" value="Taskbar ">Taskbar<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>16.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question16" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question16" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question16" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question16" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.38
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>2.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question2" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question2" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question2" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>10<br><label>6.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question6" value="Firefox " required >Firefox<br><input type="radio" name="question6" value="Safari ">Safari<br><input type="radio" name="question6" value="Google Chrome ">Google Chrome<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>6<br><label>13.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Icons " required >Icons<br><input type="radio" name="question13" value="Folders ">Folders<br><input type="radio" name="question13" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question13" value="File Type ">File Type<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>18<br><label>20.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question20" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question20" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question20" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question20" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.37
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>5.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question5" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question5" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question5" value="The Start button ">The Start button<br><input type="radio" name="question5" value="A type of file ">A type of file<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>7.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Icons " required >Icons<br><input type="radio" name="question7" value="Folders ">Folders<br><input type="radio" name="question7" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question7" value="File Type ">File Type<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>16<br><label>13.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question13" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question13" value="Updating software ">Updating software<br><input type="radio" name="question13" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.36
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>2<br><label>6.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question6" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question6" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question6" value="The Start button ">The Start button<br><input type="radio" name="question6" value="A type of file ">A type of file<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>11.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question11" value="The message itself " required >The message itself<br><input type="radio" name="question11" value="The "From" line ">The "From" line<br><input type="radio" name="question11" value="The Search Bar ">The Search Bar<br><input type="radio" name="question11" value="The "To" line ">The "To" line<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>15<br><label>15.) Email is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question15" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question15" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question15" value="hotmail.com ">hotmail.com<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>11<br><label>18.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question18" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question18" value="Address Bar ">Address Bar<br><input type="radio" name="question18" value="Search Bar ">Search Bar<br><input type="radio" name="question18" value="Favorites Bar ">Favorites Bar<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.35
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>8<br><label>8.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="Control Panel " required >Control Panel<br><input type="radio" name="question8" value="Computer ">Computer<br><input type="radio" name="question8" value="Documents ">Documents<br><input type="radio" name="question8" value="Desktop ">Desktop<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>16.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question16" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question16" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question16" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.34
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>3.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question3" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question3" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.32
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>4<br><label>3.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="GPU " required >GPU<br><input type="radio" name="question3" value="CPU ">CPU<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>10<br><label>6.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question6" value="Firefox " required >Firefox<br><input type="radio" name="question6" value="Safari ">Safari<br><input type="radio" name="question6" value="Google Chrome ">Google Chrome<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>12.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question12" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question12" value="Word ">Word<br><input type="radio" name="question12" value="Explorer ">Explorer<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>9<br><label>16.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question16" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question16" value="An operating system ">An operating system<br><input type="radio" name="question16" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>2<br><label>17.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question17" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question17" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question17" value="The Start button ">The Start button<br><input type="radio" name="question17" value="A type of file ">A type of file<br></p>18<br><label>18.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question18" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question18" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question18" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question18" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>19.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question19" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question19" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.31
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">19<br><label>1.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question1" value="The message itself " required >The message itself<br><input type="radio" name="question1" value="The "From" line ">The "From" line<br><input type="radio" name="question1" value="The Search Bar ">The Search Bar<br><input type="radio" name="question1" value="The "To" line ">The "To" line<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>15<br><label>5.) Email is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question5" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question5" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question5" value="hotmail.com ">hotmail.com<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>5<br><label>12.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question12" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question12" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>15.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question15" value="Firefox " required >Firefox<br><input type="radio" name="question15" value="Safari ">Safari<br><input type="radio" name="question15" value="Google Chrome ">Google Chrome<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>11<br><label>18.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question18" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question18" value="Address Bar ">Address Bar<br><input type="radio" name="question18" value="Search Bar ">Search Bar<br><input type="radio" name="question18" value="Favorites Bar ">Favorites Bar<br></p>14<br><label>19.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question19" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question19" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question19" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question19" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.30
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>4.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question4" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question4" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>14<br><label>6.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question6" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question6" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question6" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question6" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>4<br><label>13.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="GPU " required >GPU<br><input type="radio" name="question13" value="CPU ">CPU<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>2<br><label>17.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question17" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question17" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question17" value="The Start button ">The Start button<br><input type="radio" name="question17" value="A type of file ">A type of file<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.29
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>3<br><label>11.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question11" value="Keyboard " required >Keyboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br><input type="radio" name="question11" value="Printer ">Printer<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>8<br><label>15.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="Control Panel " required >Control Panel<br><input type="radio" name="question15" value="Computer ">Computer<br><input type="radio" name="question15" value="Documents ">Documents<br><input type="radio" name="question15" value="Desktop ">Desktop<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.28
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>2.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question2" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question2" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>7.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question7" value="Firefox " required >Firefox<br><input type="radio" name="question7" value="Safari ">Safari<br><input type="radio" name="question7" value="Google Chrome ">Google Chrome<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>11.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question11" value="The message itself " required >The message itself<br><input type="radio" name="question11" value="The "From" line ">The "From" line<br><input type="radio" name="question11" value="The Search Bar ">The Search Bar<br><input type="radio" name="question11" value="The "To" line ">The "To" line<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.27
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>9<br><label>5.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question5" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question5" value="An operating system ">An operating system<br><input type="radio" name="question5" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.26
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">4<br><label>1.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="GPU " required >GPU<br><input type="radio" name="question1" value="CPU ">CPU<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>15<br><label>5.) Email is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question5" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question5" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question5" value="hotmail.com ">hotmail.com<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>17<br><label>12.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question12" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question12" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question12" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question12" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>19<br><label>16.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question16" value="The message itself " required >The message itself<br><input type="radio" name="question16" value="The "From" line ">The "From" line<br><input type="radio" name="question16" value="The Search Bar ">The Search Bar<br><input type="radio" name="question16" value="The "To" line ">The "To" line<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>18<br><label>18.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question18" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question18" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question18" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question18" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>19.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question19" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question19" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question19" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question19" value="Click the refresh button ">Click the refresh button<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.25
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>5.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question5" value="The message itself " required >The message itself<br><input type="radio" name="question5" value="The "From" line ">The "From" line<br><input type="radio" name="question5" value="The Search Bar ">The Search Bar<br><input type="radio" name="question5" value="The "To" line ">The "To" line<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>9<br><label>7.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question7" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question7" value="An operating system ">An operating system<br><input type="radio" name="question7" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>9.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question9" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question9" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question9" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>1<br><label>12.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question12" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question12" value="Word ">Word<br><input type="radio" name="question12" value="Explorer ">Explorer<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>14.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question14" value="The home page " required >The home page<br><input type="radio" name="question14" value="The search engine ">The search engine<br><input type="radio" name="question14" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question14" value="google.com ">google.com<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.24
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.23
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>11<br><label>8.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question8" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question8" value="Address Bar ">Address Bar<br><input type="radio" name="question8" value="Search Bar ">Search Bar<br><input type="radio" name="question8" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>8<br><label>10.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="Control Panel " required >Control Panel<br><input type="radio" name="question10" value="Computer ">Computer<br><input type="radio" name="question10" value="Documents ">Documents<br><input type="radio" name="question10" value="Desktop ">Desktop<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.22
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>2<br><label>5.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question5" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question5" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question5" value="The Start button ">The Start button<br><input type="radio" name="question5" value="A type of file ">A type of file<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>5<br><label>7.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question7" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question7" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>11.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question11" value="The message itself " required >The message itself<br><input type="radio" name="question11" value="The "From" line ">The "From" line<br><input type="radio" name="question11" value="The Search Bar ">The Search Bar<br><input type="radio" name="question11" value="The "To" line ">The "To" line<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>18<br><label>20.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question20" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question20" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question20" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question20" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.21
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>9<br><label>5.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question5" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question5" value="An operating system ">An operating system<br><input type="radio" name="question5" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>7.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question7" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question7" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>8<br><label>10.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="Control Panel " required >Control Panel<br><input type="radio" name="question10" value="Computer ">Computer<br><input type="radio" name="question10" value="Documents ">Documents<br><input type="radio" name="question10" value="Desktop ">Desktop<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.20
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>3.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="GPU " required >GPU<br><input type="radio" name="question3" value="CPU ">CPU<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.19
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>17<br><label>7.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question7" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question7" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question7" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question7" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>12<br><label>9.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question9" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question9" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question9" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>11<br><label>11.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question11" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question11" value="Address Bar ">Address Bar<br><input type="radio" name="question11" value="Search Bar ">Search Bar<br><input type="radio" name="question11" value="Favorites Bar ">Favorites Bar<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>16<br><label>13.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question13" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question13" value="Updating software ">Updating software<br><input type="radio" name="question13" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>14<br><label>17.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question17" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question17" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question17" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question17" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>19.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question19" value="Keyboard " required >Keyboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br><input type="radio" name="question19" value="Printer ">Printer<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.18
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">5<br><label>1.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question1" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question1" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>5.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question5" value="Firefox " required >Firefox<br><input type="radio" name="question5" value="Safari ">Safari<br><input type="radio" name="question5" value="Google Chrome ">Google Chrome<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>15<br><label>13.) Email is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question13" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question13" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question13" value="hotmail.com ">hotmail.com<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.17
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>8<br><label>6.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="Control Panel " required >Control Panel<br><input type="radio" name="question6" value="Computer ">Computer<br><input type="radio" name="question6" value="Documents ">Documents<br><input type="radio" name="question6" value="Desktop ">Desktop<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>0<br><label>8.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question8" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question8" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question8" value="A web browser ">A web browser<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>11<br><label>18.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question18" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question18" value="Address Bar ">Address Bar<br><input type="radio" name="question18" value="Search Bar ">Search Bar<br><input type="radio" name="question18" value="Favorites Bar ">Favorites Bar<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.16
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>7.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question7" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question7" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question7" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question7" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>13<br><label>9.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question9" value="The home page " required >The home page<br><input type="radio" name="question9" value="The search engine ">The search engine<br><input type="radio" name="question9" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question9" value="google.com ">google.com<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>13.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question13" value="The message itself " required >The message itself<br><input type="radio" name="question13" value="The "From" line ">The "From" line<br><input type="radio" name="question13" value="The Search Bar ">The Search Bar<br><input type="radio" name="question13" value="The "To" line ">The "To" line<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>8<br><label>20.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="Control Panel " required >Control Panel<br><input type="radio" name="question20" value="Computer ">Computer<br><input type="radio" name="question20" value="Documents ">Documents<br><input type="radio" name="question20" value="Desktop ">Desktop<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.15
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">6<br><label>1.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Icons " required >Icons<br><input type="radio" name="question1" value="Folders ">Folders<br><input type="radio" name="question1" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question1" value="File Type ">File Type<br></p>15<br><label>2.) Email is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question2" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question2" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question2" value="hotmail.com ">hotmail.com<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>4.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question4" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question4" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question4" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question4" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>5.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question5" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question5" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question5" value="The Start button ">The Start button<br><input type="radio" name="question5" value="A type of file ">A type of file<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>8<br><label>10.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="Control Panel " required >Control Panel<br><input type="radio" name="question10" value="Computer ">Computer<br><input type="radio" name="question10" value="Documents ">Documents<br><input type="radio" name="question10" value="Desktop ">Desktop<br></p>4<br><label>11.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="GPU " required >GPU<br><input type="radio" name="question11" value="CPU ">CPU<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.14
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>18<br><label>7.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question7" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question7" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question7" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question7" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>12.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question12" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question12" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>14.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question14" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question14" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question14" value="A web browser ">A web browser<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.13
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>9<br><label>6.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question6" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question6" value="An operating system ">An operating system<br><input type="radio" name="question6" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>10.) Email is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question10" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question10" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question10" value="hotmail.com ">hotmail.com<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.12
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>8.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="Control Panel " required >Control Panel<br><input type="radio" name="question8" value="Computer ">Computer<br><input type="radio" name="question8" value="Documents ">Documents<br><input type="radio" name="question8" value="Desktop ">Desktop<br></p>13<br><label>9.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question9" value="The home page " required >The home page<br><input type="radio" name="question9" value="The search engine ">The search engine<br><input type="radio" name="question9" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question9" value="google.com ">google.com<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>2<br><label>15.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question15" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question15" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question15" value="The Start button ">The Start button<br><input type="radio" name="question15" value="A type of file ">A type of file<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.11
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>1<br><label>10.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question10" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question10" value="Word ">Word<br><input type="radio" name="question10" value="Explorer ">Explorer<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>17<br><label>20.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question20" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question20" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question20" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question20" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.10
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">4<br><label>1.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="GPU " required >GPU<br><input type="radio" name="question1" value="CPU ">CPU<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>17<br><label>4.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question4" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question4" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question4" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question4" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.9
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">5<br><label>1.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question1" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question1" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>13<br><label>3.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question3" value="The home page " required >The home page<br><input type="radio" name="question3" value="The search engine ">The search engine<br><input type="radio" name="question3" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question3" value="google.com ">google.com<br></p>17<br><label>4.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question4" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question4" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question4" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question4" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>5.) Email is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question5" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question5" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question5" value="hotmail.com ">hotmail.com<br></p>2<br><label>6.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question6" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question6" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question6" value="The Start button ">The Start button<br><input type="radio" name="question6" value="A type of file ">A type of file<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>16.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question16" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question16" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question16" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question16" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.8
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>5.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question5" value="Firefox " required >Firefox<br><input type="radio" name="question5" value="Safari ">Safari<br><input type="radio" name="question5" value="Google Chrome ">Google Chrome<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>6.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question6" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question6" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question6" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>18<br><label>16.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question16" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question16" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question16" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question16" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>8<br><label>20.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="Control Panel " required >Control Panel<br><input type="radio" name="question20" value="Computer ">Computer<br><input type="radio" name="question20" value="Documents ">Documents<br><input type="radio" name="question20" value="Desktop ">Desktop<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>14<br><label>6.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question6" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question6" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question6" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question6" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>19<br><label>8.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question8" value="The message itself " required >The message itself<br><input type="radio" name="question8" value="The "From" line ">The "From" line<br><input type="radio" name="question8" value="The Search Bar ">The Search Bar<br><input type="radio" name="question8" value="The "To" line ">The "To" line<br></p>13<br><label>9.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question9" value="The home page " required >The home page<br><input type="radio" name="question9" value="The search engine ">The search engine<br><input type="radio" name="question9" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question9" value="google.com ">google.com<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>18.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question18" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question18" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question18" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question18" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">4<br><label>1.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="GPU " required >GPU<br><input type="radio" name="question1" value="CPU ">CPU<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>6.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="Control Panel " required >Control Panel<br><input type="radio" name="question6" value="Computer ">Computer<br><input type="radio" name="question6" value="Documents ">Documents<br><input type="radio" name="question6" value="Desktop ">Desktop<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>13<br><label>9.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question9" value="The home page " required >The home page<br><input type="radio" name="question9" value="The search engine ">The search engine<br><input type="radio" name="question9" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question9" value="google.com ">google.com<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>19<br><label>15.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question15" value="The message itself " required >The message itself<br><input type="radio" name="question15" value="The "From" line ">The "From" line<br><input type="radio" name="question15" value="The Search Bar ">The Search Bar<br><input type="radio" name="question15" value="The "To" line ">The "To" line<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>14<br><label>17.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question17" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question17" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question17" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question17" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>20.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question20" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question20" value="Address Bar ">Address Bar<br><input type="radio" name="question20" value="Search Bar ">Search Bar<br><input type="radio" name="question20" value="Favorites Bar ">Favorites Bar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>10<br><label>14.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question14" value="Firefox " required >Firefox<br><input type="radio" name="question14" value="Safari ">Safari<br><input type="radio" name="question14" value="Google Chrome ">Google Chrome<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>15.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question15" value="The message itself " required >The message itself<br><input type="radio" name="question15" value="The "From" line ">The "From" line<br><input type="radio" name="question15" value="The Search Bar ">The Search Bar<br><input type="radio" name="question15" value="The "To" line ">The "To" line<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>16<br><label>18.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question18" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question18" value="Updating software ">Updating software<br><input type="radio" name="question18" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>2.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question2" value="The home page " required >The home page<br><input type="radio" name="question2" value="The search engine ">The search engine<br><input type="radio" name="question2" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question2" value="google.com ">google.com<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>8.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question8" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question8" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question8" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question8" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>8<br><label>10.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="Control Panel " required >Control Panel<br><input type="radio" name="question10" value="Computer ">Computer<br><input type="radio" name="question10" value="Documents ">Documents<br><input type="radio" name="question10" value="Desktop ">Desktop<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>3.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question3" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question3" value="Updating software ">Updating software<br><input type="radio" name="question3" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>10<br><label>7.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question7" value="Firefox " required >Firefox<br><input type="radio" name="question7" value="Safari ">Safari<br><input type="radio" name="question7" value="Google Chrome ">Google Chrome<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>8.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question8" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question8" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question8" value="A web browser ">A web browser<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>12.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question12" value="Keyboard " required >Keyboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br><input type="radio" name="question12" value="Printer ">Printer<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>11<br><label>2.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question2" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question2" value="Address Bar ">Address Bar<br><input type="radio" name="question2" value="Search Bar ">Search Bar<br><input type="radio" name="question2" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>7.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question7" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question7" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question7" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question7" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>2<br><label>10.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question10" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question10" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question10" value="The Start button ">The Start button<br><input type="radio" name="question10" value="A type of file ">A type of file<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>16<br><label>13.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question13" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question13" value="Updating software ">Updating software<br><input type="radio" name="question13" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>0<br><label>15.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question15" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question15" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question15" value="A web browser ">A web browser<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>2.) Email is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question2" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question2" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question2" value="hotmail.com ">hotmail.com<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>9<br><label>16.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question16" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question16" value="An operating system ">An operating system<br><input type="radio" name="question16" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>18.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question18" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question18" value="Updating software ">Updating software<br><input type="radio" name="question18" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.4.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>7.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Icons " required >Icons<br><input type="radio" name="question7" value="Folders ">Folders<br><input type="radio" name="question7" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question7" value="File Type ">File Type<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>10<br><label>12.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question12" value="Firefox " required >Firefox<br><input type="radio" name="question12" value="Safari ">Safari<br><input type="radio" name="question12" value="Google Chrome ">Google Chrome<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>19<br><label>15.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question15" value="The message itself " required >The message itself<br><input type="radio" name="question15" value="The "From" line ">The "From" line<br><input type="radio" name="question15" value="The Search Bar ">The Search Bar<br><input type="radio" name="question15" value="The "To" line ">The "To" line<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.29
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>5.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question5" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question5" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question5" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question5" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>9<br><label>6.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question6" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question6" value="An operating system ">An operating system<br><input type="radio" name="question6" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>5<br><label>12.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question12" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question12" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>13.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question13" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question13" value="Address Bar ">Address Bar<br><input type="radio" name="question13" value="Search Bar ">Search Bar<br><input type="radio" name="question13" value="Favorites Bar ">Favorites Bar<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.28
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">15<br><label>1.) Email is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question1" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question1" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question1" value="hotmail.com ">hotmail.com<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>13<br><label>3.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question3" value="The home page " required >The home page<br><input type="radio" name="question3" value="The search engine ">The search engine<br><input type="radio" name="question3" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question3" value="google.com ">google.com<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>9.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question9" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question9" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question9" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>5<br><label>12.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question12" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question12" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>10<br><label>14.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question14" value="Firefox " required >Firefox<br><input type="radio" name="question14" value="Safari ">Safari<br><input type="radio" name="question14" value="Google Chrome ">Google Chrome<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>15.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question15" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question15" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question15" value="The Start button ">The Start button<br><input type="radio" name="question15" value="A type of file ">A type of file<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.27
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">5<br><label>1.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question1" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question1" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>14<br><label>8.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question8" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question8" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question8" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question8" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.26
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>10.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Shortcut " required >Shortcut<br><input type="radio" name="question10" value="System Tray ">System Tray<br><input type="radio" name="question10" value="Program ">Program<br><input type="radio" name="question10" value="Taskbar ">Taskbar<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>15.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question15" value="The home page " required >The home page<br><input type="radio" name="question15" value="The search engine ">The search engine<br><input type="radio" name="question15" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question15" value="google.com ">google.com<br></p>19<br><label>16.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question16" value="The message itself " required >The message itself<br><input type="radio" name="question16" value="The "From" line ">The "From" line<br><input type="radio" name="question16" value="The Search Bar ">The Search Bar<br><input type="radio" name="question16" value="The "To" line ">The "To" line<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>16<br><label>18.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question18" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question18" value="Updating software ">Updating software<br><input type="radio" name="question18" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.25
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>5<br><label>3.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question3" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question3" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>4.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question4" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question4" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question4" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question4" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>18<br><label>14.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question14" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question14" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question14" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question14" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>6<br><label>18.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Icons " required >Icons<br><input type="radio" name="question18" value="Folders ">Folders<br><input type="radio" name="question18" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question18" value="File Type ">File Type<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.24
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>10.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question10" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question10" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question10" value="The Start button ">The Start button<br><input type="radio" name="question10" value="A type of file ">A type of file<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>19<br><label>13.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question13" value="The message itself " required >The message itself<br><input type="radio" name="question13" value="The "From" line ">The "From" line<br><input type="radio" name="question13" value="The Search Bar ">The Search Bar<br><input type="radio" name="question13" value="The "To" line ">The "To" line<br></p>10<br><label>14.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question14" value="Firefox " required >Firefox<br><input type="radio" name="question14" value="Safari ">Safari<br><input type="radio" name="question14" value="Google Chrome ">Google Chrome<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.23
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>2.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question2" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question2" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>3.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="GPU " required >GPU<br><input type="radio" name="question3" value="CPU ">CPU<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>8.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question8" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question8" value="Address Bar ">Address Bar<br><input type="radio" name="question8" value="Search Bar ">Search Bar<br><input type="radio" name="question8" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>6<br><label>17.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Icons " required >Icons<br><input type="radio" name="question17" value="Folders ">Folders<br><input type="radio" name="question17" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question17" value="File Type ">File Type<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>20.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="Control Panel " required >Control Panel<br><input type="radio" name="question20" value="Computer ">Computer<br><input type="radio" name="question20" value="Documents ">Documents<br><input type="radio" name="question20" value="Desktop ">Desktop<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.22
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>5<br><label>2.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question2" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question2" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.21
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>8<br><label>10.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="Control Panel " required >Control Panel<br><input type="radio" name="question10" value="Computer ">Computer<br><input type="radio" name="question10" value="Documents ">Documents<br><input type="radio" name="question10" value="Desktop ">Desktop<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>6<br><label>13.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Icons " required >Icons<br><input type="radio" name="question13" value="Folders ">Folders<br><input type="radio" name="question13" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question13" value="File Type ">File Type<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>11<br><label>17.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question17" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question17" value="Address Bar ">Address Bar<br><input type="radio" name="question17" value="Search Bar ">Search Bar<br><input type="radio" name="question17" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>18.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question18" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question18" value="Updating software ">Updating software<br><input type="radio" name="question18" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.20
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>13<br><label>3.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question3" value="The home page " required >The home page<br><input type="radio" name="question3" value="The search engine ">The search engine<br><input type="radio" name="question3" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question3" value="google.com ">google.com<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>5.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question5" value="Firefox " required >Firefox<br><input type="radio" name="question5" value="Safari ">Safari<br><input type="radio" name="question5" value="Google Chrome ">Google Chrome<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>11<br><label>20.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question20" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question20" value="Address Bar ">Address Bar<br><input type="radio" name="question20" value="Search Bar ">Search Bar<br><input type="radio" name="question20" value="Favorites Bar ">Favorites Bar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.19
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>8<br><label>8.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="Control Panel " required >Control Panel<br><input type="radio" name="question8" value="Computer ">Computer<br><input type="radio" name="question8" value="Documents ">Documents<br><input type="radio" name="question8" value="Desktop ">Desktop<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>15<br><label>13.) Email is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question13" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question13" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question13" value="hotmail.com ">hotmail.com<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>18<br><label>20.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question20" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question20" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question20" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question20" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.18
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>3.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="GPU " required >GPU<br><input type="radio" name="question3" value="CPU ">CPU<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>14.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question14" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question14" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question14" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question14" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>18.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Icons " required >Icons<br><input type="radio" name="question18" value="Folders ">Folders<br><input type="radio" name="question18" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question18" value="File Type ">File Type<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.17
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>16<br><label>16.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question16" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question16" value="Updating software ">Updating software<br><input type="radio" name="question16" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>18.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question18" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question18" value="Address Bar ">Address Bar<br><input type="radio" name="question18" value="Search Bar ">Search Bar<br><input type="radio" name="question18" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>19.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question19" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question19" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.16
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>4<br><label>14.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="GPU " required >GPU<br><input type="radio" name="question14" value="CPU ">CPU<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>16.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question16" value="The message itself " required >The message itself<br><input type="radio" name="question16" value="The "From" line ">The "From" line<br><input type="radio" name="question16" value="The Search Bar ">The Search Bar<br><input type="radio" name="question16" value="The "To" line ">The "To" line<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>18.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question18" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question18" value="Updating software ">Updating software<br><input type="radio" name="question18" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.15
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>2.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="Control Panel " required >Control Panel<br><input type="radio" name="question2" value="Computer ">Computer<br><input type="radio" name="question2" value="Documents ">Documents<br><input type="radio" name="question2" value="Desktop ">Desktop<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>11.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="GPU " required >GPU<br><input type="radio" name="question11" value="CPU ">CPU<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>9<br><label>16.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question16" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question16" value="An operating system ">An operating system<br><input type="radio" name="question16" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>18.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Icons " required >Icons<br><input type="radio" name="question18" value="Folders ">Folders<br><input type="radio" name="question18" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question18" value="File Type ">File Type<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>20.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question20" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question20" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question20" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question20" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.14
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>5.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question5" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question5" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question5" value="The Start button ">The Start button<br><input type="radio" name="question5" value="A type of file ">A type of file<br></p>8<br><label>6.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="Control Panel " required >Control Panel<br><input type="radio" name="question6" value="Computer ">Computer<br><input type="radio" name="question6" value="Documents ">Documents<br><input type="radio" name="question6" value="Desktop ">Desktop<br></p>10<br><label>7.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question7" value="Firefox " required >Firefox<br><input type="radio" name="question7" value="Safari ">Safari<br><input type="radio" name="question7" value="Google Chrome ">Google Chrome<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>13.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Icons " required >Icons<br><input type="radio" name="question13" value="Folders ">Folders<br><input type="radio" name="question13" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question13" value="File Type ">File Type<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>16.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question16" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question16" value="An operating system ">An operating system<br><input type="radio" name="question16" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>1<br><label>18.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question18" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question18" value="Word ">Word<br><input type="radio" name="question18" value="Explorer ">Explorer<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>20.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="GPU " required >GPU<br><input type="radio" name="question20" value="CPU ">CPU<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.13
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>1<br><label>14.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question14" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question14" value="Word ">Word<br><input type="radio" name="question14" value="Explorer ">Explorer<br></p>0<br><label>15.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question15" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question15" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question15" value="A web browser ">A web browser<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.12
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>2.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question2" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question2" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>7.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question7" value="The home page " required >The home page<br><input type="radio" name="question7" value="The search engine ">The search engine<br><input type="radio" name="question7" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question7" value="google.com ">google.com<br></p>19<br><label>8.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question8" value="The message itself " required >The message itself<br><input type="radio" name="question8" value="The "From" line ">The "From" line<br><input type="radio" name="question8" value="The Search Bar ">The Search Bar<br><input type="radio" name="question8" value="The "To" line ">The "To" line<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>14.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question14" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question14" value="Word ">Word<br><input type="radio" name="question14" value="Explorer ">Explorer<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.11
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>12<br><label>6.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question6" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question6" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question6" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>12.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question12" value="Keyboard " required >Keyboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br><input type="radio" name="question12" value="Printer ">Printer<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>16.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question16" value="The message itself " required >The message itself<br><input type="radio" name="question16" value="The "From" line ">The "From" line<br><input type="radio" name="question16" value="The Search Bar ">The Search Bar<br><input type="radio" name="question16" value="The "To" line ">The "To" line<br></p>10<br><label>17.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question17" value="Firefox " required >Firefox<br><input type="radio" name="question17" value="Safari ">Safari<br><input type="radio" name="question17" value="Google Chrome ">Google Chrome<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>17<br><label>20.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question20" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question20" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question20" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question20" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.10
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>17<br><label>12.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question12" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question12" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question12" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question12" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.9
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">3<br><label>1.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question1" value="Keyboard " required >Keyboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br><input type="radio" name="question1" value="Printer ">Printer<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>10<br><label>5.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question5" value="Firefox " required >Firefox<br><input type="radio" name="question5" value="Safari ">Safari<br><input type="radio" name="question5" value="Google Chrome ">Google Chrome<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>8<br><label>9.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="Control Panel " required >Control Panel<br><input type="radio" name="question9" value="Computer ">Computer<br><input type="radio" name="question9" value="Documents ">Documents<br><input type="radio" name="question9" value="Desktop ">Desktop<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>17<br><label>11.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question11" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question11" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question11" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question11" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.8
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>3.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question3" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question3" value="Updating software ">Updating software<br><input type="radio" name="question3" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>11.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question11" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question11" value="Address Bar ">Address Bar<br><input type="radio" name="question11" value="Search Bar ">Search Bar<br><input type="radio" name="question11" value="Favorites Bar ">Favorites Bar<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>12.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question12" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question12" value="Word ">Word<br><input type="radio" name="question12" value="Explorer ">Explorer<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>15.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question15" value="The home page " required >The home page<br><input type="radio" name="question15" value="The search engine ">The search engine<br><input type="radio" name="question15" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question15" value="google.com ">google.com<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>6<br><label>18.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Icons " required >Icons<br><input type="radio" name="question18" value="Folders ">Folders<br><input type="radio" name="question18" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question18" value="File Type ">File Type<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>14<br><label>4.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question4" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question4" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question4" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question4" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>16<br><label>9.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question9" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question9" value="Updating software ">Updating software<br><input type="radio" name="question9" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>13.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question13" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question13" value="Address Bar ">Address Bar<br><input type="radio" name="question13" value="Search Bar ">Search Bar<br><input type="radio" name="question13" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>19<br><label>7.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question7" value="The message itself " required >The message itself<br><input type="radio" name="question7" value="The "From" line ">The "From" line<br><input type="radio" name="question7" value="The Search Bar ">The Search Bar<br><input type="radio" name="question7" value="The "To" line ">The "To" line<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>10<br><label>12.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question12" value="Firefox " required >Firefox<br><input type="radio" name="question12" value="Safari ">Safari<br><input type="radio" name="question12" value="Google Chrome ">Google Chrome<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>18<br><label>17.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question17" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question17" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question17" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question17" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>20.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="Control Panel " required >Control Panel<br><input type="radio" name="question20" value="Computer ">Computer<br><input type="radio" name="question20" value="Documents ">Documents<br><input type="radio" name="question20" value="Desktop ">Desktop<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>10.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question10" value="Icons " required >Icons<br><input type="radio" name="question10" value="Folders ">Folders<br><input type="radio" name="question10" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question10" value="File Type ">File Type<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>16.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question16" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question16" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question16" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question16" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>4<br><label>2.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="GPU " required >GPU<br><input type="radio" name="question2" value="CPU ">CPU<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>17<br><label>12.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question12" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question12" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question12" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question12" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>18<br><label>17.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question17" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question17" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question17" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question17" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>12<br><label>19.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question19" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question19" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question19" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.3.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">12<br><label>1.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question1" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question1" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question1" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>3<br><label>4.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question4" value="Keyboard " required >Keyboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br><input type="radio" name="question4" value="Printer ">Printer<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>11<br><label>8.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question8" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question8" value="Address Bar ">Address Bar<br><input type="radio" name="question8" value="Search Bar ">Search Bar<br><input type="radio" name="question8" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>19<br><label>15.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question15" value="The message itself " required >The message itself<br><input type="radio" name="question15" value="The "From" line ">The "From" line<br><input type="radio" name="question15" value="The Search Bar ">The Search Bar<br><input type="radio" name="question15" value="The "To" line ">The "To" line<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.17
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>16.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question16" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question16" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question16" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>17.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question17" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question17" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question17" value="The Start button ">The Start button<br><input type="radio" name="question17" value="A type of file ">A type of file<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>1<br><label>19.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question19" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question19" value="Word ">Word<br><input type="radio" name="question19" value="Explorer ">Explorer<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.16
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>7.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question7" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question7" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question7" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question7" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>12<br><label>9.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question9" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question9" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question9" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>10.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="GPU " required >GPU<br><input type="radio" name="question10" value="CPU ">CPU<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.15
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>15<br><label>7.) Email is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question7" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question7" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question7" value="hotmail.com ">hotmail.com<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.14
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>15.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question15" value="Firefox " required >Firefox<br><input type="radio" name="question15" value="Safari ">Safari<br><input type="radio" name="question15" value="Google Chrome ">Google Chrome<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>3<br><label>19.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question19" value="Keyboard " required >Keyboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br><input type="radio" name="question19" value="Printer ">Printer<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br></p>18<br><label>20.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question20" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question20" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question20" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question20" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.13
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>2.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question2" value="The home page " required >The home page<br><input type="radio" name="question2" value="The search engine ">The search engine<br><input type="radio" name="question2" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question2" value="google.com ">google.com<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>9<br><label>7.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question7" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question7" value="An operating system ">An operating system<br><input type="radio" name="question7" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>14.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question14" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question14" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question14" value="Word ">Word<br><input type="radio" name="question14" value="Explorer ">Explorer<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>6<br><label>17.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Icons " required >Icons<br><input type="radio" name="question17" value="Folders ">Folders<br><input type="radio" name="question17" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question17" value="File Type ">File Type<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>14<br><label>19.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question19" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question19" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question19" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question19" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.12
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>2.) Email is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question2" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question2" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question2" value="hotmail.com ">hotmail.com<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>4.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question4" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question4" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>19<br><label>5.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question5" value="The message itself " required >The message itself<br><input type="radio" name="question5" value="The "From" line ">The "From" line<br><input type="radio" name="question5" value="The Search Bar ">The Search Bar<br><input type="radio" name="question5" value="The "To" line ">The "To" line<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>11<br><label>11.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question11" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question11" value="Address Bar ">Address Bar<br><input type="radio" name="question11" value="Search Bar ">Search Bar<br><input type="radio" name="question11" value="Favorites Bar ">Favorites Bar<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>13<br><label>14.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question14" value="The home page " required >The home page<br><input type="radio" name="question14" value="The search engine ">The search engine<br><input type="radio" name="question14" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question14" value="google.com ">google.com<br></p>2<br><label>15.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question15" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question15" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question15" value="The Start button ">The Start button<br><input type="radio" name="question15" value="A type of file ">A type of file<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>14<br><label>17.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question17" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question17" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question17" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question17" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.11
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>11<br><label>2.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question2" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question2" value="Address Bar ">Address Bar<br><input type="radio" name="question2" value="Search Bar ">Search Bar<br><input type="radio" name="question2" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>4<br><label>8.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="GPU " required >GPU<br><input type="radio" name="question8" value="CPU ">CPU<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>12<br><label>18.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question18" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question18" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question18" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.10
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>2<br><label>6.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question6" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question6" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question6" value="The Start button ">The Start button<br><input type="radio" name="question6" value="A type of file ">A type of file<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.9
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">19<br><label>1.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question1" value="The message itself " required >The message itself<br><input type="radio" name="question1" value="The "From" line ">The "From" line<br><input type="radio" name="question1" value="The Search Bar ">The Search Bar<br><input type="radio" name="question1" value="The "To" line ">The "To" line<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>7<br><label>3.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Shortcut " required >Shortcut<br><input type="radio" name="question3" value="System Tray ">System Tray<br><input type="radio" name="question3" value="Program ">Program<br><input type="radio" name="question3" value="Taskbar ">Taskbar<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>2<br><label>5.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question5" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question5" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question5" value="The Start button ">The Start button<br><input type="radio" name="question5" value="A type of file ">A type of file<br></p>14<br><label>6.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question6" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question6" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question6" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question6" value="Click the refresh button ">Click the refresh button<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>0<br><label>8.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question8" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question8" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question8" value="A web browser ">A web browser<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>11.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question11" value="Keyboard " required >Keyboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br><input type="radio" name="question11" value="Printer ">Printer<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>4<br><label>13.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="GPU " required >GPU<br><input type="radio" name="question13" value="CPU ">CPU<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>16.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question16" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question16" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question16" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.8
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>8<br><label>2.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="Control Panel " required >Control Panel<br><input type="radio" name="question2" value="Computer ">Computer<br><input type="radio" name="question2" value="Documents ">Documents<br><input type="radio" name="question2" value="Desktop ">Desktop<br></p>4<br><label>3.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="GPU " required >GPU<br><input type="radio" name="question3" value="CPU ">CPU<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br></p>17<br><label>4.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question4" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question4" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question4" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question4" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>5.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question5" value="The message itself " required >The message itself<br><input type="radio" name="question5" value="The "From" line ">The "From" line<br><input type="radio" name="question5" value="The Search Bar ">The Search Bar<br><input type="radio" name="question5" value="The "To" line ">The "To" line<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>5<br><label>9.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question9" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question9" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>6<br><label>12.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Icons " required >Icons<br><input type="radio" name="question12" value="Folders ">Folders<br><input type="radio" name="question12" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question12" value="File Type ">File Type<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>19<br><label>7.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question7" value="The message itself " required >The message itself<br><input type="radio" name="question7" value="The "From" line ">The "From" line<br><input type="radio" name="question7" value="The Search Bar ">The Search Bar<br><input type="radio" name="question7" value="The "To" line ">The "To" line<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>14.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question14" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question14" value="Updating software ">Updating software<br><input type="radio" name="question14" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>14<br><label>18.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question18" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question18" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question18" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question18" value="Click the refresh button ">Click the refresh button<br></p>2<br><label>19.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question19" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question19" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question19" value="The Start button ">The Start button<br><input type="radio" name="question19" value="A type of file ">A type of file<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>2.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question2" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question2" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question2" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question2" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>16.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="GPU " required >GPU<br><input type="radio" name="question16" value="CPU ">CPU<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">4<br><label>1.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="GPU " required >GPU<br><input type="radio" name="question1" value="CPU ">CPU<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>16<br><label>3.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question3" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question3" value="Updating software ">Updating software<br><input type="radio" name="question3" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>12.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question12" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question12" value="Word ">Word<br><input type="radio" name="question12" value="Explorer ">Explorer<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>13<br><label>15.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question15" value="The home page " required >The home page<br><input type="radio" name="question15" value="The search engine ">The search engine<br><input type="radio" name="question15" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question15" value="google.com ">google.com<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>0<br><label>18.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question18" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question18" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question18" value="A web browser ">A web browser<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>5<br><label>2.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question2" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question2" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>13<br><label>15.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question15" value="The home page " required >The home page<br><input type="radio" name="question15" value="The search engine ">The search engine<br><input type="radio" name="question15" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question15" value="google.com ">google.com<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>9<br><label>17.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question17" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question17" value="An operating system ">An operating system<br><input type="radio" name="question17" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>2<br><label>5.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question5" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question5" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question5" value="The Start button ">The Start button<br><input type="radio" name="question5" value="A type of file ">A type of file<br></p>15<br><label>6.) Email is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question6" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question6" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question6" value="hotmail.com ">hotmail.com<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>5<br><label>11.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question11" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question11" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>16.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question16" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question16" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question16" value="A web browser ">A web browser<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">17<br><label>1.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question1" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question1" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question1" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question1" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>6.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question6" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question6" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question6" value="The Start button ">The Start button<br><input type="radio" name="question6" value="A type of file ">A type of file<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>13<br><label>9.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question9" value="The home page " required >The home page<br><input type="radio" name="question9" value="The search engine ">The search engine<br><input type="radio" name="question9" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question9" value="google.com ">google.com<br></p>1<br><label>10.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question10" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question10" value="Word ">Word<br><input type="radio" name="question10" value="Explorer ">Explorer<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>5<br><label>12.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question12" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question12" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>3.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question3" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question3" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>6.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question6" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question6" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question6" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question6" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>0<br><label>13.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question13" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question13" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question13" value="A web browser ">A web browser<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>11<br><label>15.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question15" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question15" value="Address Bar ">Address Bar<br><input type="radio" name="question15" value="Search Bar ">Search Bar<br><input type="radio" name="question15" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>2<br><label>17.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question17" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question17" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question17" value="The Start button ">The Start button<br><input type="radio" name="question17" value="A type of file ">A type of file<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.2.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">8<br><label>1.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="Control Panel " required >Control Panel<br><input type="radio" name="question1" value="Computer ">Computer<br><input type="radio" name="question1" value="Documents ">Documents<br><input type="radio" name="question1" value="Desktop ">Desktop<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>13<br><label>4.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question4" value="The home page " required >The home page<br><input type="radio" name="question4" value="The search engine ">The search engine<br><input type="radio" name="question4" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question4" value="google.com ">google.com<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>7.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Shortcut " required >Shortcut<br><input type="radio" name="question7" value="System Tray ">System Tray<br><input type="radio" name="question7" value="Program ">Program<br><input type="radio" name="question7" value="Taskbar ">Taskbar<br></p>14<br><label>8.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question8" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question8" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question8" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question8" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>19<br><label>12.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question12" value="The message itself " required >The message itself<br><input type="radio" name="question12" value="The "From" line ">The "From" line<br><input type="radio" name="question12" value="The Search Bar ">The Search Bar<br><input type="radio" name="question12" value="The "To" line ">The "To" line<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>14.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="GPU " required >GPU<br><input type="radio" name="question14" value="CPU ">CPU<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>12<br><label>16.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question16" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question16" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question16" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>17<br><label>20.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question20" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question20" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question20" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question20" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.1.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>9<br><label>9.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question9" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question9" value="An operating system ">An operating system<br><input type="radio" name="question9" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>11<br><label>14.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question14" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question14" value="Address Bar ">Address Bar<br><input type="radio" name="question14" value="Search Bar ">Search Bar<br><input type="radio" name="question14" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>15.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question15" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question15" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question15" value="A web browser ">A web browser<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.1.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">5<br><label>1.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question1" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question1" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>16<br><label>7.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question7" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question7" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question7" value="Updating software ">Updating software<br><input type="radio" name="question7" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>10.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question10" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question10" value="Word ">Word<br><input type="radio" name="question10" value="Explorer ">Explorer<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>4<br><label>12.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="GPU " required >GPU<br><input type="radio" name="question12" value="CPU ">CPU<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>0<br><label>14.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question14" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question14" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question14" value="A web browser ">A web browser<br></p>8<br><label>15.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="Control Panel " required >Control Panel<br><input type="radio" name="question15" value="Computer ">Computer<br><input type="radio" name="question15" value="Documents ">Documents<br><input type="radio" name="question15" value="Desktop ">Desktop<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.1.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>19<br><label>4.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question4" value="The message itself " required >The message itself<br><input type="radio" name="question4" value="The "From" line ">The "From" line<br><input type="radio" name="question4" value="The Search Bar ">The Search Bar<br><input type="radio" name="question4" value="The "To" line ">The "To" line<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>6.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question6" value="Firefox " required >Firefox<br><input type="radio" name="question6" value="Safari ">Safari<br><input type="radio" name="question6" value="Google Chrome ">Google Chrome<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>2<br><label>9.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question9" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question9" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question9" value="The Start button ">The Start button<br><input type="radio" name="question9" value="A type of file ">A type of file<br></p>14<br><label>10.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question10" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question10" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question10" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question10" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>11.) Email is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question11" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question11" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question11" value="hotmail.com ">hotmail.com<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>8<br><label>13.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="Control Panel " required >Control Panel<br><input type="radio" name="question13" value="Computer ">Computer<br><input type="radio" name="question13" value="Documents ">Documents<br><input type="radio" name="question13" value="Desktop ">Desktop<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>16<br><label>17.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question17" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question17" value="Updating software ">Updating software<br><input type="radio" name="question17" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.1.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>11<br><label>5.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question5" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question5" value="Address Bar ">Address Bar<br><input type="radio" name="question5" value="Search Bar ">Search Bar<br><input type="radio" name="question5" value="Favorites Bar ">Favorites Bar<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>8<br><label>7.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="Control Panel " required >Control Panel<br><input type="radio" name="question7" value="Computer ">Computer<br><input type="radio" name="question7" value="Documents ">Documents<br><input type="radio" name="question7" value="Desktop ">Desktop<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>15<br><label>10.) Email is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question10" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question10" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question10" value="hotmail.com ">hotmail.com<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>2<br><label>13.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question13" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question13" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question13" value="The Start button ">The Start button<br><input type="radio" name="question13" value="A type of file ">A type of file<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>16.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question16" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question16" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question16" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>0<br><label>19.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question19" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question19" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question19" value="A web browser ">A web browser<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.1.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">5<br><label>1.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question1" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question1" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>9<br><label>7.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question7" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question7" value="An operating system ">An operating system<br><input type="radio" name="question7" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>15<br><label>15.) Email is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question15" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question15" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question15" value="hotmail.com ">hotmail.com<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>17.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question17" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question17" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question17" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question17" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.1.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>8<br><label>4.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="Control Panel " required >Control Panel<br><input type="radio" name="question4" value="Computer ">Computer<br><input type="radio" name="question4" value="Documents ">Documents<br><input type="radio" name="question4" value="Desktop ">Desktop<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>9<br><label>6.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question6" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question6" value="An operating system ">An operating system<br><input type="radio" name="question6" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>8.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question8" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question8" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question8" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question8" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>18<br><label>11.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question11" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question11" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question11" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question11" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>13<br><label>12.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question12" value="The home page " required >The home page<br><input type="radio" name="question12" value="The search engine ">The search engine<br><input type="radio" name="question12" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question12" value="google.com ">google.com<br></p>5<br><label>13.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question13" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question13" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>15.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question15" value="Keyboard " required >Keyboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br><input type="radio" name="question15" value="Printer ">Printer<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>10<br><label>17.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question17" value="Firefox " required >Firefox<br><input type="radio" name="question17" value="Safari ">Safari<br><input type="radio" name="question17" value="Google Chrome ">Google Chrome<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>16<br><label>19.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question19" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question19" value="Updating software ">Updating software<br><input type="radio" name="question19" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.1.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>3.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question3" value="Icons " required >Icons<br><input type="radio" name="question3" value="Folders ">Folders<br><input type="radio" name="question3" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question3" value="File Type ">File Type<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>11<br><label>6.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question6" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question6" value="Address Bar ">Address Bar<br><input type="radio" name="question6" value="Search Bar ">Search Bar<br><input type="radio" name="question6" value="Favorites Bar ">Favorites Bar<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>10<br><label>12.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question12" value="Firefox " required >Firefox<br><input type="radio" name="question12" value="Safari ">Safari<br><input type="radio" name="question12" value="Google Chrome ">Google Chrome<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>8<br><label>16.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question16" value="Control Panel " required >Control Panel<br><input type="radio" name="question16" value="Computer ">Computer<br><input type="radio" name="question16" value="Documents ">Documents<br><input type="radio" name="question16" value="Desktop ">Desktop<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>20.) Email is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question20" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question20" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question20" value="hotmail.com ">hotmail.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.0.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>2<br><label>3.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question3" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question3" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question3" value="The Start button ">The Start button<br><input type="radio" name="question3" value="A type of file ">A type of file<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>6.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question6" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question6" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question6" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question6" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>12<br><label>9.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question9" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question9" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question9" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>17<br><label>12.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question12" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question12" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question12" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question12" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>4<br><label>13.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="GPU " required >GPU<br><input type="radio" name="question13" value="CPU ">CPU<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>1<br><label>16.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question16" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question16" value="Word ">Word<br><input type="radio" name="question16" value="Explorer ">Explorer<br></p>8<br><label>17.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="Control Panel " required >Control Panel<br><input type="radio" name="question17" value="Computer ">Computer<br><input type="radio" name="question17" value="Documents ">Documents<br><input type="radio" name="question17" value="Desktop ">Desktop<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>3<br><label>19.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question19" value="Keyboard " required >Keyboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br><input type="radio" name="question19" value="Printer ">Printer<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.0.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">2<br><label>1.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question1" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question1" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question1" value="The Start button ">The Start button<br><input type="radio" name="question1" value="A type of file ">A type of file<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>1<br><label>6.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question6" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question6" value="Word ">Word<br><input type="radio" name="question6" value="Explorer ">Explorer<br></p>14<br><label>7.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question7" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question7" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question7" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question7" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>13.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Icons " required >Icons<br><input type="radio" name="question13" value="Folders ">Folders<br><input type="radio" name="question13" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question13" value="File Type ">File Type<br></p>3<br><label>14.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question14" value="Keyboard " required >Keyboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br><input type="radio" name="question14" value="Printer ">Printer<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>13<br><label>18.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question18" value="The home page " required >The home page<br><input type="radio" name="question18" value="The search engine ">The search engine<br><input type="radio" name="question18" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question18" value="google.com ">google.com<br></p>18<br><label>19.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question19" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question19" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question19" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question19" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.0.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>10<br><label>6.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question6" value="Firefox " required >Firefox<br><input type="radio" name="question6" value="Safari ">Safari<br><input type="radio" name="question6" value="Google Chrome ">Google Chrome<br><input type="radio" name="question6" value="Internet Explorer ">Internet Explorer<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>0<br><label>9.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question9" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question9" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question9" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question9" value="A web browser ">A web browser<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>15<br><label>15.) Email is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question15" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question15" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question15" value="hotmail.com ">hotmail.com<br></p>3<br><label>16.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question16" value="Keyboard " required >Keyboard<br><input type="radio" name="question16" value="Monitor ">Monitor<br><input type="radio" name="question16" value="Printer ">Printer<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br></p>5<br><label>17.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question17" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question17" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>19<br><label>19.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question19" value="The message itself " required >The message itself<br><input type="radio" name="question19" value="The "From" line ">The "From" line<br><input type="radio" name="question19" value="The Search Bar ">The Search Bar<br><input type="radio" name="question19" value="The "To" line ">The "To" line<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.0.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>14<br><label>3.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question3" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question3" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question3" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question3" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>6.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="Control Panel " required >Control Panel<br><input type="radio" name="question6" value="Computer ">Computer<br><input type="radio" name="question6" value="Documents ">Documents<br><input type="radio" name="question6" value="Desktop ">Desktop<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>8.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question8" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question8" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question8" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>19<br><label>10.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question10" value="The message itself " required >The message itself<br><input type="radio" name="question10" value="The "From" line ">The "From" line<br><input type="radio" name="question10" value="The Search Bar ">The Search Bar<br><input type="radio" name="question10" value="The "To" line ">The "To" line<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>4<br><label>14.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="GPU " required >GPU<br><input type="radio" name="question14" value="CPU ">CPU<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="Monitor ">Monitor<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>18<br><label>16.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question16" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question16" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question16" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question16" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.0.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>2.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question2" value="The message itself " required >The message itself<br><input type="radio" name="question2" value="The "From" line ">The "From" line<br><input type="radio" name="question2" value="The Search Bar ">The Search Bar<br><input type="radio" name="question2" value="The "To" line ">The "To" line<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>13<br><label>6.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question6" value="The home page " required >The home page<br><input type="radio" name="question6" value="The search engine ">The search engine<br><input type="radio" name="question6" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question6" value="google.com ">google.com<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>14<br><label>11.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question11" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question11" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question11" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question11" value="Click the refresh button ">Click the refresh button<br></p>2<br><label>12.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question12" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question12" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question12" value="The Start button ">The Start button<br><input type="radio" name="question12" value="A type of file ">A type of file<br></p>15<br><label>13.) Email is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question13" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question13" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question13" value="hotmail.com ">hotmail.com<br></p>18<br><label>14.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question14" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question14" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question14" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question14" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>19.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Shortcut " required >Shortcut<br><input type="radio" name="question19" value="System Tray ">System Tray<br><input type="radio" name="question19" value="Program ">Program<br><input type="radio" name="question19" value="Taskbar ">Taskbar<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 5.0.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>16<br><label>4.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question4" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question4" value="Updating software ">Updating software<br><input type="radio" name="question4" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>5.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="GPU " required >GPU<br><input type="radio" name="question5" value="CPU ">CPU<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>18<br><label>7.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question7" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question7" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question7" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question7" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>13.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question13" value="Keyboard " required >Keyboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br><input type="radio" name="question13" value="Printer ">Printer<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>7<br><label>16.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Shortcut " required >Shortcut<br><input type="radio" name="question16" value="System Tray ">System Tray<br><input type="radio" name="question16" value="Program ">Program<br><input type="radio" name="question16" value="Taskbar ">Taskbar<br></p>11<br><label>17.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question17" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question17" value="Address Bar ">Address Bar<br><input type="radio" name="question17" value="Search Bar ">Search Bar<br><input type="radio" name="question17" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>18.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question18" value="Firefox " required >Firefox<br><input type="radio" name="question18" value="Safari ">Safari<br><input type="radio" name="question18" value="Google Chrome ">Google Chrome<br><input type="radio" name="question18" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>0<br><label>20.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question20" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question20" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question20" value="A web browser ">A web browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.9
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">11<br><label>1.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question1" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question1" value="Address Bar ">Address Bar<br><input type="radio" name="question1" value="Search Bar ">Search Bar<br><input type="radio" name="question1" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>2.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question2" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question2" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question2" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>15<br><label>4.) Email is?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question4" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question4" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question4" value="hotmail.com ">hotmail.com<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>17<br><label>7.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question7" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question7" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question7" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question7" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>10.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question10" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br><input type="radio" name="question10" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question10" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>0<br><label>11.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question11" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question11" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question11" value="A web browser ">A web browser<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>19<br><label>18.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question18" value="The message itself " required >The message itself<br><input type="radio" name="question18" value="The "From" line ">The "From" line<br><input type="radio" name="question18" value="The Search Bar ">The Search Bar<br><input type="radio" name="question18" value="The "To" line ">The "To" line<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>10<br><label>20.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question20" value="Firefox " required >Firefox<br><input type="radio" name="question20" value="Safari ">Safari<br><input type="radio" name="question20" value="Google Chrome ">Google Chrome<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.8
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>8<br><label>2.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question2" value="Control Panel " required >Control Panel<br><input type="radio" name="question2" value="Computer ">Computer<br><input type="radio" name="question2" value="Documents ">Documents<br><input type="radio" name="question2" value="Desktop ">Desktop<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>12<br><label>5.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question5" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question5" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question5" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question5" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>7.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question7" value="Icons " required >Icons<br><input type="radio" name="question7" value="Folders ">Folders<br><input type="radio" name="question7" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question7" value="File Type ">File Type<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>4<br><label>11.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="GPU " required >GPU<br><input type="radio" name="question11" value="CPU ">CPU<br><input type="radio" name="question11" value="Motherboard ">Motherboard<br><input type="radio" name="question11" value="Monitor ">Monitor<br></p>11<br><label>12.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question12" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question12" value="Address Bar ">Address Bar<br><input type="radio" name="question12" value="Search Bar ">Search Bar<br><input type="radio" name="question12" value="Favorites Bar ">Favorites Bar<br></p>19<br><label>13.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question13" value="The message itself " required >The message itself<br><input type="radio" name="question13" value="The "From" line ">The "From" line<br><input type="radio" name="question13" value="The Search Bar ">The Search Bar<br><input type="radio" name="question13" value="The "To" line ">The "To" line<br></p>9<br><label>14.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question14" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question14" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question14" value="An operating system ">An operating system<br><input type="radio" name="question14" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>15.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question15" value="Firefox " required >Firefox<br><input type="radio" name="question15" value="Safari ">Safari<br><input type="radio" name="question15" value="Google Chrome ">Google Chrome<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>17.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question17" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question17" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question17" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question17" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">19<br><label>1.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question1" value="The message itself " required >The message itself<br><input type="radio" name="question1" value="The "From" line ">The "From" line<br><input type="radio" name="question1" value="The Search Bar ">The Search Bar<br><input type="radio" name="question1" value="The "To" line ">The "To" line<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>3.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question3" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question3" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question3" value="A web browser ">A web browser<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>8.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question8" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br><input type="radio" name="question8" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question8" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>12<br><label>10.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question10" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question10" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question10" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>11.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question11" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question11" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question11" value="An operating system ">An operating system<br><input type="radio" name="question11" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>12.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question12" value="Shortcut " required >Shortcut<br><input type="radio" name="question12" value="System Tray ">System Tray<br><input type="radio" name="question12" value="Program ">Program<br><input type="radio" name="question12" value="Taskbar ">Taskbar<br></p>17<br><label>13.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question13" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question13" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question13" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question13" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>14.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question14" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question14" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question14" value="The Start button ">The Start button<br><input type="radio" name="question14" value="A type of file ">A type of file<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>3<br><label>19.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question19" value="Keyboard " required >Keyboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br><input type="radio" name="question19" value="Printer ">Printer<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br></p>6<br><label>20.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Icons " required >Icons<br><input type="radio" name="question20" value="Folders ">Folders<br><input type="radio" name="question20" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question20" value="File Type ">File Type<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">4<br><label>1.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question1" value="GPU " required >GPU<br><input type="radio" name="question1" value="CPU ">CPU<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="Monitor ">Monitor<br></p>7<br><label>2.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Shortcut " required >Shortcut<br><input type="radio" name="question2" value="System Tray ">System Tray<br><input type="radio" name="question2" value="Program ">Program<br><input type="radio" name="question2" value="Taskbar ">Taskbar<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>12<br><label>4.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question4" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question4" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question4" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question4" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>9<br><label>7.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question7" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question7" value="An operating system ">An operating system<br><input type="radio" name="question7" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>8.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question8" value="Keyboard " required >Keyboard<br><input type="radio" name="question8" value="Monitor ">Monitor<br><input type="radio" name="question8" value="Printer ">Printer<br><input type="radio" name="question8" value="Motherboard ">Motherboard<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>8<br><label>10.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question10" value="Control Panel " required >Control Panel<br><input type="radio" name="question10" value="Computer ">Computer<br><input type="radio" name="question10" value="Documents ">Documents<br><input type="radio" name="question10" value="Desktop ">Desktop<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>14<br><label>13.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question13" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question13" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question13" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question13" value="Click the refresh button ">Click the refresh button<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>13<br><label>15.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question15" value="The home page " required >The home page<br><input type="radio" name="question15" value="The search engine ">The search engine<br><input type="radio" name="question15" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question15" value="google.com ">google.com<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>19<br><label>17.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question17" value="The message itself " required >The message itself<br><input type="radio" name="question17" value="The "From" line ">The "From" line<br><input type="radio" name="question17" value="The Search Bar ">The Search Bar<br><input type="radio" name="question17" value="The "To" line ">The "To" line<br></p>17<br><label>18.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question18" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question18" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question18" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question18" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>19.) Email is?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question19" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question19" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question19" value="hotmail.com ">hotmail.com<br></p>16<br><label>20.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question20" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question20" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question20" value="Updating software ">Updating software<br><input type="radio" name="question20" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>3.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question3" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question3" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question3" value="An operating system ">An operating system<br><input type="radio" name="question3" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>1<br><label>7.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question7" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question7" value="Word ">Word<br><input type="radio" name="question7" value="Explorer ">Explorer<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>15<br><label>9.) Email is?</label><p style="text-align:left;"><input type="radio" name="question9" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question9" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question9" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question9" value="hotmail.com ">hotmail.com<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>18<br><label>12.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question12" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question12" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question12" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question12" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>5<br><label>15.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question15" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question15" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>6<br><label>16.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question16" value="Icons " required >Icons<br><input type="radio" name="question16" value="Folders ">Folders<br><input type="radio" name="question16" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question16" value="File Type ">File Type<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>16<br><label>18.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question18" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question18" value="Updating software ">Updating software<br><input type="radio" name="question18" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>19.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="Control Panel " required >Control Panel<br><input type="radio" name="question19" value="Computer ">Computer<br><input type="radio" name="question19" value="Documents ">Documents<br><input type="radio" name="question19" value="Desktop ">Desktop<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">6<br><label>1.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Icons " required >Icons<br><input type="radio" name="question1" value="Folders ">Folders<br><input type="radio" name="question1" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question1" value="File Type ">File Type<br></p>14<br><label>2.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question2" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question2" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question2" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question2" value="Click the refresh button ">Click the refresh button<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>1<br><label>4.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question4" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question4" value="Word ">Word<br><input type="radio" name="question4" value="Explorer ">Explorer<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>5<br><label>6.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question6" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question6" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>7<br><label>9.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Shortcut " required >Shortcut<br><input type="radio" name="question9" value="System Tray ">System Tray<br><input type="radio" name="question9" value="Program ">Program<br><input type="radio" name="question9" value="Taskbar ">Taskbar<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>16<br><label>13.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question13" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question13" value="Updating software ">Updating software<br><input type="radio" name="question13" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>14.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question14" value="The message itself " required >The message itself<br><input type="radio" name="question14" value="The "From" line ">The "From" line<br><input type="radio" name="question14" value="The Search Bar ">The Search Bar<br><input type="radio" name="question14" value="The "To" line ">The "To" line<br></p>12<br><label>15.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question15" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question15" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question15" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question15" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>11<br><label>18.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question18" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question18" value="Address Bar ">Address Bar<br><input type="radio" name="question18" value="Search Bar ">Search Bar<br><input type="radio" name="question18" value="Favorites Bar ">Favorites Bar<br></p>10<br><label>19.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question19" value="Firefox " required >Firefox<br><input type="radio" name="question19" value="Safari ">Safari<br><input type="radio" name="question19" value="Google Chrome ">Google Chrome<br><input type="radio" name="question19" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>20.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question20" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question20" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question20" value="An operating system ">An operating system<br><input type="radio" name="question20" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.3
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">7<br><label>1.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question1" value="Shortcut " required >Shortcut<br><input type="radio" name="question1" value="System Tray ">System Tray<br><input type="radio" name="question1" value="Program ">Program<br><input type="radio" name="question1" value="Taskbar ">Taskbar<br></p>11<br><label>2.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question2" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question2" value="Address Bar ">Address Bar<br><input type="radio" name="question2" value="Search Bar ">Search Bar<br><input type="radio" name="question2" value="Favorites Bar ">Favorites Bar<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>17<br><label>4.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question4" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question4" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question4" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question4" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>14<br><label>5.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question5" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question5" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question5" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question5" value="Click the refresh button ">Click the refresh button<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>5<br><label>7.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question7" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question7" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>8<br><label>8.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question8" value="Control Panel " required >Control Panel<br><input type="radio" name="question8" value="Computer ">Computer<br><input type="radio" name="question8" value="Documents ">Documents<br><input type="radio" name="question8" value="Desktop ">Desktop<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>18<br><label>14.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question14" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question14" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question14" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question14" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>6<br><label>15.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Icons " required >Icons<br><input type="radio" name="question15" value="Folders ">Folders<br><input type="radio" name="question15" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question15" value="File Type ">File Type<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>2<br><label>18.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question18" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question18" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question18" value="The Start button ">The Start button<br><input type="radio" name="question18" value="A type of file ">A type of file<br></p>9<br><label>19.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question19" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question19" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question19" value="An operating system ">An operating system<br><input type="radio" name="question19" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">0<br><label>1.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question1" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question1" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question1" value="A web browser ">A web browser<br></p>11<br><label>2.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question2" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question2" value="Address Bar ">Address Bar<br><input type="radio" name="question2" value="Search Bar ">Search Bar<br><input type="radio" name="question2" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>6<br><label>4.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Icons " required >Icons<br><input type="radio" name="question4" value="Folders ">Folders<br><input type="radio" name="question4" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question4" value="File Type ">File Type<br></p>1<br><label>5.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question5" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question5" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question5" value="Word ">Word<br><input type="radio" name="question5" value="Explorer ">Explorer<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>9<br><label>8.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question8" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question8" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question8" value="An operating system ">An operating system<br><input type="radio" name="question8" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>10<br><label>9.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question9" value="Firefox " required >Firefox<br><input type="radio" name="question9" value="Safari ">Safari<br><input type="radio" name="question9" value="Google Chrome ">Google Chrome<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br></p>13<br><label>10.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question10" value="The home page " required >The home page<br><input type="radio" name="question10" value="The search engine ">The search engine<br><input type="radio" name="question10" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question10" value="google.com ">google.com<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>15<br><label>12.) Email is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question12" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question12" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question12" value="hotmail.com ">hotmail.com<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>15.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question15" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question15" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question15" value="Updating software ">Updating software<br><input type="radio" name="question15" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">10<br><label>1.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question1" value="Firefox " required >Firefox<br><input type="radio" name="question1" value="Safari ">Safari<br><input type="radio" name="question1" value="Google Chrome ">Google Chrome<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br></p>0<br><label>2.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question2" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question2" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question2" value="A web browser ">A web browser<br></p>15<br><label>3.) Email is?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question3" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question3" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question3" value="hotmail.com ">hotmail.com<br></p>4<br><label>4.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question4" value="GPU " required >GPU<br><input type="radio" name="question4" value="CPU ">CPU<br><input type="radio" name="question4" value="Motherboard ">Motherboard<br><input type="radio" name="question4" value="Monitor ">Monitor<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>3<br><label>6.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question6" value="Keyboard " required >Keyboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br><input type="radio" name="question6" value="Printer ">Printer<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br></p>5<br><label>7.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question7" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question7" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>8.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question8" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question8" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question8" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question8" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>11<br><label>10.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question10" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question10" value="Address Bar ">Address Bar<br><input type="radio" name="question10" value="Search Bar ">Search Bar<br><input type="radio" name="question10" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>16<br><label>13.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question13" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question13" value="Updating software ">Updating software<br><input type="radio" name="question13" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>15.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question15" value="Shortcut " required >Shortcut<br><input type="radio" name="question15" value="System Tray ">System Tray<br><input type="radio" name="question15" value="Program ">Program<br><input type="radio" name="question15" value="Taskbar ">Taskbar<br></p>13<br><label>16.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question16" value="The home page " required >The home page<br><input type="radio" name="question16" value="The search engine ">The search engine<br><input type="radio" name="question16" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question16" value="google.com ">google.com<br></p>1<br><label>17.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question17" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question17" value="Word ">Word<br><input type="radio" name="question17" value="Explorer ">Explorer<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.4.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>5<br><label>2.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question2" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br><input type="radio" name="question2" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question2" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>18<br><label>5.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question5" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question5" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question5" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question5" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>9<br><label>10.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question10" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question10" value="An operating system ">An operating system<br><input type="radio" name="question10" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>11.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Shortcut " required >Shortcut<br><input type="radio" name="question11" value="System Tray ">System Tray<br><input type="radio" name="question11" value="Program ">Program<br><input type="radio" name="question11" value="Taskbar ">Taskbar<br></p>10<br><label>12.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question12" value="Firefox " required >Firefox<br><input type="radio" name="question12" value="Safari ">Safari<br><input type="radio" name="question12" value="Google Chrome ">Google Chrome<br><input type="radio" name="question12" value="Internet Explorer ">Internet Explorer<br></p>12<br><label>13.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question13" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question13" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question13" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>13<br><label>17.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question17" value="The home page " required >The home page<br><input type="radio" name="question17" value="The search engine ">The search engine<br><input type="radio" name="question17" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question17" value="google.com ">google.com<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>4<br><label>19.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question19" value="GPU " required >GPU<br><input type="radio" name="question19" value="CPU ">CPU<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="Monitor ">Monitor<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.11
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">5<br><label>1.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question1" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question1" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>12<br><label>2.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question2" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question2" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question2" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question2" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>3<br><label>3.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question3" value="Keyboard " required >Keyboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br><input type="radio" name="question3" value="Printer ">Printer<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br></p>2<br><label>4.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question4" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question4" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question4" value="The Start button ">The Start button<br><input type="radio" name="question4" value="A type of file ">A type of file<br></p>16<br><label>5.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question5" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question5" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question5" value="Updating software ">Updating software<br><input type="radio" name="question5" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>6.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question6" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question6" value="An operating system ">An operating system<br><input type="radio" name="question6" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>0<br><label>7.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question7" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question7" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question7" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question7" value="A web browser ">A web browser<br></p>6<br><label>8.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Icons " required >Icons<br><input type="radio" name="question8" value="Folders ">Folders<br><input type="radio" name="question8" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question8" value="File Type ">File Type<br></p>4<br><label>9.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question9" value="GPU " required >GPU<br><input type="radio" name="question9" value="CPU ">CPU<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br></p>10<br><label>10.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question10" value="Firefox " required >Firefox<br><input type="radio" name="question10" value="Safari ">Safari<br><input type="radio" name="question10" value="Google Chrome ">Google Chrome<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>11.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question11" value="The message itself " required >The message itself<br><input type="radio" name="question11" value="The "From" line ">The "From" line<br><input type="radio" name="question11" value="The Search Bar ">The Search Bar<br><input type="radio" name="question11" value="The "To" line ">The "To" line<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>1<br><label>13.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question13" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question13" value="Word ">Word<br><input type="radio" name="question13" value="Explorer ">Explorer<br></p>17<br><label>14.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question14" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question14" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question14" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question14" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>18<br><label>15.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question15" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question15" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question15" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question15" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>14<br><label>17.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question17" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question17" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question17" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question17" value="Click the refresh button ">Click the refresh button<br></p>7<br><label>18.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Shortcut " required >Shortcut<br><input type="radio" name="question18" value="System Tray ">System Tray<br><input type="radio" name="question18" value="Program ">Program<br><input type="radio" name="question18" value="Taskbar ">Taskbar<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.10
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">14<br><label>1.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question1" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question1" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question1" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question1" value="Click the refresh button ">Click the refresh button<br></p>16<br><label>2.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question2" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question2" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question2" value="Updating software ">Updating software<br><input type="radio" name="question2" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>4<br><label>3.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="GPU " required >GPU<br><input type="radio" name="question3" value="CPU ">CPU<br><input type="radio" name="question3" value="Motherboard ">Motherboard<br><input type="radio" name="question3" value="Monitor ">Monitor<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>2<br><label>7.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question7" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question7" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question7" value="The Start button ">The Start button<br><input type="radio" name="question7" value="A type of file ">A type of file<br></p>15<br><label>8.) Email is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question8" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question8" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question8" value="hotmail.com ">hotmail.com<br></p>18<br><label>9.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question9" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question9" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question9" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question9" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>10.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question10" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question10" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question10" value="Word ">Word<br><input type="radio" name="question10" value="Explorer ">Explorer<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>9<br><label>12.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question12" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question12" value="An operating system ">An operating system<br><input type="radio" name="question12" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>13.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question13" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question13" value="Address Bar ">Address Bar<br><input type="radio" name="question13" value="Search Bar ">Search Bar<br><input type="radio" name="question13" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>13<br><label>15.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question15" value="The home page " required >The home page<br><input type="radio" name="question15" value="The search engine ">The search engine<br><input type="radio" name="question15" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question15" value="google.com ">google.com<br></p>10<br><label>16.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question16" value="Firefox " required >Firefox<br><input type="radio" name="question16" value="Safari ">Safari<br><input type="radio" name="question16" value="Google Chrome ">Google Chrome<br><input type="radio" name="question16" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>17.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question17" value="Shortcut " required >Shortcut<br><input type="radio" name="question17" value="System Tray ">System Tray<br><input type="radio" name="question17" value="Program ">Program<br><input type="radio" name="question17" value="Taskbar ">Taskbar<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>17<br><label>19.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question19" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question19" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question19" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question19" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>3<br><label>20.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question20" value="Keyboard " required >Keyboard<br><input type="radio" name="question20" value="Monitor ">Monitor<br><input type="radio" name="question20" value="Printer ">Printer<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.9
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">13<br><label>1.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question1" value="The home page " required >The home page<br><input type="radio" name="question1" value="The search engine ">The search engine<br><input type="radio" name="question1" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question1" value="google.com ">google.com<br></p>2<br><label>2.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question2" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question2" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question2" value="The Start button ">The Start button<br><input type="radio" name="question2" value="A type of file ">A type of file<br></p>12<br><label>3.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question3" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question3" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question3" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question3" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>4.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question4" value="Shortcut " required >Shortcut<br><input type="radio" name="question4" value="System Tray ">System Tray<br><input type="radio" name="question4" value="Program ">Program<br><input type="radio" name="question4" value="Taskbar ">Taskbar<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>7.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question7" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question7" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question7" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question7" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>17<br><label>8.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question8" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question8" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question8" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question8" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>1<br><label>9.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question9" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question9" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question9" value="Word ">Word<br><input type="radio" name="question9" value="Explorer ">Explorer<br></p>3<br><label>10.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question10" value="Keyboard " required >Keyboard<br><input type="radio" name="question10" value="Monitor ">Monitor<br><input type="radio" name="question10" value="Printer ">Printer<br><input type="radio" name="question10" value="Motherboard ">Motherboard<br></p>10<br><label>11.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question11" value="Firefox " required >Firefox<br><input type="radio" name="question11" value="Safari ">Safari<br><input type="radio" name="question11" value="Google Chrome ">Google Chrome<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>13.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question13" value="GPU " required >GPU<br><input type="radio" name="question13" value="CPU ">CPU<br><input type="radio" name="question13" value="Motherboard ">Motherboard<br><input type="radio" name="question13" value="Monitor ">Monitor<br></p>8<br><label>14.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question14" value="Control Panel " required >Control Panel<br><input type="radio" name="question14" value="Computer ">Computer<br><input type="radio" name="question14" value="Documents ">Documents<br><input type="radio" name="question14" value="Desktop ">Desktop<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>16.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question16" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question16" value="Address Bar ">Address Bar<br><input type="radio" name="question16" value="Search Bar ">Search Bar<br><input type="radio" name="question16" value="Favorites Bar ">Favorites Bar<br></p>0<br><label>17.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question17" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question17" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question17" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question17" value="A web browser ">A web browser<br></p>15<br><label>18.) Email is?</label><p style="text-align:left;"><input type="radio" name="question18" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question18" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question18" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question18" value="hotmail.com ">hotmail.com<br></p>6<br><label>19.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question19" value="Icons " required >Icons<br><input type="radio" name="question19" value="Folders ">Folders<br><input type="radio" name="question19" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question19" value="File Type ">File Type<br></p>19<br><label>20.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question20" value="The message itself " required >The message itself<br><input type="radio" name="question20" value="The "From" line ">The "From" line<br><input type="radio" name="question20" value="The Search Bar ">The Search Bar<br><input type="radio" name="question20" value="The "To" line ">The "To" line<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.8
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">16<br><label>1.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question1" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question1" value="Updating software ">Updating software<br><input type="radio" name="question1" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>13<br><label>5.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question5" value="The home page " required >The home page<br><input type="radio" name="question5" value="The search engine ">The search engine<br><input type="radio" name="question5" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question5" value="google.com ">google.com<br></p>14<br><label>6.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question6" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question6" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question6" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question6" value="Click the refresh button ">Click the refresh button<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>1<br><label>8.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question8" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question8" value="Word ">Word<br><input type="radio" name="question8" value="Explorer ">Explorer<br></p>6<br><label>9.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question9" value="Icons " required >Icons<br><input type="radio" name="question9" value="Folders ">Folders<br><input type="radio" name="question9" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question9" value="File Type ">File Type<br></p>2<br><label>10.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question10" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question10" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question10" value="The Start button ">The Start button<br><input type="radio" name="question10" value="A type of file ">A type of file<br></p>12<br><label>11.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question11" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question11" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question11" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question11" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>0<br><label>12.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question12" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question12" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question12" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question12" value="A web browser ">A web browser<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>15<br><label>14.) Email is?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question14" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question14" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question14" value="hotmail.com ">hotmail.com<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>19<br><label>16.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question16" value="The message itself " required >The message itself<br><input type="radio" name="question16" value="The "From" line ">The "From" line<br><input type="radio" name="question16" value="The Search Bar ">The Search Bar<br><input type="radio" name="question16" value="The "To" line ">The "To" line<br></p>4<br><label>17.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question17" value="GPU " required >GPU<br><input type="radio" name="question17" value="CPU ">CPU<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br></p>5<br><label>18.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question18" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question18" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>8<br><label>20.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question20" value="Control Panel " required >Control Panel<br><input type="radio" name="question20" value="Computer ">Computer<br><input type="radio" name="question20" value="Documents ">Documents<br><input type="radio" name="question20" value="Desktop ">Desktop<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.7
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">5<br><label>1.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question1" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question1" value="Motherboard ">Motherboard<br><input type="radio" name="question1" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question1" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>18<br><label>2.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question2" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question2" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question2" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question2" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>11<br><label>3.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question3" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question3" value="Address Bar ">Address Bar<br><input type="radio" name="question3" value="Search Bar ">Search Bar<br><input type="radio" name="question3" value="Favorites Bar ">Favorites Bar<br></p>9<br><label>4.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question4" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question4" value="An operating system ">An operating system<br><input type="radio" name="question4" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>3<br><label>5.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question5" value="Keyboard " required >Keyboard<br><input type="radio" name="question5" value="Monitor ">Monitor<br><input type="radio" name="question5" value="Printer ">Printer<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br></p>19<br><label>6.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question6" value="The message itself " required >The message itself<br><input type="radio" name="question6" value="The "From" line ">The "From" line<br><input type="radio" name="question6" value="The Search Bar ">The Search Bar<br><input type="radio" name="question6" value="The "To" line ">The "To" line<br></p>10<br><label>7.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question7" value="Firefox " required >Firefox<br><input type="radio" name="question7" value="Safari ">Safari<br><input type="radio" name="question7" value="Google Chrome ">Google Chrome<br><input type="radio" name="question7" value="Internet Explorer ">Internet Explorer<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>13<br><label>9.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question9" value="The home page " required >The home page<br><input type="radio" name="question9" value="The search engine ">The search engine<br><input type="radio" name="question9" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question9" value="google.com ">google.com<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>15<br><label>13.) Email is?</label><p style="text-align:left;"><input type="radio" name="question13" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question13" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question13" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question13" value="hotmail.com ">hotmail.com<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>2<br><label>17.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question17" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question17" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question17" value="The Start button ">The Start button<br><input type="radio" name="question17" value="A type of file ">A type of file<br></p>6<br><label>18.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question18" value="Icons " required >Icons<br><input type="radio" name="question18" value="Folders ">Folders<br><input type="radio" name="question18" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question18" value="File Type ">File Type<br></p>12<br><label>19.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question19" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question19" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question19" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question19" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>1<br><label>20.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question20" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question20" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question20" value="Word ">Word<br><input type="radio" name="question20" value="Explorer ">Explorer<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.6
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">15<br><label>1.) Email is?</label><p style="text-align:left;"><input type="radio" name="question1" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question1" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question1" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question1" value="hotmail.com ">hotmail.com<br></p>3<br><label>2.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question2" value="Keyboard " required >Keyboard<br><input type="radio" name="question2" value="Monitor ">Monitor<br><input type="radio" name="question2" value="Printer ">Printer<br><input type="radio" name="question2" value="Motherboard ">Motherboard<br></p>1<br><label>3.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question3" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question3" value="Word ">Word<br><input type="radio" name="question3" value="Explorer ">Explorer<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>7<br><label>5.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Shortcut " required >Shortcut<br><input type="radio" name="question5" value="System Tray ">System Tray<br><input type="radio" name="question5" value="Program ">Program<br><input type="radio" name="question5" value="Taskbar ">Taskbar<br></p>16<br><label>6.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question6" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question6" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question6" value="Updating software ">Updating software<br><input type="radio" name="question6" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>19<br><label>7.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question7" value="The message itself " required >The message itself<br><input type="radio" name="question7" value="The "From" line ">The "From" line<br><input type="radio" name="question7" value="The Search Bar ">The Search Bar<br><input type="radio" name="question7" value="The "To" line ">The "To" line<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>8<br><label>11.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question11" value="Control Panel " required >Control Panel<br><input type="radio" name="question11" value="Computer ">Computer<br><input type="radio" name="question11" value="Documents ">Documents<br><input type="radio" name="question11" value="Desktop ">Desktop<br></p>14<br><label>12.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question12" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question12" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question12" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question12" value="Click the refresh button ">Click the refresh button<br></p>11<br><label>13.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question13" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question13" value="Address Bar ">Address Bar<br><input type="radio" name="question13" value="Search Bar ">Search Bar<br><input type="radio" name="question13" value="Favorites Bar ">Favorites Bar<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>9<br><label>15.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question15" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question15" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question15" value="An operating system ">An operating system<br><input type="radio" name="question15" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>5<br><label>16.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question16" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question16" value="Motherboard ">Motherboard<br><input type="radio" name="question16" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question16" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>10<br><label>17.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question17" value="Firefox " required >Firefox<br><input type="radio" name="question17" value="Safari ">Safari<br><input type="radio" name="question17" value="Google Chrome ">Google Chrome<br><input type="radio" name="question17" value="Internet Explorer ">Internet Explorer<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>12<br><label>20.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question20" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question20" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question20" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question20" value="The program that runs the internet browser ">The program that runs the internet browser<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.5
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">1<br><label>1.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question1" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question1" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question1" value="Word ">Word<br><input type="radio" name="question1" value="Explorer ">Explorer<br></p>10<br><label>2.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question2" value="Firefox " required >Firefox<br><input type="radio" name="question2" value="Safari ">Safari<br><input type="radio" name="question2" value="Google Chrome ">Google Chrome<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>3.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question3" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question3" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question3" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question3" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>6<br><label>6.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Icons " required >Icons<br><input type="radio" name="question6" value="Folders ">Folders<br><input type="radio" name="question6" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question6" value="File Type ">File Type<br></p>11<br><label>7.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question7" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question7" value="Address Bar ">Address Bar<br><input type="radio" name="question7" value="Search Bar ">Search Bar<br><input type="radio" name="question7" value="Favorites Bar ">Favorites Bar<br></p>13<br><label>8.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question8" value="The home page " required >The home page<br><input type="radio" name="question8" value="The search engine ">The search engine<br><input type="radio" name="question8" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question8" value="google.com ">google.com<br></p>3<br><label>9.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question9" value="Keyboard " required >Keyboard<br><input type="radio" name="question9" value="Monitor ">Monitor<br><input type="radio" name="question9" value="Printer ">Printer<br><input type="radio" name="question9" value="Motherboard ">Motherboard<br></p>15<br><label>10.) Email is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question10" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question10" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question10" value="hotmail.com ">hotmail.com<br></p>2<br><label>11.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question11" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question11" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question11" value="The Start button ">The Start button<br><input type="radio" name="question11" value="A type of file ">A type of file<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>9<br><label>13.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question13" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question13" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question13" value="An operating system ">An operating system<br><input type="radio" name="question13" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>7<br><label>14.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Shortcut " required >Shortcut<br><input type="radio" name="question14" value="System Tray ">System Tray<br><input type="radio" name="question14" value="Program ">Program<br><input type="radio" name="question14" value="Taskbar ">Taskbar<br></p>19<br><label>15.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question15" value="The message itself " required >The message itself<br><input type="radio" name="question15" value="The "From" line ">The "From" line<br><input type="radio" name="question15" value="The Search Bar ">The Search Bar<br><input type="radio" name="question15" value="The "To" line ">The "To" line<br></p>17<br><label>16.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question16" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question16" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question16" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question16" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>12<br><label>17.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question17" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question17" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question17" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>5<br><label>19.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question19" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question19" value="Motherboard ">Motherboard<br><input type="radio" name="question19" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question19" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>14<br><label>20.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question20" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question20" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question20" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question20" value="Click the refresh button ">Click the refresh button<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.3 - 4.3.4
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">18<br><label>1.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question1" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question1" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question1" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question1" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>19<br><label>3.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question3" value="The message itself " required >The message itself<br><input type="radio" name="question3" value="The "From" line ">The "From" line<br><input type="radio" name="question3" value="The Search Bar ">The Search Bar<br><input type="radio" name="question3" value="The "To" line ">The "To" line<br></p>10<br><label>4.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question4" value="Firefox " required >Firefox<br><input type="radio" name="question4" value="Safari ">Safari<br><input type="radio" name="question4" value="Google Chrome ">Google Chrome<br><input type="radio" name="question4" value="Internet Explorer ">Internet Explorer<br></p>8<br><label>5.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question5" value="Control Panel " required >Control Panel<br><input type="radio" name="question5" value="Computer ">Computer<br><input type="radio" name="question5" value="Documents ">Documents<br><input type="radio" name="question5" value="Desktop ">Desktop<br></p>0<br><label>6.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question6" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question6" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question6" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question6" value="A web browser ">A web browser<br></p>3<br><label>7.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question7" value="Keyboard " required >Keyboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br><input type="radio" name="question7" value="Printer ">Printer<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br></p>16<br><label>8.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question8" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question8" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question8" value="Updating software ">Updating software<br><input type="radio" name="question8" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>14<br><label>9.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question9" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question9" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question9" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question9" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>10.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question10" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question10" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question10" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question10" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>13<br><label>11.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question11" value="The home page " required >The home page<br><input type="radio" name="question11" value="The search engine ">The search engine<br><input type="radio" name="question11" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question11" value="google.com ">google.com<br></p>12<br><label>12.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question12" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question12" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question12" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question12" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>7<br><label>13.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question13" value="Shortcut " required >Shortcut<br><input type="radio" name="question13" value="System Tray ">System Tray<br><input type="radio" name="question13" value="Program ">Program<br><input type="radio" name="question13" value="Taskbar ">Taskbar<br></p>6<br><label>14.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question14" value="Icons " required >Icons<br><input type="radio" name="question14" value="Folders ">Folders<br><input type="radio" name="question14" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question14" value="File Type ">File Type<br></p>4<br><label>15.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question15" value="GPU " required >GPU<br><input type="radio" name="question15" value="CPU ">CPU<br><input type="radio" name="question15" value="Motherboard ">Motherboard<br><input type="radio" name="question15" value="Monitor ">Monitor<br></p>2<br><label>16.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question16" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question16" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question16" value="The Start button ">The Start button<br><input type="radio" name="question16" value="A type of file ">A type of file<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>9<br><label>18.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question18" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question18" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question18" value="An operating system ">An operating system<br><input type="radio" name="question18" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>20.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question20" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question20" value="Motherboard ">Motherboard<br><input type="radio" name="question20" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question20" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.2
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">9<br><label>1.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question1" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question1" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question1" value="An operating system ">An operating system<br><input type="radio" name="question1" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>6<br><label>2.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question2" value="Icons " required >Icons<br><input type="radio" name="question2" value="Folders ">Folders<br><input type="radio" name="question2" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question2" value="File Type ">File Type<br></p>8<br><label>3.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question3" value="Control Panel " required >Control Panel<br><input type="radio" name="question3" value="Computer ">Computer<br><input type="radio" name="question3" value="Documents ">Documents<br><input type="radio" name="question3" value="Desktop ">Desktop<br></p>11<br><label>4.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question4" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question4" value="Address Bar ">Address Bar<br><input type="radio" name="question4" value="Search Bar ">Search Bar<br><input type="radio" name="question4" value="Favorites Bar ">Favorites Bar<br></p>5<br><label>5.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question5" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question5" value="Motherboard ">Motherboard<br><input type="radio" name="question5" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question5" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>7<br><label>6.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question6" value="Shortcut " required >Shortcut<br><input type="radio" name="question6" value="System Tray ">System Tray<br><input type="radio" name="question6" value="Program ">Program<br><input type="radio" name="question6" value="Taskbar ">Taskbar<br></p>12<br><label>7.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question7" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question7" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question7" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question7" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>10<br><label>8.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question8" value="Firefox " required >Firefox<br><input type="radio" name="question8" value="Safari ">Safari<br><input type="radio" name="question8" value="Google Chrome ">Google Chrome<br><input type="radio" name="question8" value="Internet Explorer ">Internet Explorer<br></p>19<br><label>9.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question9" value="The message itself " required >The message itself<br><input type="radio" name="question9" value="The "From" line ">The "From" line<br><input type="radio" name="question9" value="The Search Bar ">The Search Bar<br><input type="radio" name="question9" value="The "To" line ">The "To" line<br></p>0<br><label>10.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question10" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question10" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question10" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question10" value="A web browser ">A web browser<br></p>1<br><label>11.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question11" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question11" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question11" value="Word ">Word<br><input type="radio" name="question11" value="Explorer ">Explorer<br></p>16<br><label>12.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question12" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question12" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question12" value="Updating software ">Updating software<br><input type="radio" name="question12" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>18<br><label>13.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question13" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question13" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question13" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question13" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>14<br><label>14.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question14" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question14" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question14" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question14" value="Click the refresh button ">Click the refresh button<br></p>17<br><label>15.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question15" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question15" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question15" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question15" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>3<br><label>17.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question17" value="Keyboard " required >Keyboard<br><input type="radio" name="question17" value="Monitor ">Monitor<br><input type="radio" name="question17" value="Printer ">Printer<br><input type="radio" name="question17" value="Motherboard ">Motherboard<br></p>4<br><label>18.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="GPU " required >GPU<br><input type="radio" name="question18" value="CPU ">CPU<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br></p>13<br><label>19.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question19" value="The home page " required >The home page<br><input type="radio" name="question19" value="The search engine ">The search engine<br><input type="radio" name="question19" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question19" value="google.com ">google.com<br></p>2<br><label>20.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question20" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question20" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question20" value="The Start button ">The Start button<br><input type="radio" name="question20" value="A type of file ">A type of file<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.1
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">19<br><label>1.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question1" value="The message itself " required >The message itself<br><input type="radio" name="question1" value="The "From" line ">The "From" line<br><input type="radio" name="question1" value="The Search Bar ">The Search Bar<br><input type="radio" name="question1" value="The "To" line ">The "To" line<br></p>1<br><label>2.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question2" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question2" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question2" value="Word ">Word<br><input type="radio" name="question2" value="Explorer ">Explorer<br></p>10<br><label>3.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question3" value="Firefox " required >Firefox<br><input type="radio" name="question3" value="Safari ">Safari<br><input type="radio" name="question3" value="Google Chrome ">Google Chrome<br><input type="radio" name="question3" value="Internet Explorer ">Internet Explorer<br></p>18<br><label>4.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question4" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question4" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question4" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question4" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>0<br><label>5.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question5" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question5" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question5" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question5" value="A web browser ">A web browser<br></p>4<br><label>6.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question6" value="GPU " required >GPU<br><input type="radio" name="question6" value="CPU ">CPU<br><input type="radio" name="question6" value="Motherboard ">Motherboard<br><input type="radio" name="question6" value="Monitor ">Monitor<br></p>5<br><label>7.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question7" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question7" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>2<br><label>8.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question8" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question8" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question8" value="The Start button ">The Start button<br><input type="radio" name="question8" value="A type of file ">A type of file<br></p>17<br><label>9.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question9" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question9" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question9" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question9" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>16<br><label>10.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question10" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question10" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question10" value="Updating software ">Updating software<br><input type="radio" name="question10" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>6<br><label>11.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question11" value="Icons " required >Icons<br><input type="radio" name="question11" value="Folders ">Folders<br><input type="radio" name="question11" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question11" value="File Type ">File Type<br></p>3<br><label>12.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question12" value="Keyboard " required >Keyboard<br><input type="radio" name="question12" value="Monitor ">Monitor<br><input type="radio" name="question12" value="Printer ">Printer<br><input type="radio" name="question12" value="Motherboard ">Motherboard<br></p>13<br><label>13.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question13" value="The home page " required >The home page<br><input type="radio" name="question13" value="The search engine ">The search engine<br><input type="radio" name="question13" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question13" value="google.com ">google.com<br></p>12<br><label>14.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question14" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question14" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question14" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question14" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>14<br><label>15.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question15" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question15" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question15" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question15" value="Click the refresh button ">Click the refresh button<br></p>9<br><label>16.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question16" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question16" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question16" value="An operating system ">An operating system<br><input type="radio" name="question16" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>15<br><label>17.) Email is?</label><p style="text-align:left;"><input type="radio" name="question17" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question17" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question17" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question17" value="hotmail.com ">hotmail.com<br></p>8<br><label>18.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question18" value="Control Panel " required >Control Panel<br><input type="radio" name="question18" value="Computer ">Computer<br><input type="radio" name="question18" value="Documents ">Documents<br><input type="radio" name="question18" value="Desktop ">Desktop<br></p>11<br><label>19.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question19" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question19" value="Address Bar ">Address Bar<br><input type="radio" name="question19" value="Search Bar ">Search Bar<br><input type="radio" name="question19" value="Favorites Bar ">Favorites Bar<br></p>7<br><label>20.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question20" value="Shortcut " required >Shortcut<br><input type="radio" name="question20" value="System Tray ">System Tray<br><input type="radio" name="question20" value="Program ">Program<br><input type="radio" name="question20" value="Taskbar ">Taskbar<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>
Output for 4.3.0
<!DOCTYPE html> <html> <head> <title>PHP Written Test</title> </head> <body> <div style="margin-left:25%; "><form name="post" action="score.php" method="get">19<br><label>1.) Where do you type the recipient's name in a new email?</label><p style="text-align:left;"><input type="radio" name="question1" value="The message itself " required >The message itself<br><input type="radio" name="question1" value="The "From" line ">The "From" line<br><input type="radio" name="question1" value="The Search Bar ">The Search Bar<br><input type="radio" name="question1" value="The "To" line ">The "To" line<br></p>9<br><label>2.) What is Task Manager?</label><p style="text-align:left;"><input type="radio" name="question2" value="A program that manages your tasks " required >A program that manages your tasks<br><input type="radio" name="question2" value="A program that lets your organize data into databases ">A program that lets your organize data into databases<br><input type="radio" name="question2" value="An operating system ">An operating system<br><input type="radio" name="question2" value="A utility program used for managing processes and programs running on the computer ">A utility program used for managing processes and programs running on the computer<br></p>17<br><label>3.) The three parts of an email address in order are?</label><p style="text-align:left;"><input type="radio" name="question3" value="User ID, @ symbol, host name " required >User ID, @ symbol, host name<br><input type="radio" name="question3" value="GB, MB, KB ">GB, MB, KB<br><input type="radio" name="question3" value="IP, DNS, ISP ">IP, DNS, ISP<br><input type="radio" name="question3" value="CPU, Motherboard, Video Cards ">CPU, Motherboard, Video Cards<br></p>0<br><label>4.) What is malware?</label><p style="text-align:left;"><input type="radio" name="question4" value="A program a user can use to create and manage spreadsheets " required >A program a user can use to create and manage spreadsheets<br><input type="radio" name="question4" value="The software that controls everything inside the computer. It controls the hardware and software the user works with ">The software that controls everything inside the computer. It controls the hardware and software the user works with<br><input type="radio" name="question4" value="Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data ">Programs that intend to damage a users data and system files or allow an outside attacker to gain access to the computer and steal data<br><input type="radio" name="question4" value="A web browser ">A web browser<br></p>6<br><label>5.) What are the small pictures on the desktop called?</label><p style="text-align:left;"><input type="radio" name="question5" value="Icons " required >Icons<br><input type="radio" name="question5" value="Folders ">Folders<br><input type="radio" name="question5" value="Recycle Bin ">Recycle Bin<br><input type="radio" name="question5" value="File Type ">File Type<br></p>12<br><label>6.) What is a search engine?</label><p style="text-align:left;"><input type="radio" name="question6" value="Software enabling the user to organize emails " required >Software enabling the user to organize emails<br><input type="radio" name="question6" value="A program that allows a user to store, manage, manipulate, and secure data then make queries ">A program that allows a user to store, manage, manipulate, and secure data then make queries<br><input type="radio" name="question6" value="A tool used to lookup information on the internet ">A tool used to lookup information on the internet<br><input type="radio" name="question6" value="The program that runs the internet browser ">The program that runs the internet browser<br></p>4<br><label>7.) What is the brain of the computer?</label><p style="text-align:left;"><input type="radio" name="question7" value="GPU " required >GPU<br><input type="radio" name="question7" value="CPU ">CPU<br><input type="radio" name="question7" value="Motherboard ">Motherboard<br><input type="radio" name="question7" value="Monitor ">Monitor<br></p>7<br><label>8.) What is the bar at the bottom of the screen called?</label><p style="text-align:left;"><input type="radio" name="question8" value="Shortcut " required >Shortcut<br><input type="radio" name="question8" value="System Tray ">System Tray<br><input type="radio" name="question8" value="Program ">Program<br><input type="radio" name="question8" value="Taskbar ">Taskbar<br></p>11<br><label>9.) Where do you type links to take you to different web sites?</label><p style="text-align:left;"><input type="radio" name="question9" value="Menu Bar " required >Menu Bar<br><input type="radio" name="question9" value="Address Bar ">Address Bar<br><input type="radio" name="question9" value="Search Bar ">Search Bar<br><input type="radio" name="question9" value="Favorites Bar ">Favorites Bar<br></p>18<br><label>10.) What is a carbon copy?</label><p style="text-align:left;"><input type="radio" name="question10" value="A copy of the email sent to the recipient emailed to you " required >A copy of the email sent to the recipient emailed to you<br><input type="radio" name="question10" value="A physical copy of the email ">A physical copy of the email<br><input type="radio" name="question10" value="Writing the email down on paper with pencil ">Writing the email down on paper with pencil<br><input type="radio" name="question10" value="Copying the email onto the desktop to view later ">Copying the email onto the desktop to view later<br></p>16<br><label>11.) Phishing is?</label><p style="text-align:left;"><input type="radio" name="question11" value="Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient " required >Impersonating someone with a similar email address and trying to obtain sensitive information from the recipient<br><input type="radio" name="question11" value="Creating a carbon copy of your email ">Creating a carbon copy of your email<br><input type="radio" name="question11" value="Updating software ">Updating software<br><input type="radio" name="question11" value="Composing a new email message and sending it ">Composing a new email message and sending it<br></p>8<br><label>12.) Where can you find a list of all the storage devices connected to the computer?</label><p style="text-align:left;"><input type="radio" name="question12" value="Control Panel " required >Control Panel<br><input type="radio" name="question12" value="Computer ">Computer<br><input type="radio" name="question12" value="Documents ">Documents<br><input type="radio" name="question12" value="Desktop ">Desktop<br></p>10<br><label>13.) What is the default web browser for Windows?</label><p style="text-align:left;"><input type="radio" name="question13" value="Firefox " required >Firefox<br><input type="radio" name="question13" value="Safari ">Safari<br><input type="radio" name="question13" value="Google Chrome ">Google Chrome<br><input type="radio" name="question13" value="Internet Explorer ">Internet Explorer<br></p>5<br><label>14.) What is an operating system?</label><p style="text-align:left;"><input type="radio" name="question14" value="A word processing program that allows the user to edit text and format it " required >A word processing program that allows the user to edit text and format it<br><input type="radio" name="question14" value="Motherboard ">Motherboard<br><input type="radio" name="question14" value="An important part of systems files. It manages the interaction between the user, application programs, and hardware ">An important part of systems files. It manages the interaction between the user, application programs, and hardware<br><input type="radio" name="question14" value="A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers ">A program that infects a computer, copies itself many times using up system resources, and spreads the infection to other computers<br></p>1<br><label>15.) What program controls items such as the start menu, windows, and the taskbar?</label><p style="text-align:left;"><input type="radio" name="question15" value="Spybot Search and Destroy " required >Spybot Search and Destroy<br><input type="radio" name="question15" value="Internet Explorer ">Internet Explorer<br><input type="radio" name="question15" value="Word ">Word<br><input type="radio" name="question15" value="Explorer ">Explorer<br></p>15<br><label>16.) Email is?</label><p style="text-align:left;"><input type="radio" name="question16" value="Software programs that can compose, send, and receive email messages " required >Software programs that can compose, send, and receive email messages<br><input type="radio" name="question16" value="The default folder that stores deleted messages ">The default folder that stores deleted messages<br><input type="radio" name="question16" value="A service that allows users to send messages and/or documents to each other over an internet network ">A service that allows users to send messages and/or documents to each other over an internet network<br><input type="radio" name="question16" value="hotmail.com ">hotmail.com<br></p>2<br><label>17.) What is a folder?</label><p style="text-align:left;"><input type="radio" name="question17" value="A location that stores saved files and programs " required >A location that stores saved files and programs<br><input type="radio" name="question17" value="A paper document inside a file cabinet ">A paper document inside a file cabinet<br><input type="radio" name="question17" value="The Start button ">The Start button<br><input type="radio" name="question17" value="A type of file ">A type of file<br></p>3<br><label>18.) What is an input device?</label><p style="text-align:left;"><input type="radio" name="question18" value="Keyboard " required >Keyboard<br><input type="radio" name="question18" value="Monitor ">Monitor<br><input type="radio" name="question18" value="Printer ">Printer<br><input type="radio" name="question18" value="Motherboard ">Motherboard<br></p>14<br><label>19.) To refresh a web page you may?</label><p style="text-align:left;"><input type="radio" name="question19" value="Press the F13 key " required >Press the F13 key<br><input type="radio" name="question19" value="Press the white "-" at the top of the window ">Press the white "-" at the top of the window<br><input type="radio" name="question19" value="Press the red "X" key at the top of the page ">Press the red "X" key at the top of the page<br><input type="radio" name="question19" value="Click the refresh button ">Click the refresh button<br></p>13<br><label>20.) The first page displayed after starting the web browser is called what?</label><p style="text-align:left;"><input type="radio" name="question20" value="The home page " required >The home page<br><input type="radio" name="question20" value="The search engine ">The search engine<br><input type="radio" name="question20" value="Web Page 1 ">Web Page 1<br><input type="radio" name="question20" value="google.com ">google.com<br></p> <br><input style="margin-left:25%;" type="submit" name="submit" value="Finish Test"> </form> </div> </body> </html>

preferences:
290.51 ms | 425 KiB | 200 Q