Top Banner
DEDICATED TO OUR PARENTS AND LECTURERS 1 | Page
235
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Pro

DEDICATED TO OUR PARENTS AND LECTURERS

1 | P a g e

Page 2: Pro

CONTENTS

CONTENTS

SL.NO. PARTICULARS PAGE NUMBER1 ACKNOWLEDGMENT 4 - 52 SYNOPSIS 6 - 73 INTRODUCTION TO PROJECT 8 - 94 INTRODUCTION TO HTML 10 - 125 BASIC TAGS USED 13 - 156 GRAPHICS 16 - 187 ADDING LINKS TO HTML 19 - 218 STORYBOARD 22 - 23

2 | P a g e

Page 3: Pro

9 SNAPSHOTS 24 - 2710 BIBILOGRAPHY 28 - 29

ACKNOWLEDGEMENT

3 | P a g e

Page 4: Pro

ACKNOWLEDGEMENT

I express my gratitude and thanks to our Secretary and Principal being a source of strength, inspiration and helped us to surmount the obstacles on our way to the successful completion of our challenging work.

We express our sincere thanks and gratitude to Mrs. Sunitha Watts, Head of the Department of Computer Science for their advice and guidance.

We express our sincere thanks and gratitude to Mr. Kuldeep Mohan, Lecturer of Computer Science department for their guidance, help and Co-ordination through out the project.

We thank to our parents and few people indirectly helped us for this project work and my friends for their enthusiasm and timely help during this academic year 2007 - 2008.

4 | P a g e

Page 5: Pro

SYNOPSIS

5 | P a g e

Page 6: Pro

SYNOPSIS

The project work titled “ONLINE EXAMINATION SYSTEM” is aimed for the purpose of easy handling of EXAM MANAGEMENT. It is entrusted with a task of adding the queries into the forum, solutions is discussed and posted by different students and lecturers and maintaining query information with limited coding. The project “ONLINE EXAMINATION SYSTEM” was developed by using our flexed knowledge in HTML and PHP. Thus the project work principles have been successfully implemented to the better service to the user. The further details of the project software are discussed in the later chapters.

6 | P a g e

Page 7: Pro

INTRODUCTION TO ONLINE EXAMINATION

SYSTEM

INTRODUCTION TO ONLINE EXAMINATION SYSTEM

This project titled “ONLINE EXAMINATION SYSTEM” is designed

using HTML for Client Side and PHP for Server Side which helps in understanding

different technologies. These exams covers almost all the concepts of technologies

such as C, C++, C#, DOTNET, Java, SQL, Oracle… such that it would be helpful

for the users.

This project also makes the users to check what they have learnt by these

solutions by displaying it on the solutions blog such that user can come to know

their mistakes without any hard work by just knowing various technologies.

The source code is very simple to understand. The person with basic

knowledge in HTML as well as PHP can understand the coding easily and can

make necessary changes as per the requirements.

7 | P a g e

Page 8: Pro

INTRODUCTION TO HTML

8 | P a g e

Page 9: Pro

INTRODUCTION TO HTML

GETTING STARTED

HTML (Hyper Text Markup Language) documents are written in plain text (ASCII) with special markup codes embedded right in the text. This means HTML files contain nothing but printable characters and HTML markup codes. This is unlike a Word file which can contain special characters for formatting functions.

What distinguishes an HTML file from any other plain - text file is the presence of markup codes. Markup codes are typed into a document and control the formatting and layout of your finished document. The markup codes that are typed into a document are enclosed within these angle brackets: "< >". The angle brackets and the markup codes together constitute a tag. When your are talking about an HTML document you refer to it as a "source" document. Here is an example of the "source" of a simple HTML document:

<HTML> <HEAD> <TITLE>Simple HTML document</TITLE> </HEAD> <BODY>

This is a very simple html document. </BODY> </HTML>

Every Web page that you see on the World Wide Web is an HTML document. The Web pages you see don't look like the source displayed above. The reason for this is because the source is viewed through a Web Browser. To see what the simple HTML document above would look Here is what the HTML document will look like viewed

9 | P a g e

Page 10: Pro

It is important to realize that an HTML document can look different depending on which Web browser it is viewed through the font, font size, and text format.

Now that you have seen the source of a simple HTML document and what it will look like on the Web viewed through Internet Explorer, let's see something a bit more complicated. You will need to open a new Explorer window and position it next to the window displaying this tutorial. This new window is your experimental window, and will be called so throughout the tutorial.

Choose New from the File menu and position this window. A Web page will appear. What does this Web page's source look like? It is easy to find out. Most browsers allow you to view the source of any Web page that they display. Let's view the source of the Web page that appeared. Click on the new Internet Explorer window you opened.

After a few seconds, an HTML document will appear on the screen. You should see a few familiar things. Scroll through and take a gander. It may look complicated now, but by the end of the tutorial you will understand what all that text and markup code means...

It is now time for you to create your own HTML program.

10 | P a g e

Page 11: Pro

BASIC TAGS USED

BASIC TAGS USED

CREATING A SIMPLE HTML DOCUMENT

You will create your HTML document using the text editor Notepad. In addition, make sure you still have two Internet Explorer windows open. The window displaying the tutorial should take up half of the screen and the experimental window should be resized to take up only a half of the other part

11 | P a g e

Page 12: Pro

of the screen (that is one quarter of the whole screen). The tutorial is very easy to follow.

                 Find and open Notepad. Position the Notepad window in the remaining quarter of open screen. You should now have three windows displayed on your screen. Before you start you need to know what HTML tags are HTML Tags Required in all HTML Documents. There are some basic HTML tags that must appear in all HTML documents. They are:

The <HTML> and </HTML> Tags

Every HTML document must begin with the <HTML> tag. This tag is declaring the document an HTML document. The <HTML> tag must be paired with its closing tag - </HTML>, which will be the last tag in the document.

The <HEAD> and </HEAD> Tags.

An HTML document is divided into two parts, the head and body. Web browsers need to distinguish the different parts of the document and these tags will inform the browser. Generally, the <HEAD> and its closing tag </HEAD> will contain the title of your HTML document.

The <BODY> and </BODY> Tags.

The <BODY> tag and it's closing tag </BODY> will contain the majority of your HTML document.

The <TITLE> and </TITLE> Tags.

The Web browser always displays a title for each document it encounters. The title displayed is taken from the content of the <TITLE> tag and its closing tag </TITLE>. The <TITLE> and </TITLE>. always appears within the <HEAD> and </HEAD> tags.

<HTML> <HEAD> <TITLE>Simple HTML document</TITLE> </HEAD> <BODY>

This is a very simple html document.</BODY> </HTML>

Using the HTML document source above as a template, create your own HTML document. Change the title of the document to "My Creation" and the

12 | P a g e

Page 13: Pro

body of the document to "This HTML document is a work of art". When you are done typing your document and save it. You are now ready to view your creation through Internet Explorer.

       Choose Open File or Open from the File menu. Find your HTML file, highlight it, and click on Open. Your HTML document should be displayed in the Internet. Congratulations! You have just created your first HTML document.

13 | P a g e

Page 14: Pro

GRAPHICS

GRAPHICS

ADDING IMAGES TO AN HTML DOCUMENT

You will need three windows open on your screen at this time. A Internet Explorer window displaying this tutorial, an experimental window to view your HTML document, and a window in which you will type the HTML document.

Most Web browsers can handle just a few kind of images: GIF images JPEG images XBM images

Including Images

To include an image, enter the following tag and information:Note: The URL of an image can be found by opening the image and right clicking on it. A menu will open, select properties. The window that opens will give you the URL. The URL will give the location from the hard drive, you will

14 | P a g e

Page 15: Pro

only need to include the information past the folder that includes the html document you are working on.

<HTML> <HEAD> <TITLE>Images</TITLE> </HEAD>

<BODY> <IMG SRC="images/earth.gif">

</BODY> </HTML>

looks as follows, viewed through Internet Explorer:

In this example, the image of the earth is a file that has been downloaded and placed in a folder called images on the hard drive. The actual name of the file is Earth.gif. Since the image is stored on the local hard drive the URL is the file "path". A path consists of a list of folders separated by slashes and ending with the files name. Paths are assumed to start from the folder containing the HTML source that you are currently viewing.

When you are adding images to your document you generally find an image you want on the Web, download it and place it on your hard drive or diskette and then include it in your document with the appropriate tag and URL. Once the file is located on your hard drive or diskette, it is time for you to download an image and insert it into …

Here are three images to choose from:

       Download one of the three images to your hard drive or diskette. You can keep the name that has been given to Insert the image you just downloaded by entering the following : <IMG SRC=" URL of the image"> with the appropriate URL.

15 | P a g e

Page 16: Pro

ADDING LINKS TO HTML

16 | P a g e

Page 17: Pro

ADDING LINKS TO HTML

ADDING LINKS TO AN HTML DOCUMENT

You will need three windows open on your screen at this time. An Internet Explorer window displaying this tutorial, an experimental window to view your HTML document, and a window in which you will type the HTML document.

For this part of the tutorial you will create three HTML documents: one document containing links to the other two. All three of these documents will be local documents because you will be saving them to your diskette or hard drive.

<HTML><HEAD>

<TITLE>Document with two links</TITLE> </HEAD>

<BODY><A HREF="URL of your first name file">First Name</a> <A HREF="URL of your last name file">Last Name</a>

</BODY> </HTML>

Observe the new tags: <A HREF="filename"> and </A> These tags make up the two pieces of a link. The <A HREF="

filename"> tag is the first part of the link. The <A HREF=" filename"> tag signifies a link is coming and the file name is the target of the link (where you will jump to). The text between the <A HREF=" filename"> tag and the closing tag </A> is the second piece of the link. This text will be highlighted in your document. When the reader clicks on this highlighted text, they will jump to the target (i.e. the filename you typed in the <A HREF=" filename"> tag).

In the above example first name and last name will be highlighted in your third document and will link you to the files.

That is, your third HTML document should look like this:

17 | P a g e

Page 18: Pro

       

Click on the experimental window and view the file links. Click on the two links to see if you have been successful. If something has gone wrong check your syntax carefully and make sure you typed in the correct URL's.

In the tutorial we will use the flower as a graphical link. When you click on the flower, you should jump to the file containing your first name (first name). To create this graphical link you need to download the image of the flower and remember where you saved it. Download the flower image below and save it to your diskette or hard drive. Remember where you saved it to.

Click on the window containing your HTML document links. Within the source, replace the text that is contained between the first set of <A HREF=" URL of your first name file">and </A> tags, with the following: You have just substituted the text 'first name' with your flower.

        Click on your experimental window and open your links document. The image of the flower should appear and it should have a border line around it, which indicates that it is a link. Click on your new graphical link and see if it works.

18 | P a g e

Page 19: Pro

STORYBOARD

STORYBOARD

HOW THIS PROJECT WORKS?

19 | P a g e

Page 20: Pro

20 | P a g e

Page 21: Pro

SNAPSHOTS

SNAPSHOTS

21 | P a g e

Page 22: Pro

22 | P a g e

Page 23: Pro

23 | P a g e

Page 24: Pro

24 | P a g e

Page 25: Pro

CODING

<!—About Us Page Contents

<html><head><title>About Us</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head><body bgcolor="#d7d4d4" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table id="Table_01" width="1025" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr>

25 | P a g e

Page 26: Pro

<td colspan="2"><img src="images_aboutus/aboutus_01.gif" width="114"

height="120" alt="" /></td><td colspan="3">

<img src="images_aboutus/aboutus_02.gif" width="157" height="120" alt="" /></td>

<td colspan="2"><img src="images_aboutus/aboutus_03.gif" width="159"

height="120" alt="" /></td><td colspan="3">

<img src="images_aboutus/aboutus_04.gif" width="149" height="120" alt="" /></td>

<td colspan="2"><img src="images_aboutus/aboutus_05.gif" width="147"

height="120" alt="" /></td><td>

<img src="images_aboutus/aboutus_06.gif" width="130" height="120" alt="" /></td>

<td colspan="3"><img src="images_aboutus/aboutus_07.gif" width="168"

height="120" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="1" height="120" alt="" /></td>

</tr><tr>

<td><img src="images_aboutus/aboutus_08.gif" width="113"

height="16" alt="" /></td><td colspan="14" rowspan="2">

<img src="images_aboutus/aboutus_09.gif" width="787" height="87" alt="" /></td>

<td rowspan="15"><img src="images_aboutus/aboutus_10.gif" width="124"

height="648" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="1" height="16" alt="" /></td>

</tr><tr>

<td rowspan="3"><a href="Welcome.html"><img

src="images_aboutus/aboutus_11.gif" name="btn1" width="113" height="106" border="0" id="btn1" onMouseOver="btn1.src='images_aboutus/aboutus1_11.gif'" onMouseOut="btn1.src='images_aboutus/aboutus_11.gif'" /></a></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="71" alt="" /></td></tr>

26 | P a g e

Page 27: Pro

<tr><td colspan="3">

<img src="images_aboutus/aboutus_12.gif" width="27" height="26" alt="" /></td>

<td colspan="10" rowspan="11">&nbsp;</td><td>

<img src="images_aboutus/aboutus_14.gif" width="28" height="26" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="26" alt="" /></td></tr><tr>

<td colspan="2"><img src="images_aboutus/aboutus_15.gif" width="2"

height="9" alt="" /></td><td rowspan="3">

<img src="images_aboutus/aboutus_16.gif" width="25" height="139" alt="" /></td>

<td rowspan="3"><img src="images_aboutus/aboutus_17.gif" width="28"

height="139" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="1" height="9" alt="" /></td>

</tr><tr>

<td colspan="3"><a href="login.php"><img

src="images_aboutus/aboutus_18.gif" name="btn2" width="115" height="104" border="0" onMouseOver="btn2.src='images_aboutus/aboutus1_18.gif'" onMouseOut="btn2.src='images_aboutus/aboutus_18.gif'" /></a></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="104" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><a href="exam.php"><img

src="images_aboutus/aboutus_19.gif" name="btn3" width="115" height="106" border="0" onMouseOver="btn3.src='images_aboutus/aboutus1_19.gif'" onMouseOut="btn3.src='images_aboutus/aboutus_19.gif'" /></a></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="26" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_aboutus/aboutus_20.gif" width="25"

height="122" alt="" /></td>

27 | P a g e

Page 28: Pro

<td rowspan="2"><img src="images_aboutus/aboutus_21.gif" width="28"

height="122" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="1" height="80" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><a href="contact.html"><img

src="images_aboutus/aboutus_22.gif" name="btn4" width="115" height="96" border="0" onMouseOver="btn4.src='images_aboutus/aboutus1_22.gif'" onMouseOut="btn4.src='images_aboutus/aboutus_22.gif'" /></a></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="42" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_aboutus/aboutus_23.gif" width="25"

height="86" alt="" /></td><td rowspan="2">

<img src="images_aboutus/aboutus_24.gif" width="28" height="86" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="54" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_aboutus/aboutus_25.gif" width="113"

height="105" alt="" /></td><td colspan="2">

<img src="images_aboutus/aboutus_26.gif" width="2" height="32" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="32" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_aboutus/aboutus_27.gif" width="27"

height="124" alt="" /></td><td rowspan="2">

<img src="images_aboutus/aboutus_28.gif" width="28" height="124" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="73" alt="" /></td></tr>

28 | P a g e

Page 29: Pro

<tr><td rowspan="4">

<img src="images_aboutus/aboutus_29.gif" width="113" height="115" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="51" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_aboutus/aboutus_30.gif" width="27"

height="47" alt="" /></td><td rowspan="2">

<img src="images_aboutus/aboutus_31.gif" width="28" height="47" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="35" alt="" /></td></tr><tr>

<td colspan="2"><img src="images_aboutus/aboutus_32.gif" width="209"

height="12" alt="" /></td><td colspan="2">

<img src="images_aboutus/aboutus_33.gif" width="116" height="12" alt="" /></td>

<td><img src="images_aboutus/aboutus_34.gif" width="27"

height="12" alt="" /></td><td colspan="2">

<img src="images_aboutus/aboutus_35.gif" width="126" height="12" alt="" /></td>

<td colspan="3"><img src="images_aboutus/aboutus_36.gif" width="254"

height="12" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="1" height="12" alt="" /></td>

</tr><tr>

<td><img src="images_aboutus/aboutus_37.gif" width="1"

height="17" alt="" /></td><td colspan="13">

<img src="images_aboutus/aboutus_38.gif" width="786" height="17" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="17" alt="" /></td></tr>

29 | P a g e

Page 30: Pro

<tr><td>

<img src="images_aboutus/spacer.gif" width="113" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="1"

height="1" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="1" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="25"

height="1" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="131" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="78"

height="1" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="81" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="35"

height="1" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="27" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="87"

height="1" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="39" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="108"

height="1" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="130" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="16"

height="1" alt="" /></td><td>

<img src="images_aboutus/spacer.gif" width="28" height="1" alt="" /></td>

<td><img src="images_aboutus/spacer.gif" width="124"

height="1" alt="" /></td><td></td>

30 | P a g e

Page 31: Pro

</tr></table></body></html>

<!—About The Contact <html><head><title>Contact</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css"><!--.style1 {

color: #000000;font-family: Verdana, Arial, Helvetica, sans-serif;

}.style2 {font-family: Verdana, Arial, Helvetica, sans-serif}--></style></head><body bgcolor="#d7d4d4" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><!-- ImageReady Slices (register.psd) --><table id="Table_01" width="1025" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr><td colspan="2">

<img src="images_contact/contact_01.gif" width="114" height="120" alt="" /></td>

<td colspan="3"><img src="images_contact/contact_02.gif" width="157"

height="120" alt="" /></td><td colspan="2">

<img src="images_contact/contact_03.gif" width="159" height="120" alt="" /></td>

<td colspan="3"><img src="images_contact/contact_04.gif" width="149"

height="120" alt="" /></td><td colspan="2">

<img src="images_contact/contact_05.gif" width="147" height="120" alt="" /></td>

<td>

31 | P a g e

Page 32: Pro

<img src="images_contact/contact_06.gif" width="130" height="120" alt="" /></td>

<td colspan="3"><img src="images_contact/contact_07.gif" width="168"

height="120" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="120" alt="" /></td>

</tr><tr>

<td><img src="images_contact/contact_08.gif" width="113"

height="16" alt="" /></td><td colspan="14" rowspan="2">

<img src="images_contact/contact_09.gif" width="787" height="87" alt="" /></td>

<td rowspan="15"><img src="images_contact/contact_10.gif" width="124"

height="648" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="16" alt="" /></td>

</tr><tr>

<td rowspan="3"><a href="Welcome.html"><img

src="images_contact/contact_11.gif" name="btn1" width="113" height="106" border="0" onMouseOver="btn1.src='images_contact/contact1_11.gif'" onMouseOut="btn1.src='images_contact/contact_11.gif'" /></a></td>

<td><img src="images_contact/spacer.gif" width="1"

height="71" alt="" /></td></tr><tr>

<td colspan="3"><img src="images_contact/contact_12.gif" width="27"

height="26" alt="" /></td><td colspan="10" rowspan="11"><div align="center"> <table width="718" border="0">

<tr> <th width="350" scope="col"><div align="right" class="style1">Name of Organization</div></th> <th width="11" scope="col">&nbsp;</th> <th width="343" scope="col"><div align="left"> <form name="frm_contact" method="post" action="contact.php"> <label> <input name="organization" type="text" id="organization" size="50"> </label>

32 | P a g e

Page 33: Pro

</div></th> </tr> <tr> <th scope="row"><div align="right" class="style2">Your Name</div></th> <td>&nbsp;</td> <td><label> <input name="name" type="text" size="50"> </label></td> </tr> <tr> <th scope="row"><div align="right"><span class="style1">Your Title</span></div></th> <td>&nbsp;</td> <td><label> <input name="title" type="text" size="50"> </label></td> </tr> <tr> <th scope="row"><div align="right" class="style2">Mailing Address</div></th> <td>&nbsp;</td> <td><input name="homeadda" type="text" size="50"></td> </tr> <tr> <th scope="row"><div align="right"><span class="style2">City</span></div></th> <td>&nbsp;</td> <td><input name="city" type="text" size="50"></td> </tr> <tr> <th scope="row"><div align="right"><span class="style2">State</span></div></th> <td>&nbsp;</td> <td><input name="state" type="text" size="50"></td> </tr> <tr> <th scope="row"><div align="right" class="style2">Zip</div></th> <td>&nbsp;</td> <td><input name="zip" type="text" size="50"></td> </tr> <tr> <th scope="row"><div align="right"><span class="style2">Phone Number</span></div></th> <td>&nbsp;</td> <td><input name="phone" type="text" size="50"></td> </tr> <tr> <th scope="row"><div align="right"><span class="style2">Fax Number</span></div></th>

33 | P a g e

Page 34: Pro

<td>&nbsp;</td> <td><input name="fax" type="text" size="50"></td> </tr> <tr> <th scope="row"><div align="right" class="style2">Email Address</div></th> <td>&nbsp;</td> <td><input name="emailadda" type="text" size="50"></td> </tr> <tr> <th scope="row"><div align="right" class="style2">Comments</div></th> <td>&nbsp;</td> <td><textarea name="comments" cols="38"></textarea></td> </tr> <tr> <th scope="row"><div align="right"> <input name="btn5" type="image" id="btn5" onClick="document.frm_contact.submit();return true;" onMouseOver="btn5.src='images_register/register1_31.gif'"

onMouseOut="btn5.src='images_register/register0_31.gif'" src="images_register/register0_31.gif" alt="submit"

width="124" height="51"> </div></th> <td>&nbsp;</td> <td><div align="left"><input name="btn6" type="image"

id="btn6" onClick="document.frm_contact.reset();return false;" onMouseOver="btn6.src='images_register/register1_33.gif'" onMouseOut="btn6.src='images_register/register0_33.gif'" value = "Reset" src="images_register/register0_33.gif" alt="Reset" width="88" height="51"></div></td> </tr>

</form> </table>

<a href="file:///D|/Online_Exam/Welcome.html"></a></div></td><td>

<img src="images_contact/contact_14.gif" width="28" height="26" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="1"

height="26" alt="" /></td></tr><tr>

<td colspan="2"><img src="images_contact/contact_15.gif" width="2"

height="9" alt="" /></td><td rowspan="3">

<img src="images_contact/contact_16.gif" width="25" height="139" alt="" /></td>

34 | P a g e

Page 35: Pro

<td rowspan="3"><img src="images_contact/contact_17.gif" width="28"

height="139" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="9" alt="" /></td>

</tr><tr>

<td colspan="3"><a href="login.php"><img

src="images_contact/contact_18.gif" name="btn2" width="115" height="104" border="0" onMouseOver="btn2.src='images_contact/contact1_18.gif'" onMouseOut="btn2.src='images_contact/contact_18.gif'" /></a></td>

<td><img src="images_contact/spacer.gif" width="1"

height="104" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><a href="exam.php"><img

src="images_contact/contact_19.gif" name="btn3" width="115" height="106" border="0" id="btn3" onMouseOver="btn3.src='images_contact/contact1_19.gif'" onMouseOut="btn3.src='images_contact/contact_19.gif'" /></a></td>

<td><img src="images_contact/spacer.gif" width="1"

height="26" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_contact/contact_20.gif" width="25"

height="122" alt="" /></td><td rowspan="2">

<img src="images_contact/contact_21.gif" width="28" height="122" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="1"

height="80" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_contact/contact1_22.gif" width="115"

height="96" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="42" alt="" /></td>

</tr><tr>

<td rowspan="2">

35 | P a g e

Page 36: Pro

<img src="images_contact/contact_23.gif" width="25" height="86" alt="" /></td>

<td rowspan="2"><img src="images_contact/contact_24.gif" width="28"

height="86" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="54" alt="" /></td>

</tr><tr>

<td rowspan="2"><a href="aboutus.html"><img

src="images_contact/contact_25.gif" name="btn4" width="113" height="105" border="0" id="btn4" onMouseOver="btn4.src='images_contact/contact1_25.gif'" onMouseOut="btn4.src='images_contact/contact_25.gif'" /></a></td>

<td colspan="2"><img src="images_contact/contact_26.gif" width="2"

height="32" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="32" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><img src="images_contact/contact_27.gif" width="27"

height="124" alt="" /></td><td rowspan="2">

<img src="images_contact/contact_28.gif" width="28" height="124" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="1"

height="73" alt="" /></td></tr><tr>

<td rowspan="4"><img src="images_contact/contact_29.gif" width="113"

height="115" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="51" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><img src="images_contact/contact_30.gif" width="27"

height="47" alt="" /></td><td rowspan="2">

<img src="images_contact/contact_31.gif" width="28" height="47" alt="" /></td>

<td>

36 | P a g e

Page 37: Pro

<img src="images_contact/spacer.gif" width="1" height="35" alt="" /></td>

</tr><tr>

<td colspan="2"><img src="images_contact/contact_32.gif" width="209"

height="12" alt="" /></td><td colspan="2">

<img src="images_contact/contact_33.gif" width="116" height="12" alt="" /></td>

<td><img src="images_contact/contact_34.gif" width="27"

height="12" alt="" /></td><td colspan="2">

<img src="images_contact/contact_35.gif" width="126" height="12" alt="" /></td>

<td colspan="3"><img src="images_contact/contact_36.gif" width="254"

height="12" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="12" alt="" /></td>

</tr><tr>

<td><img src="images_contact/contact_37.gif" width="1"

height="17" alt="" /></td><td colspan="13">

<img src="images_contact/contact_38.gif" width="786" height="17" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="1"

height="17" alt="" /></td></tr><tr>

<td><img src="images_contact/spacer.gif" width="113"

height="1" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="1" height="1" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="1"

height="1" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="25" height="1" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="131"

height="1" alt="" /></td>

37 | P a g e

Page 38: Pro

<td><img src="images_contact/spacer.gif" width="78"

height="1" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="81" height="1" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="35"

height="1" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="27" height="1" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="87"

height="1" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="39" height="1" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="108"

height="1" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="130" height="1" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="16"

height="1" alt="" /></td><td>

<img src="images_contact/spacer.gif" width="28" height="1" alt="" /></td>

<td><img src="images_contact/spacer.gif" width="124"

height="1" alt="" /></td><td></td>

</tr></table>

<!-- End ImageReady Slices --></body></html>

<!- About Index

<html><head><title>Welcome to Webby Online Examination</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head><body bgcolor="#ebeaea" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" vlink="#FFFFFF">

38 | P a g e

Page 39: Pro

<!-- ImageReady Slices (Intro.psd) --><table id="Table_01" width="1024" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr><td colspan="2">

<img src="images/Intro_01.gif" width="114" height="120" alt=""></td>

<td colspan="2"><img src="images/Intro_02.gif" width="157" height="120"

alt=""></td><td colspan="2">

<img src="images/Intro_03.gif" width="159" height="120" alt=""></td>

<td colspan="3"><img src="images/Intro_04.gif" width="149" height="120"

alt=""></td><td colspan="2">

<img src="images/Intro_05.gif" width="147" height="120" alt=""></td>

<td><img src="images/Intro_06.gif" width="130" height="120"

alt=""></td><td colspan="2">

<img src="images/Intro_07.gif" width="168" height="120" alt=""></td>

</tr><tr>

<td rowspan="7"><img src="images/Intro_08.gif" width="113" height="648"

alt=""></td><td colspan="12">

<img src="images/Intro_09.gif" width="787" height="113" alt=""></td>

<td rowspan="7"><img src="images/Intro_10.gif" width="124" height="648"

alt=""></td></tr><tr>

<td colspan="2" rowspan="3"><img src="images/Intro_11.gif" width="2" height="347"

alt=""></td><td colspan="10">

<img src="images/Intro_12.gif" width="785" height="139" alt=""></td>

</tr><tr>

<td colspan="10"><img src="images/Intro_13.gif" width="785" height="122"

alt=""></td></tr>

39 | P a g e

Page 40: Pro

<tr><td colspan="10">

<img src="images/Intro_14.gif" width="785" height="86" alt=""></td>

</tr><tr>

<td colspan="12"><img src="images/Intro_15.gif" width="787" height="124"

alt=""></td></tr><tr>

<td colspan="4"><img src="images/Intro_16.gif" width="236" height="47"

alt=""></td><td colspan="2">

<a href="welcome.html"><img src="images/Intro1_17.gif" name="btn1" width="116" height="47" border="0" onMouseOver="btn1.src=&quot;images/Intro_17.gif&quot;" onMouseOut="btn1.src=&quot;images/Intro1_17.gif&quot;"></a></td>

<td><img src="images/Intro_18.gif" width="27" height="47"

alt=""></td><td colspan="2">

<a href=""javascript:Window.close();""><img src="images/Intro1_19.gif" name="btn2" width="126" height="47" border="0" onMouseOver="btn2.src=&quot;images/Intro_19.gif&quot;" onMouseOut="btn2.src=&quot;images/Intro1_19.gif&quot;"></a></td>

<td colspan="3"><img src="images/Intro_20.gif" width="282" height="47"

alt=""></td></tr><tr>

<td><img src="images/Intro_21.gif" width="1" height="17"

alt=""></td><td colspan="11">

<img src="images/Intro_22.gif" width="786" height="17" alt=""></td>

</tr><tr>

<td><img src="images/spacer.gif" width="113" height="1"

alt=""></td><td>

<img src="images/spacer.gif" width="1" height="1" alt=""></td>

<td><img src="images/spacer.gif" width="1" height="1"

alt=""></td><td>

40 | P a g e

Page 41: Pro

<img src="images/spacer.gif" width="156" height="1" alt=""></td>

<td><img src="images/spacer.gif" width="78" height="1"

alt=""></td><td>

<img src="images/spacer.gif" width="81" height="1" alt=""></td>

<td><img src="images/spacer.gif" width="35" height="1"

alt=""></td><td>

<img src="images/spacer.gif" width="27" height="1" alt=""></td>

<td><img src="images/spacer.gif" width="87" height="1"

alt=""></td><td>

<img src="images/spacer.gif" width="39" height="1" alt=""></td>

<td><img src="images/spacer.gif" width="108" height="1"

alt=""></td><td>

<img src="images/spacer.gif" width="130" height="1" alt=""></td>

<td><img src="images/spacer.gif" width="44" height="1"

alt=""></td><td>

<img src="images/spacer.gif" width="124" height="1" alt=""></td>

</tr></table><!-- End ImageReady Slices --></body></html>

<!- About The Welcome

<html><head><title>Welcome</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>

41 | P a g e

Page 42: Pro

<body bgcolor="#ebeaea" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table id="Table_01" width="1025" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr><td colspan="2">

<img src="images_welcome/Welcome_01.gif" width="114" height="120" alt=""></td>

<td colspan="2"><img src="images_welcome/Welcome_02.gif"

width="157" height="120" alt=""></td><td>

<img src="images_welcome/Welcome_03.gif" width="159" height="120" alt=""></td>

<td><img src="images_welcome/Welcome_04.gif"

width="149" height="120" alt=""></td><td>

<img src="images_welcome/Welcome_05.gif" width="147" height="120" alt=""></td>

<td><img src="images_welcome/Welcome_06.gif"

width="130" height="120" alt=""></td><td colspan="2">

<img src="images_welcome/Welcome_07.gif" width="168" height="120" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="120" alt=""></td></tr><tr>

<td colspan="10"><img src="images_welcome/Welcome_08.gif"

width="1024" height="16" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="16" alt=""></td>

</tr><tr>

<td colspan="2" rowspan="2"><img src="images_welcome/Welcome1_09.gif"

name="btn1" width="114" height="107" onMouseOver="btn1.src='images_welcome/Welcome1_09.gif'" onMouseOut="btn1.src='images_welcome/Welcome_09.gif'"></td>

<td colspan="7"><img src="images_welcome/Welcome_10.gif"

width="786" height="97" alt=""></td><td rowspan="14">

<img src="images_welcome/Welcome_11.gif" width="124" height="632" alt=""></td>

42 | P a g e

Page 43: Pro

<td><img src="images_welcome/spacer.gif" width="1"

height="97" alt=""></td></tr><tr>

<td rowspan="7"><img src="images_welcome/Welcome_12.gif" width="1"

height="306" alt=""></td><td colspan="6" rowspan="3">

<img src="images_welcome/Welcome_13.gif" width="785" height="139" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="10" alt=""></td></tr><tr>

<td colspan="2"><a href="login.php"><img

src="images_welcome/Welcome_14.gif" name="btn2" width="114" height="98" border="0" onMouseOver="btn2.src='images_welcome/Welcome1_14.gif'" onMouseOut="btn2.src='images_welcome/Welcome_14.gif'"></a></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="98" alt=""></td></tr><tr>

<td colspan="2" rowspan="2"><a href="exam.php"><img

src="images_welcome/Welcome_15.gif" name="btn3" width="114" height="103" border="0" id="btn3" onMouseOver="btn3.src='images_welcome/Welcome1_15.gif'" onMouseOut="btn3.src='images_welcome/Welcome_15.gif'"></a></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="31" alt=""></td></tr><tr>

<td colspan="6" rowspan="3"><img src="images_welcome/Welcome_16.gif"

width="785" height="122" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="72" alt=""></td>

</tr><tr>

<td><img src="images_welcome/Welcome_17.gif"

width="113" height="4" alt=""></td><td>

43 | P a g e

Page 44: Pro

<img src="images_welcome/Welcome_18.gif" width="1" height="4" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="4" alt=""></td></tr><tr>

<td colspan="2" rowspan="3"><a href="contact.html"><img

src="images_welcome/Welcome_19.gif" name="btn4" width="114" height="100" border="0" id="btn4" onMouseOver="btn4.src='images_welcome/Welcome1_19.gif'" onMouseOut="btn4.src='images_welcome/Welcome_19.gif'"></a></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="46" alt=""></td></tr><tr>

<td colspan="6" rowspan="3"><img src="images_welcome/Welcome_20.gif"

width="785" height="86" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="45" alt=""></td>

</tr><tr>

<td rowspan="3"><img src="images_welcome/Welcome_21.gif" width="1"

height="96" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="9" alt=""></td>

</tr><tr>

<td rowspan="3"><a href="aboutus.html"><img

src="images_welcome/Welcome_22.gif" name="btn5" width="113" height="96" border="0" id="btn5" onMouseOver="btn5.src='images_welcome/Welcome1_22.gif'" onMouseOut="btn5.src='images_welcome/Welcome_22.gif'"></a></td>

<td rowspan="2"><img src="images_welcome/Welcome_23.gif" width="1"

height="87" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="32" alt=""></td>

</tr><tr>

<td colspan="6" rowspan="3">

44 | P a g e

Page 45: Pro

<img src="images_welcome/Welcome_24.gif" width="785" height="102" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="55" alt=""></td></tr><tr>

<td colspan="2"><img src="images_welcome/Welcome_25.gif" width="2"

height="9" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="9" alt=""></td>

</tr><tr>

<td colspan="3" rowspan="2"><img src="images_welcome/Welcome_26.gif"

width="115" height="124" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="38" alt=""></td>

</tr><tr>

<td colspan="6"><img src="images_welcome/Welcome_27.gif"

width="785" height="86" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="86" alt=""></td>

</tr><tr>

<td><img src="images_welcome/spacer.gif" width="113"

height="1" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="1" height="1" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="1"

height="1" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="156" height="1" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="159"

height="1" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="149" height="1" alt=""></td>

<td>

45 | P a g e

Page 46: Pro

<img src="images_welcome/spacer.gif" width="147" height="1" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="130"

height="1" alt=""></td><td>

<img src="images_welcome/spacer.gif" width="44" height="1" alt=""></td>

<td><img src="images_welcome/spacer.gif" width="124"

height="1" alt=""></td><td></td>

</tr></table></body></html>

PHP Codings

// Active.PHP

<?php

set_time_limit(20);

while ($i=0){ echo "i=$i "; sleep(100); $i--;}

?>

// Contact.PHP<?phpecho "<BR>";echo $organization; echo "<BR>";echo $name;echo "<BR>";echo $title; echo "<BR>";echo $homeadda;echo "<BR>";echo $city; echo "<BR>";echo $state;echo "<BR>";

46 | P a g e

Page 47: Pro

echo $zip; echo "<BR>";echo $phone;echo "<BR>";echo $fax; echo "<BR>";echo $emailadda;echo "<BR>";echo $comments;?>

// Exam.PHP

<?phpinclude ("session.php");if ($usernaame and $semester) {?><html><head><title>register</title><style type="text/css"><!--.style1 {font-family: Verdana, Arial, sans-serif}.style1 {font-size:smaller}.style2 {font-family:Verdana, Arial, sans-serif}.style2 {color:#FF0000}.style2 {font-size:9px}--></style><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head><body bgcolor="#d7d4d4" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><!-- ImageReady Slices (register.psd) --><table id="Table_01" width="1025" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr><td colspan="2">

<img src="images_exam/exam_01.gif" width="114" height="120" alt="" /></td>

<td colspan="3"><img src="images_exam/exam_02.gif" width="157"

height="120" alt="" /></td><td colspan="2">

<img src="images_exam/exam_03.gif" width="159" height="120" alt="" /></td>

<td colspan="3"><img src="images_exam/exam_04.gif" width="149"

height="120" alt="" /></td>

47 | P a g e

Page 48: Pro

<td colspan="2"><img src="images_exam/exam_05.gif" width="147"

height="120" alt="" /></td><td>

<img src="images_exam/exam_06.gif" width="130" height="120" alt="" /></td>

<td colspan="3"><img src="images_exam/exam_07.gif" width="168"

height="120" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="1" height="120" alt="" /></td>

</tr><tr>

<td><img src="images_exam/exam_08.gif" width="113"

height="16" alt="" /></td><td colspan="14" rowspan="2">

<img src="images_exam/exam_09.gif" width="787" height="87" alt="" /></td>

<td rowspan="15"><img src="images_exam/exam_10.gif" width="124"

height="648" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="1" height="16" alt="" /></td>

</tr><tr>

<td rowspan="3"><a href="Welcome.html"><img

src="images_exam/exam_11.gif" name="btn1" width="113" height="106" border="0" onMouseOver="btn1.src='images_exam/exam01_11.gif'" onMouseOut="btn1.src='images_exam/exam_11.gif'" /></a></td>

<td><img src="images_exam/spacer.gif" width="1"

height="71" alt="" /></td></tr><tr>

<td colspan="3"><img src="images_exam/exam_12.gif" width="27"

height="26" alt="" /></td><td colspan="10" rowspan="11"><DIV class="style1"><?php //$subjects = "C";

echo "Hello <b>".$username.", </b>";//echo $password." ".$semester;echo "Welcome to Online Examination Zone by Webby.

Click START BUTTON to Enter Examination Zone... ";echo "<BR><BR><BR>";echo "<HTML><BODY>";

48 | P a g e

Page 49: Pro

echo "<A HREF='examlist.php?username=$username&semester=$semester'>START</A>";

?></DIV></td><td>

<img src="images_exam/exam_14.gif" width="28" height="26" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="1"

height="26" alt="" /></td></tr><tr>

<td colspan="2"><img src="images_exam/exam_15.gif" width="2"

height="9" alt="" /></td><td rowspan="3">

<img src="images_exam/exam_16.gif" width="25" height="139" alt="" /></td>

<td rowspan="3"><img src="images_exam/exam_17.gif" width="28"

height="139" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="1" height="9" alt="" /></td>

</tr><tr>

<td colspan="3"><a href="login.php"><img

src="images_exam/exam_18.gif" name="btn2" width="115" height="104" border="0" id="btn2" onMouseOver="btn2.src='images_exam/exam01_18.gif'" onMouseOut="btn2.src='images_exam/exam_18.gif'" /></a></td>

<td><img src="images_exam/spacer.gif" width="1"

height="104" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_exam/exam01_19.gif" width="115"

height="106" /></td><td>

<img src="images_exam/spacer.gif" width="1" height="26" alt="" /></td>

</tr><tr>

<td rowspan="2"><img src="images_exam/exam_20.gif" width="25"

height="122" alt="" /></td><td rowspan="2">

<img src="images_exam/exam_21.gif" width="28" height="122" alt="" /></td>

<td>

49 | P a g e

Page 50: Pro

<img src="images_exam/spacer.gif" width="1" height="80" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><a href="contact.html"><img

src="images_exam/exam_22.gif" name="btn3" width="115" height="96" border="0" id="btn3" onMouseOver="btn3.src='images_exam/exam01_22.gif'" onMouseOut="btn3.src='images_exam/exam_22.gif'" /></a></td>

<td><img src="images_exam/spacer.gif" width="1"

height="42" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_exam/exam_23.gif" width="25"

height="86" alt="" /></td><td rowspan="2">

<img src="images_exam/exam_24.gif" width="28" height="86" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="1"

height="54" alt="" /></td></tr><tr>

<td rowspan="2"><a href="aboutus.html"><img

src="images_exam/exam_25.gif" name="btn4" width="113" height="105" border="0" id="btn4" onMouseOver="btn4.src='images_exam/exam01_25.gif'" onMouseOut="btn4.src='images_exam/exam_25.gif'" /></a></td>

<td colspan="2"><img src="images_exam/exam_26.gif" width="2"

height="32" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="1" height="32" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><img src="images_exam/exam_27.gif" width="27"

height="124" alt="" /></td><td rowspan="2">

<img src="images_exam/exam_28.gif" width="28" height="124" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="1"

height="73" alt="" /></td></tr><tr>

<td rowspan="4">

50 | P a g e

Page 51: Pro

<img src="images_exam/exam_29.gif" width="113" height="115" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="1"

height="51" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_exam/exam_30.gif" width="27"

height="47" alt="" /></td><td rowspan="2">

<img src="images_exam/exam_31.gif" width="28" height="47" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="1"

height="35" alt="" /></td></tr><tr>

<td colspan="2"><img src="images_exam/exam_32.gif" width="209"

height="12" alt="" /></td><td colspan="2">

<img src="images_exam/exam_33.gif" width="116" height="12" alt="" /></td>

<td><img src="images_exam/exam_34.gif" width="27"

height="12" alt="" /></td><td colspan="2">

<img src="images_exam/exam_35.gif" width="126" height="12" alt="" /></td>

<td colspan="3"><img src="images_exam/exam_36.gif" width="254"

height="12" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="1" height="12" alt="" /></td>

</tr><tr>

<td><img src="images_exam/exam_37.gif" width="1"

height="17" alt="" /></td><td colspan="13">

<img src="images_exam/exam_38.gif" width="786" height="17" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="1"

height="17" alt="" /></td></tr><tr>

<td>

51 | P a g e

Page 52: Pro

<img src="images_exam/spacer.gif" width="113" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="1" height="1"

alt="" /></td><td>

<img src="images_exam/spacer.gif" width="1" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="25"

height="1" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="131" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="78"

height="1" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="81" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="35"

height="1" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="27" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="87"

height="1" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="39" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="108"

height="1" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="130" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="16"

height="1" alt="" /></td><td>

<img src="images_exam/spacer.gif" width="28" height="1" alt="" /></td>

<td><img src="images_exam/spacer.gif" width="124"

height="1" alt="" /></td><td></td>

</tr></table>

52 | P a g e

Page 53: Pro

<!-- End ImageReady Slices --></body></html>

<?php}

else {$message = "You have not logged in!!";$messageencode = base64_encode($message);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$messageencode' </SCRIPT>";}?>

//Examlist.PHP

<?phpinclude ('session.php');?><html><head><title>Welcome! to Webby BCA Online Examination System</title><style language="text/css"><!--.style1 {font-family: Verdana, Arial, sans-serif}.style1 {font-size:smaller}.a{width:50;height:25;color:black;background-color:skyblue;font-size:15;font-family:arial}--></style><basefont face="verdana"/></head>

<body bgcolor="#d7d4d4"><div class="style1">Dear <?php echo "<B>".$username."</B>";?>, you can choose from the following subjects or logout by click on Logout Button:</div><?php

if ($semester == "1st Semester") { ?><form action="takeexam.php?username=$username&semester=$semester" method="post" name="fstSem" onsubmit="return chkRadl()"><script>

function chkRadl(){bchk=falsefor(i=0;i<fstSem.r.length;i++){

53 | P a g e

Page 54: Pro

//alert(sndSem.r[i].checked)if(fstSem.r[i].checked==true){

bchk=true}

}if(bchk){

return true}else{

alert("Please choose any subject!!")return false}

}

</script><script>

document.cookie="test=start"</script><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Choose any subject of First Semester&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="ENG" name=r>Technical English and Report Writing<br><input type=radio Value="MATH" name=r>Mathematical Foundation for Computer Science<br><input type=radio Value="C" name=r>Programming in C<br><input type=radio Value="MP" name=r>Computer Organization and Microprocessors<br><input type=radio Value="STAT" name=r>Probability and Statistics</div><div>&nbsp;</div></fieldset><br><br><br><br><div align="right"><input type="submit" style="cursor:hand" class1="a" value="Go" onmouseover="this.style.color='magenta'"

54 | P a g e

Page 55: Pro

onmouseout="this.style.color='black'" style="border:1 black solid;background-color:white;width:150"></input></div></form><?php }

else if ($semester == "2nd Semester") { ?><form action="takeexam.php?username=$username&semester=$semester" name="sndSem" method="post" onsubmit="return chkRad()">

<script>function chkRad(){

bchk=falsefor(i=0;i<sndSem.r.length;i++){

//alert(sndSem.r[i].checked)if(sndSem.r[i].checked==true){

bchk=true}

}if(bchk){

return true}else{

alert("Please choose any subject!!")return false}

}

</script><script>

document.cookie="test=start"</script><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Choose any subject of Second Semester&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12">

<input type=radio Value="BC" name=r>Business Communication & Personality Development

<br><input type=radio Value="DM" name=r>Discrete Mathematical

Structure with Applications to computer science<br><input type=radio Value="DC" name=r>Data Structures using C<br>

55 | P a g e

Page 56: Pro

<input type=radio Value="COBOL" name=r>Business Data Processing COBOL

<br><input type=radio Value="SAD" name=r>System Analysis & Design

</div><div>&nbsp;</div></fieldset><br>

<div align="right"><input type="submit" style="cursor:hand" class1="a" value="Go" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'" style="border:1 black solid;background-color:white;width:150"></input></div>

</form><?php }

else if ($semester == "3rd Semester") { ?><form action="takeexam.php?username=$username&semester=$semester" method="post" id=form1 name=form1 onsubmit="return chkRadt()">

<script>function chkRadt(){

bchk=falsefor(i=0;i<form1.r.length;i++){

//alert(sndSem.r[i].checked)if(form1.r[i].checked==true){

bchk=true}

}if(bchk){

return true}else{

alert("Please choose any subject!!")return false}

}

</script><script>

document.cookie="test=start"</script><br><br><fieldset width="500">

56 | P a g e

Page 57: Pro

<legend><b style="font-size:17;color:green">&nbsp;Choose any subject of Third Semester&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><br><input type=radio Value="DBMS" name=r>Database Management systems<br><input type=radio Value="OOP" name=r>Object Oriented Programming using C++<br><input type=radio Value="OS" name=r>Operating System<br><input type=radio Value="ACC" name=r>Accounting & Financial Management<br><input type=radio Value="CONA" name=r>Computer Oriented Numerical Methods</div><div>&nbsp;</div></fieldset><br><br><br><br><div align="right"><input type="submit" style="cursor:hand" class1="a" value="Go" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'" style="border:1 black solid;background-color:white;width:150"></input></div></form><?php }

else if($semester=="4th Semester"){ ?><form action="takeexam.php?username=$username&semester=$semester" method="post" id=form1 name=form1 onsubmit="return chkRadv()">

<script>function chkRadv(){

bchk=falsefor(i=0;i<form1.r.length;i++){

//alert(sndSem.r[i].checked)if(form1.r[i].checked==true){

bchk=true}

}if(bchk){

return true}else{

57 | P a g e

Page 58: Pro

alert("Please choose any subject!!")return false}

}

</script><script>

document.cookie="test=start"</script><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Choose any subject of Forth Semester&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><br><input type=radio Value="SS" name=r>System Software<br><input type=radio Value="CG" name=r>Computer Graphics<br><input type=radio Value="SE" name=r>Software Engineering<br><input type=radio Value="UNIX" name=r>Unix Operating System</div><div>&nbsp;</div></fieldset><br><br><br><br><div align="right"><input type="submit" style="cursor:hand" class1="a" value="Go" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'" style="border:1 black solid;background-color:white;width:150"></input></div></form><?php }

else if($semester == "5th Semester") { ?><form action="takeexam.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="post" id=form1 name=form1 onsubmit="return chkRada()">

<script>function chkRada(){

bchk=falsefor(i=0;i<form1.r.length;i++){

//alert(sndSem.r[i].checked)

58 | P a g e

Page 59: Pro

if(form1.r[i].checked==true){bchk=true

}

}if(bchk){

return true}else{

alert("Please choose any subject!!")return false}

}

</script><script>

document.cookie="test=start"</script><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Choose any subject of Fifth Semester&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><br><input type=radio Value="JAVA" name=r>Java Programming & Web Page Development<br><input type=radio Value="ADA" name=r>Analysis & Design of Algorithms<br><input type=radio Value="CN1" name=r>Computer Networks-I<br><input type=radio Value="SM" name=r>Simulation & Modeling</div><div>&nbsp;</div></fieldset><br><br><br><br><div align="right"><input type="submit" style="cursor:hand" class1="a" value="Go" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'" style="border:1 black solid;background-color:white;width:150"></input></div></form><?php }

59 | P a g e

Page 60: Pro

else if($semester == "6th Semester") { ?><form action="takeexam.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="POST" id=form1 name=form1>

<script>function chkRado(){

bchk=falsefor(i=0;i<form1.r.length;i++){

//alert(sndSem.r[i].checked)if(form1.r[i].checked==true){

bchk=true}

}if(bchk){

return true}else{

alert("Please choose any subject!!")return false}

}

</script><script>

document.cookie="test=start"</script><br><br>

<br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Choose any subject of Sixth Semester&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><br><input type="radio" value="CN2" name="r">Computer Networks-II<br><input type="radio" value="AI" name="r">Artificial Intelligence<br><input type="radio" value="IIT" name="r">Internet & Information Technology</div><div>&nbsp;</div></fieldset><br>

60 | P a g e

Page 61: Pro

<br><br><br><div align="right"><input type="submit" style="cursor:hand" class1="a" value="Go" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'" style="border:1 black solid;background-color:white;width:150"></input></div></form><?php } include ('sessionlive.php'); ?></body></html>

//Login.PHP

<html><head><title>Login!!!</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style type="text/css"><!--.style1 {font-family: Verdana, Arial, Helvetica, sans-serif}.style2 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px;} .style1 {font-size: 12px}.style2 {font-size: 8px}.style2 {color: #FF0000}--></style></head><body bgcolor="#ebeaea" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table id="Table_01" width="1025" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr><td colspan="2">

<img src="images_login/login_01.gif" width="114" height="120" alt=""></td>

<td colspan="2"><img src="images_login/login_02.gif" width="157"

height="120" alt=""></td><td colspan="2">

<img src="images_login/login_03.gif" width="159" height="120" alt=""></td>

<td colspan="3"><img src="images_login/login_04.gif" width="149"

height="120" alt=""></td><td colspan="2">

<img src="images_login/login_05.gif" width="147" height="120" alt=""></td>

<td colspan="2">

61 | P a g e

Page 62: Pro

<img src="images_login/login_06.gif" width="130" height="120" alt=""></td>

<td colspan="2"><img src="images_login/login_07.gif" width="168"

height="120" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="120" alt=""></td>

</tr><tr>

<td colspan="15"><img src="images_login/login_08.gif" width="1024"

height="16" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="16" alt=""></td>

</tr><tr>

<td colspan="2"><a href="welcome.html"><img

src="images_login/login_09.gif" name="btn1" width="114" height="107" border="0" id="btn1" onMouseOver="btn1.src='images_login/login1_09.gif'" onMouseOut="btn1.src='images_login/login_09.gif'"></a></td>

<td colspan="12" rowspan="3"><img src="images_login/login_10.gif" width="786"

height="224" alt=""></td><td rowspan="15">

<img src="images_login/login_11.gif" width="124" height="632" alt=""></td>

<td><img src="images_login/spacer.gif" width="1"

height="107" alt=""></td></tr><tr>

<td colspan="2"><img src="images_login/login1_12.gif" width="114"

height="98" border="0" class="style1"></td><td>

<img src="images_login/spacer.gif" width="1" height="98" alt=""></td>

</tr><tr>

<td colspan="2" rowspan="2"><a href="exam.php"><img

src="images_login/login_13.gif" name="btn3" width="114" height="103" border="0" id="btn3" onMouseOver="btn3.src='images_login/login1_13.gif'" onMouseOut="btn3.src='images_login/login_13.gif'"></a></td>

<td><img src="images_login/spacer.gif" width="1" height="19"

alt=""></td>

62 | P a g e

Page 63: Pro

</tr><tr>

<td colspan="3" rowspan="4"><img src="images_login/login_14.gif" width="261"

height="179" alt=""></td> <td colspan="6" rowspan="3"> <form action="loginprocess.php" method="post"

enctype="multipart/form-data" name="frm_login"><table width="339" border="0" align="left">

<tr> <td width="137"><div align="right"><span class="style1">Username</span></div></td> <td width="192"><input name="username" type="text" id="username"></td> </tr> <tr> <td><div align="right"><span class="style1">Password</span></div></td> <td><input name="password" type="password" id="password"></td> </tr> <tr> <td><div align="right"><span class="style1">Semester</span></div></td> <td><select name="semester"> <option selected>1st Semester</option> <option>2nd Semester</option> <option>3rd Semester</option> <option>4th Semester</option> <option>5th Semester</option> <option>6th Semester</option> </select> </td> </tr> <tr> <td>&nbsp;</td> <td><div class="style2"><b> <?php $erruseriddecode=base64_decode($erruserid); echo $erruseriddecode;?> </b></div></td> </tr> <tr> <td>&nbsp;</td> <td><img src="images_login/login_21.gif" name="btn6" width="55" height="25" id="btn6" onClick="document.frm_login.submit();return false;" onMouseOver="btn6.src='images_login/login1_21.gif'" onMouseOut="btn6.src='images_login/login_21.gif'"></td> </tr></table></form></td>

<td colspan="3" rowspan="7"><img src="images_login/login_16.gif" width="174"

height="268" alt=""></td><td>

63 | P a g e

Page 64: Pro

<img src="images_login/spacer.gif" width="1" height="84" alt=""></td>

</tr><tr>

<td><img src="images_login/login_17.gif" width="113"

height="4" alt=""></td><td>

<img src="images_login/login_18.gif" width="1" height="4" alt=""></td>

<td><img src="images_login/spacer.gif" width="1" height="4"

alt=""></td></tr><tr>

<td colspan="2" rowspan="4"><a href="contact.html"><img

src="images_login/login_19.gif" name="btn4" width="114" height="100" border="0" id="btn4" onMouseOver="btn4.src='images_login/login1_19.gif'" onMouseOut="btn4.src='images_login/login_19.gif'"></a></td>

<td><img src="images_login/spacer.gif" width="1" height="74"

alt=""></td></tr><tr>

<td colspan="2" rowspan="8"><img src="images_login/login_20.gif" width="109"

height="160" alt=""></td><td rowspan="2" width="">&nbsp;</td><td colspan="3" rowspan="4">

<img src="images_login/login_22.gif" width="187" height="106" alt=""></td>

<td><img src="images_login/spacer.gif" width="1" height="17"

alt=""></td></tr><tr>

<td rowspan="4"><img src="images_login/login_23.gif" width="1"

height="96" alt=""></td><td colspan="2" rowspan="7">

<img src="images_login/login_24.gif" width="260" height="143" alt=""></td>

<td><img src="images_login/spacer.gif" width="1" height="8"

alt=""></td></tr><tr>

<td rowspan="6">

64 | P a g e

Page 65: Pro

<img src="images_login/login_25.gif" width="55" height="135" alt=""></td>

<td><img src="images_login/spacer.gif" width="1" height="1"

alt=""></td></tr><tr>

<td rowspan="3"><a href="aboutus.html"><img

src="images_login/login_26.gif" name="btn5" width="113" height="96" border="0" id="btn5" onMouseOver="btn5.src=&quot;images_login/login1_22.gif&quot;" onMouseOut="btn5.src=&quot;images_login/login_26.gif&quot;"></a></td>

<td rowspan="2"><img src="images_login/login_27.gif" width="1"

height="87" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="80" alt=""></td>

</tr><tr>

<td colspan="2" rowspan="4"><img src="images_login/login_28.gif" width="117"

height="54" alt=""></td><td colspan="2" rowspan="3">

<a href="register.php"><img src="images_login/login_29.gif" name="btn7" width="98" height="26" border="0" id="btn7" onMouseOver="btn7.src=&quot;images_login/login1_29.gif&quot;" onMouseOut="btn7.src=&quot;images_login/login_29.gif&quot;"></a></td>

<td colspan="2" rowspan="4"><img src="images_login/login_30.gif" width="146"

height="54" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="7" alt=""></td>

</tr><tr>

<td colspan="2"><img src="images_login/login_31.gif" width="2"

height="9" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="9" alt=""></td>

</tr><tr>

<td colspan="3" rowspan="3"><img src="images_login/login_32.gif" width="115"

height="124" alt=""></td><td>

65 | P a g e

Page 66: Pro

<img src="images_login/spacer.gif" width="1" height="10" alt=""></td>

</tr><tr>

<td colspan="2"><img src="images_login/login_33.gif" width="98"

height="28" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="28" alt=""></td>

</tr><tr>

<td colspan="11"><img src="images_login/login_34.gif" width="785"

height="86" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="86" alt=""></td>

</tr><tr>

<td><img src="images_login/spacer.gif" width="113"

height="1" alt=""></td><td>

<img src="images_login/spacer.gif" width="1" height="1" alt=""></td>

<td><img src="images_login/spacer.gif" width="1" height="1"

alt=""></td><td>

<img src="images_login/spacer.gif" width="156" height="1" alt=""></td>

<td><img src="images_login/spacer.gif" width="104"

height="1" alt=""></td><td>

<img src="images_login/spacer.gif" width="55" height="1" alt=""></td>

<td><img src="images_login/spacer.gif" width="54" height="1"

alt=""></td><td>

<img src="images_login/spacer.gif" width="55" height="1" alt=""></td>

<td><img src="images_login/spacer.gif" width="40" height="1"

alt=""></td><td>

<img src="images_login/spacer.gif" width="77" height="1" alt=""></td>

66 | P a g e

Page 67: Pro

<td><img src="images_login/spacer.gif" width="70" height="1"

alt=""></td><td>

<img src="images_login/spacer.gif" width="28" height="1" alt=""></td>

<td><img src="images_login/spacer.gif" width="102"

height="1" alt=""></td><td>

<img src="images_login/spacer.gif" width="44" height="1" alt=""></td>

<td><img src="images_login/spacer.gif" width="124"

height="1" alt=""></td><td></td>

</tr></table></body></html>

//LoginProcess.PHP

<?php include('session.php');

$con=mysql_connect("localhost","root","") or die(mysql_error());mysql_select_db("online_exam_db",$con);$query = "SELECT * FROM login WHERE username='$username'";$result = mysql_query($query);while ($row=mysql_fetch_array($result)){

$usernme = $row["username"];$passwrd = $row["password"];$semestr = $row["semester"];

}echo $usernme;echo $passwrd;echo $semestr;if ($username == ''){

$errunavail = "Username Field is Blank!!!";$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$errunavailencode' </SCRIPT>";}else if ($password == '')

67 | P a g e

Page 68: Pro

{$errunavail = "Password Field is Blank!!!";$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$errunavailencode' </SCRIPT>";}else if ($username != $usernme){

$errunavail = "Invalid Username!!!";$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$errunavailencode' </SCRIPT>";}else if ($password != $passwrd){

$errunavail = "Invalid Password but valid Username!!!";$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$errunavailencode' </SCRIPT>";}else if ($username == $usernaame){

$errunavail = "Session already started!!!";$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$errunavailencode' </SCRIPT>";}else if ($semester != $semestr){

$errunavail = "Please Enter the Correct Semester!!!";$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$errunavailencode' </SCRIPT>";}else{

$con1=mysql_connect("localhost","root","") or die(mysql_error("Could not Connect the database"));

mysql_select_db("online_exam_db",$con1) or die(mysql_error("Could not Select the database"));

$query3="INSERT INTO session(username, semester) values ('$username', '$semester')";

mysql_query($query3);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='exam.php?username=$username&semester=$semester' </SCRIPT>";

}?>

68 | P a g e

Page 69: Pro

//Pagenext.PHP

<?php// database connection stuff hereif (!isset($screen)) $screen = 0;$start = $screen * $rows_per_page;$sql = "SELECT description FROM table_name ";$sql .= "LIMIT $start, $rows_per_page";$result = mysql_query($sql, $db);$rows = mysql_num_rows($result);for ($i = 0; $i < $rows; $i++) { $description = mysql_result($result, $i, 0); echo "\$description = $description<br>\n";}echo "<p><hr></p>\n";// let's create the dynamic links nowif ($screen > 0) { $url = "example.php?screen=" . $screen - 1; echo "<a href=\"$url\">Previous</a>\n";}// page numbering links nowfor ($i = 0; $i < $pages; $i++) { $url = "example.php?screen=" . $i; echo " | <a href=\"$url\">$i</a> | ";}if ($screen < $pages) { $url = "example.php?screen=" . $screen + 1; echo "<a href=\"$url\">Next</a>\n";}?>

//Register.PHP

<html><head><title>Registration Form - Webby</title><style type="text/css"><!--.style1 {font-family: Verdana, Arial, sans-serif}.style1 {font-size:smaller}.style2 {font-family:Verdana, Arial, sans-serif}.style2 {color:#FF0000}.style2 {font-size:9px}--></style></head><body bgcolor="#d7d4d4" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

69 | P a g e

Page 70: Pro

<table id="Table_01" width="1025" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr><td colspan="2">

<img src="images_register/register_01.gif" width="114" height="120" alt="" /></td>

<td colspan="3"><img src="images_register/register_02.gif" width="157"

height="120" alt="" /></td><td colspan="2">

<img src="images_register/register_03.gif" width="159" height="120" alt="" /></td>

<td colspan="3"><img src="images_register/register_04.gif" width="149"

height="120" alt="" /></td><td colspan="2">

<img src="images_register/register_05.gif" width="147" height="120" alt="" /></td>

<td><img src="images_register/register_06.gif" width="130"

height="120" alt="" /></td><td colspan="3">

<img src="images_register/register_07.gif" width="168" height="120" alt="" /></td>

<td><img src="images_register/spacer.gif" width="1"

height="120" alt="" /></td></tr><tr>

<td><img src="images_register/register_08.gif" width="113"

height="16" alt="" /></td><td colspan="14" rowspan="2">

<img src="images_register/register_09.gif" width="787" height="87" alt="" /></td>

<td rowspan="15"><img src="images_register/register_10.gif" width="124"

height="648" alt="" /></td><td>

<img src="images_register/spacer.gif" width="1" height="16" alt="" /></td>

</tr><tr>

<td rowspan="3"><a href="Welcome.html"><img

src="images_register/register_11.gif" name="btn3" width="113" height="106" border="0" onMouseOver="btn3.src='images_register/register1_11.gif'" onMouseOut="btn3.src='images_register/register_11.gif'" /></a></td>

<td>

70 | P a g e

Page 71: Pro

<img src="images_register/spacer.gif" width="1" height="71" alt="" /></td>

</tr><tr>

<td colspan="3"><img src="images_register/register_12.gif" width="27"

height="26" alt="" /></td><form name="frm_reg" action="registerprocess.php"

method="post"><td colspan="10" rowspan="11"><table width="677" border="0">

<tr> <td width="338"><div align="right" class="style1">Username</div></td> <td width="329"><input type="text" name="username" /><div class="style2"><b><?php $errunavaildecode = base64_decode($erruserid); echo $errunavaildecode; ?></b></div></td> </tr> <tr> <td><div align="right"><span class="style1">Name</span></div></td> <td><input type="text" name="fullname" /><div class="style2"><b><?php $errnamedecode = base64_decode($errname); echo $errnamedecode; ?></b></div></td> </tr> <tr> <td><div align="right"><span class="style1">Password</span></div></td> <td><input name="password" type="password" id="password" /> <div class="style2"><b><?php $errpassworddecode = base64_decode($errpassword); echo $errpassworddecode; ?></b></div></td> </tr> <tr> <td><div align="right"><span class="style1">Retype Password </span></div></td> <td><input name="retypepass" type="password" id="retypepass" /> <div class="style2"><b><?php $errretypepassworddecode = base64_decode($errretypepassword); echo $errretypepassworddecode; ?></b></div></td> </tr> <tr> <td><div align="right"><span class="style1">e-mail Address </span></div></td> <td><input type="text" name="emailid"> <div class="style2"><b><?php $erremailiddecode = base64_decode($erremailid); echo $erremailiddecode; ?></b></div></td> </tr> <tr> <td><div align="right"><span class="style1">University/College</span></div></td>

71 | P a g e

Page 72: Pro

<td><input type="text" name="unicol"><div class="style2"><b><?php $errunicoldecode = base64_decode($errunicol); echo

$errunicoldecode; ?></b></div></td> </tr> <tr> <td><div align="right"><span class="style1">Gender</span></div></td> <td><p> <label> <input name="gender" type="radio" value="male" checked> <span class="style1">male</span></label> <label> <input type="radio" name="gender" value="female"> <span class="style1">female</span></label> <br> </p></td> </tr> <tr> <td><div align="right"><span class="style1">Age</span></div></td> <td><input name="age" type="text" size="4" maxlength="2"><div class="style2"><b><?php $erragedecode = base64_decode($errage); echo $erragedecode; ?></b></div></td> </tr> <tr> <td><div align="right"><span class="style1">Semester</span></div></td> <td><select name="sem" id="sem"> <option selected>1st Semester</option> <option>2nd Semester</option> <option>3rd Semester</option> <option>4th Semester</option> <option>5th Semester</option> <option>6th Semester</option> </select></td> </tr> <tr> <td><div align="right"><span class="style1">City</span></div></td> <td><input type="text" name="city"></td> </tr> <tr> <td><div align="right" class="style1">Country</div></td> <td><input type="text" name="country"></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr>

72 | P a g e

Page 73: Pro

<td><div align="right"><input name="btn1" type="image" id="btn1" onClick="document.frm_reg.submit();return false;" onMouseOver="btn1.src='images_register/register1_31.gif'"

onMouseOut="btn1.src='images_register/register0_31.gif'" value = "Submit" src="images_register/register0_31.gif" alt="Login"

width="124" height="51"></div></td> <td><input name="btn2" type="image"

id="btn2" onClick="document.frm_reg.reset();return false;" onMouseOver="btn2.src='images_register/register1_33.gif'" onMouseOut="btn2.src='images_register/register0_33.gif'" value = "Reset" src="images_register/register0_33.gif" alt="Login" width="88" height="51"></td> </tr> </form> </table></td>

<td><img src="images_register/register_14.gif" width="28"

height="26" alt="" /></td><td>

<img src="images_register/spacer.gif" width="1" height="26" alt="" /></td>

</tr><tr>

<td colspan="2"><img src="images_register/register_15.gif" width="2"

height="9" alt="" /></td><td rowspan="3">

<img src="images_register/register_16.gif" width="25" height="139" alt="" /></td>

<td rowspan="3"><img src="images_register/register_17.gif" width="28"

height="139" alt="" /></td><td>

<img src="images_register/spacer.gif" width="1" height="9" alt="" /></td>

</tr><tr>

<td colspan="3"><a href="login.php"><img

src="images_register/register_18.gif" name="btn4" width="115" height="104" border="0" onMouseOver="btn4.src='images_register/register1_18.gif'" onMouseOut="btn4.src='images_register/register_18.gif'" /></a></td>

<td><img src="images_register/spacer.gif" width="1"

height="104" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2">

73 | P a g e

Page 74: Pro

<a href="exam.php"><img src="images_register/register1_19.gif" width="115" height="106" border="0" /></a></td>

<td><img src="images_register/spacer.gif" width="1"

height="26" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_register/register_20.gif" width="25"

height="122" alt="" /></td><td rowspan="2">

<img src="images_register/register_21.gif" width="28" height="122" alt="" /></td>

<td><img src="images_register/spacer.gif" width="1"

height="80" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><a href="contact.html"><img

src="images_register/register_22.gif" name="btn5" width="115" height="96" border="0" id="btn5" onMouseOver="btn5.src='images_register/register1_22.gif'" onMouseOut="btn5.src='images_register/register_22.gif'" /></a></td>

<td><img src="images_register/spacer.gif" width="1"

height="42" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_register/register_23.gif" width="25"

height="86" alt="" /></td><td rowspan="2">

<img src="images_register/register_24.gif" width="28" height="86" alt="" /></td>

<td><img src="images_register/spacer.gif" width="1"

height="54" alt="" /></td></tr><tr>

<td rowspan="2"><a href="aboutus.html"><img

src="images_register/register_25.gif" alt="" width="113" height="105" border="0" /></a></td>

<td colspan="2"><img src="images_register/register_26.gif" width="2"

height="32" alt="" /></td><td>

74 | P a g e

Page 75: Pro

<img src="images_register/spacer.gif" width="1" height="32" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><img src="images_register/register_27.gif" width="27"

height="124" alt="" /></td><td rowspan="2">

<img src="images_register/register_28.gif" width="28" height="124" alt="" /></td>

<td><img src="images_register/spacer.gif" width="1"

height="73" alt="" /></td></tr><tr>

<td rowspan="4"><img src="images_register/register_29.gif" width="113"

height="115" alt="" /></td><td>

<img src="images_register/spacer.gif" width="1" height="51" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><img src="images_register/register_30.gif" width="27"

height="47" alt="" /></td><td rowspan="2">

<img src="images_register/register_31.gif" width="28" height="47" alt="" /></td>

<td><img src="images_register/spacer.gif" width="1"

height="35" alt="" /></td></tr><tr>

<td colspan="2"><img src="images_register/register_32.gif" width="209"

height="12" alt="" /></td><td colspan="2">

<img src="images_register/register_33.gif" width="116" height="12" alt="" /></td>

<td><img src="images_register/register_34.gif" width="27"

height="12" alt="" /></td><td colspan="2">

<img src="images_register/register_35.gif" width="126" height="12" alt="" /></td>

<td colspan="3"><img src="images_register/register_36.gif" width="254"

height="12" alt="" /></td><td>

75 | P a g e

Page 76: Pro

<img src="images_register/spacer.gif" width="1" height="12" alt="" /></td>

</tr><tr>

<td><img src="images_register/register_37.gif" width="1"

height="17" alt="" /></td><td colspan="13">

<img src="images_register/register_38.gif" width="786" height="17" alt="" /></td>

<td><img src="images_register/spacer.gif" width="1"

height="17" alt="" /></td></tr><tr>

<td><img src="images_register/spacer.gif" width="113"

height="1" alt="" /></td><td>

<img src="images_register/spacer.gif" width="1" height="1" alt="" /></td>

<td><img src="images_register/spacer.gif" width="1"

height="1" alt="" /></td><td>

<img src="images_register/spacer.gif" width="25" height="1" alt="" /></td>

<td><img src="images_register/spacer.gif" width="131"

height="1" alt="" /></td><td>

<img src="images_register/spacer.gif" width="78" height="1" alt="" /></td>

<td><img src="images_register/spacer.gif" width="81"

height="1" alt="" /></td><td>

<img src="images_register/spacer.gif" width="35" height="1" alt="" /></td>

<td><img src="images_register/spacer.gif" width="27"

height="1" alt="" /></td><td>

<img src="images_register/spacer.gif" width="87" height="1" alt="" /></td>

<td><img src="images_register/spacer.gif" width="39"

height="1" alt="" /></td><td>

76 | P a g e

Page 77: Pro

<img src="images_register/spacer.gif" width="108" height="1" alt="" /></td>

<td><img src="images_register/spacer.gif" width="130"

height="1" alt="" /></td><td>

<img src="images_register/spacer.gif" width="16" height="1" alt="" /></td>

<td><img src="images_register/spacer.gif" width="28"

height="1" alt="" /></td><td>

<img src="images_register/spacer.gif" width="124" height="1" alt="" /></td>

<td></td></tr>

</table></body></html>

//RegisterProcess.PHP

<?php// Before Username Validation, we will make a copy of the database so that

$con=mysql_connect("localhost","root","") or die(mysql_error());mysql_select_db("online_exam_db",$con);$query = "SELECT * FROM loginform WHERE

username='$username'";$result = mysql_query($query);while ($row=mysql_fetch_array($result)){

$userid=$row["username"];echo $userid;

}//hmm... lets create the username validation now!//echo $username;if ($username == ''){

$errunavail = "Username Field is Blank!!!";$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?erruserid=$errunavailencode' </SCRIPT>";}else if($username == $userid){

$errunavail = "Id is Unavailable!";

77 | P a g e

Page 78: Pro

$errunavailencode = base64_encode($errunavail);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?erruserid=$errunavailencode' </SCRIPT>";}else{

$username_valid = "yes";echo $username_valid;

}// Atlast! end of Username validation!!!

//e-mail validation process coding here !!!if ($emailid == ''){

$erremailid = "e-mail Address Field is Blank!!!";$erremailidencode = base64_encode($erremailid);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?erremailid=$erremailidencode' </SCRIPT>";}else if (!preg_match("/^([a-zA-Z0-9])+([\.a-zA-Z0-9_-])*@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-]+)*\.([a-zA-Z]{2,6})$/", $emailid)){

$erremailid = "e-mail Address is Incorrect!!!";$erremailidencode = base64_encode($erremailid);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?erremailid=$erremailidencode' </SCRIPT>";}else{

$emailaddress_valid = "yes";echo $emailaddress_valid;

}// end of email validation!!!

//Name validation process coding here !!!if ($fullname == ''){

$errname = "Name Field is Blank!!!";$errnameencode = base64_encode($errname);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errname=$errnameencode' </SCRIPT>";}else if (!preg_match("#^[-A-Za-z' ]*$#",$fullname)){

$errname = "Name Field is not filled with characters!!!";$errnameencode = base64_encode($errname);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errname=$errnameencode' </SCRIPT>";}

78 | P a g e

Page 79: Pro

else{

$fullname_valid = "yes";echo $fullname_valid;

}// end of Name validation!!!

//Password Field Validationif($password == ''){

$errpassword = "Password Field is Blank!!!";$errpasswordencode = base64_encode($errpassword);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errpassword=$errpasswordencode' </SCRIPT>";}else{

$password_valid = "yes";echo $password_valid;

}//end of Password Field Validation

//Retype Password Field Validationif($retypepass == ''){

$errretypepassword = "Retype Password Field is Blank!!!";$errretypepasswordencode = base64_encode($errretypepassword);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errretypepassword=$errretypepasswordencode' </SCRIPT>";}else if(strlen($password) != strlen($retypepass)){

$errretypepassword = "Passwords doesnt match!!!";$errretypepasswordencode = base64_encode($errretypepassword);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errretypepassword=$errretypepasswordencode' </SCRIPT>";}else{

$retypepassword_valid = "yes";echo $retypepassword_valid;

}// Uff... Here ends Retype Password Validation

//College/University validation process coding here !!!if ($unicol == ''){

79 | P a g e

Page 80: Pro

$errunicol = "University/College Field is Blank!!!";$errunicolencode = base64_encode($errunicol);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errunicol=$errunicolencode' </SCRIPT>";}else if (!preg_match("#^[-A-Za-z' ]*$#",$unicol)){

$errunicol = "University/College Field is not filled with characters!!!";$errunicolencode = base64_encode($errunicol);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errunicol=$errunicolencode' </SCRIPT>";}else{

$unicol_valid = "yes";echo $unicol_valid;

}//age validation starts here!!!if ($age == ''){

$errage = "Age Field is Blank!!!";$errageencode = base64_encode($errage);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errage=$errageencode' </SCRIPT>";}else if ($age < 17 or $age > 30){

$errage = "Please enter the Correct Age!!!";$errageencode = base64_encode($errage);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errage=$errageencode' </SCRIPT>";}//Problem here :(/*$check_age = is_Integer($age);else if (!$check_age){

$errage = "We think AGE field requires a Integer!!!";$errageencode = base64_encode($errage);echo "<SCRIPT LANGUAGE='JAVASCRIPT'> history.go('register.php?

errage=$errageencode'); </SCRIPT>";}*/else{

$age_valid = "yes";echo "age".$age_valid;

}// end of Age validation!!!

//City validation process coding here !!!if ($city == '')

80 | P a g e

Page 81: Pro

{$errcity = "City Field is Blank!!!";$errcityencode = base64_encode($errcity);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errcity=$errcityencode' </SCRIPT>";}else if (!preg_match("#^[-A-Za-z' ]*$#",$city)){

$errcity = "City doesnt contains characters!!!";$errcityencode = base64_encode($errcity);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errcity=$errcityencode' </SCRIPT>";}else{

$city_valid = "yes";echo $city_valid;

}// end of City validation!!!//College validation process coding here !!!if ($country == ''){

$errcountry = "Country Field is Blank!!!";$errcountryencode = base64_encode($errcountry);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errcountry=$errcountryencode' </SCRIPT>";}else if (!preg_match("#^[-A-Za-z' ]*$#",$country)){

$errcountry = "Country doesnt contains characters!!!";$errcountryencode = base64_encode($errcountry);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='register.php?errcountry=$errcountryencode' </SCRIPT>";}else{

$country_valid = "yes";echo $country_valid;

}// end of Country validation!!!if($username_valid and $emailaddress_valid and $fullname_valid and $password_valid and $retypepassword_valid and $unicol_valid and $age_valid and $city_valid and $country_valid=="yes"){

$con1=mysql_connect("localhost","root","") or die(mysql_error("Could not Connect the database"));

mysql_select_db("online_exam_db",$con1) or die(mysql_error("Could not Select the database"));

$rs1=mysql_query("select * from loginform",$con1) or die(mysql_error("Could not Select the tables"));

81 | P a g e

Page 82: Pro

$query1="INSERT INTO loginform(username, name, password, retypepassword, emailaddress, unicol, gender, age, sem, city, country)";

$query1.="values('$username', '$fullname', '$password', '$retypepass', '$emailid', '$unicol', '$gender', '$age', '$sem', '$city', '$country')";

mysql_query($query1);$query2="INSERT INTO login(username, password, semester) values

('$username', '$password', '$sem')";echo "Insertion Successful!";mysql_query($query2);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='registersucess.php?name=$fullname' </SCRIPT>";}?><HTML><HEAD><STYLE TYPE="text/css">.style1 {font-family: Verdana, Arial, Helvetica, sans-serif}</STYLE><BODY><TABLE width="612" align="center"><TR>

<TD width="564"><span class="style1">Whether Username is Valid</span></TD>

<TD width="27"><?php echo $username_valid; ?></TD></TR><TR>

<TD><span class="style1">Whether Fullname is Valid</span></TD><TD><?php echo $fullname_valid; ?></TD>

</TR><TR>

<TD><span class="style1">Whether Password is Valid</span></TD><TD><?php echo $password_valid; ?></TD>

</TR><TR>

<TD><span class="style1">Whether Retype Password is Valid</span></TD>

<TD><?php echo $retypepassword_valid; ?></TD></TR><TR>

<TD><span class="style1">Whether University / College is Valid</span></TD>

<TD><?php echo $unicol_valid; ?></TD></TR><TR>

<TD><span class="style1">Whether Age is Valid</span></TD><TD><?php echo $age_valid; ?></TD>

</TR><TR>

<TD><span class="style1">Whether City is Valid</span></TD><TD><?php echo $city_valid; ?></TD>

</TR><TR>

<TD><span class="style1">Whether Country is Valid</span></TD>

82 | P a g e

Page 83: Pro

<TD><?php echo $country_valid; ?></TD></TR></TABLE></HTML></BODY>

//RegisterSuccess.PHP

<html><head><title>register</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css"><!--.style1 {font-family: Verdana, Arial, Helvetica, sans-serif}--></style></head><body bgcolor="#d7d4d4" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><!-- ImageReady Slices (register.psd) --><table id="Table_01" width="1025" height="769" border="0" cellpadding="0" cellspacing="0" align="center">

<tr><td colspan="2">

<img src="images_registersucess/registersucess_01.gif" width="114" height="120" alt="" /></td>

<td colspan="3"><img src="images_registersucess/registersucess_02.gif"

width="157" height="120" alt="" /></td><td colspan="2">

<img src="images_registersucess/registersucess_03.gif" width="159" height="120" alt="" /></td>

<td colspan="3"><img src="images_registersucess/registersucess_04.gif"

width="149" height="120" alt="" /></td><td colspan="2">

<img src="images_registersucess/registersucess_05.gif" width="147" height="120" alt="" /></td>

<td><img src="images_registersucess/registersucess_06.gif"

width="130" height="120" alt="" /></td><td colspan="3">

<img src="images_registersucess/registersucess_07.gif" width="168" height="120" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="120" alt="" /></td></tr><tr>

83 | P a g e

Page 84: Pro

<td><img src="images_registersucess/registersucess_08.gif"

width="113" height="16" alt="" /></td><td colspan="14" rowspan="2">

<img src="images_registersucess/registersucess_09.gif" width="787" height="48" alt="" /></td>

<td rowspan="15"><img src="images_registersucess/registersucess_10.gif"

width="124" height="648" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="1" height="16" alt="" /></td>

</tr><tr>

<td rowspan="3"><a href="Welcome.html"><img

src="images_registersucess/registersucess_11.gif" name="btn1" width="113" height="106" border="0" id="btn1" onMouseOver="btn1.src='images_registersucess/registersucess01_11.gif'" onMouseOut="btn1.src='images_registersucess/registersucess_11.gif'" /></a></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="32" alt="" /></td></tr><tr>

<td colspan="3"><img src="images_registersucess/registersucess_12.gif"

width="28" height="65" alt="" /></td><td colspan="10" rowspan="11"><h4 align="center"

class="style1">REGISTRATION SUCCESS!! </h4> <p class="style1">Dear <b><?php echo $name;?></b>,

</p> <p class="style1">

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Welcome to Online Examination developed by Webby!

Now you can ‘LOGIN’, by clicking arrow button in the left pane. If you want to login later, you can enter into 'HOME' and exit

the web application. So Write your Exams Confidently, All the Best! - Webby

Team.</p></td><td>

<img src="images_registersucess/registersucess_14.gif" width="29" height="65" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="65" alt="" /></td></tr><tr>

84 | P a g e

Page 85: Pro

<td colspan="2"><img src="images_registersucess/registersucess_15.gif"

width="2" height="9" alt="" /></td><td rowspan="3">

<img src="images_registersucess/registersucess_16.gif" width="26" height="139" alt="" /></td>

<td rowspan="3"><img src="images_registersucess/registersucess_17.gif"

width="29" height="139" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="1" height="9" alt="" /></td>

</tr><tr>

<td colspan="3"><a href="login.html"><img

src="images_registersucess/registersucess_18.gif" name="btn2" width="115" height="104" border="0" id="btn2" onMouseOver="btn2.src='images_registersucess/registersucess01_18.gif'" onMouseOut="btn2.src='images_registersucess/registersucess_18.gif'" /></a></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="104" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_registersucess/registersucess_19.gif"

width="115" height="106" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="1" height="26" alt="" /></td>

</tr><tr>

<td rowspan="2"><img src="images_registersucess/registersucess_20.gif"

width="26" height="122" alt="" /></td><td rowspan="2">

<img src="images_registersucess/registersucess_21.gif" width="29" height="122" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="80" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_registersucess/registersucess_22.gif"

width="115" height="96" alt="" /></td><td>

85 | P a g e

Page 86: Pro

<img src="images_registersucess/spacer.gif" width="1" height="42" alt="" /></td>

</tr><tr>

<td rowspan="2"><img src="images_registersucess/registersucess_23.gif"

width="26" height="86" alt="" /></td><td rowspan="2">

<img src="images_registersucess/registersucess_24.gif" width="29" height="86" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="54" alt="" /></td></tr><tr>

<td rowspan="2"><img src="images_registersucess/registersucess_25.gif"

width="113" height="105" alt="" /></td><td colspan="2">

<img src="images_registersucess/registersucess_26.gif" width="2" height="32" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="32" alt="" /></td></tr><tr>

<td colspan="3" rowspan="2"><img src="images_registersucess/registersucess_27.gif"

width="28" height="124" alt="" /></td><td rowspan="2">

<img src="images_registersucess/registersucess_28.gif" width="29" height="124" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="73" alt="" /></td></tr><tr>

<td rowspan="4"><img src="images_registersucess/registersucess_29.gif"

width="113" height="115" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="1" height="51" alt="" /></td>

</tr><tr>

<td colspan="3" rowspan="2"><img src="images_registersucess/registersucess_30.gif"

width="28" height="47" alt="" /></td><td rowspan="2">

86 | P a g e

Page 87: Pro

<img src="images_registersucess/registersucess_31.gif" width="29" height="47" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="34" alt="" /></td></tr><tr>

<td colspan="2"><img src="images_registersucess/registersucess_32.gif"

width="208" height="13" alt="" /></td><td colspan="2">

<img src="images_registersucess/registersucess_33.gif" width="116" height="13" alt="" /></td>

<td><img src="images_registersucess/registersucess_34.gif"

width="27" height="13" alt="" /></td><td colspan="2">

<img src="images_registersucess/registersucess_35.gif" width="126" height="13" alt="" /></td>

<td colspan="3"><img src="images_registersucess/registersucess_36.gif"

width="253" height="13" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="1" height="13" alt="" /></td>

</tr><tr>

<td><img src="images_registersucess/registersucess_37.gif"

width="1" height="17" alt="" /></td><td colspan="13">

<img src="images_registersucess/registersucess_38.gif" width="786" height="17" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="17" alt="" /></td></tr><tr>

<td><img src="images_registersucess/spacer.gif" width="113"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="1" height="1" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="1"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="26" height="1" alt="" /></td>

87 | P a g e

Page 88: Pro

<td><img src="images_registersucess/spacer.gif" width="130"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="78" height="1" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="81"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="35" height="1" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="27"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="87" height="1" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="39"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="108" height="1" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="130"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="15" height="1" alt="" /></td>

<td><img src="images_registersucess/spacer.gif" width="29"

height="1" alt="" /></td><td>

<img src="images_registersucess/spacer.gif" width="124" height="1" alt="" /></td>

<td></td></tr>

</table><!-- End ImageReady Slices --></body></html>

//Result.PHP

<?php//iit validation$iitscore = 0;

if ($iit1 == "1")

88 | P a g e

Page 89: Pro

{$iitscore = $iitscore + 10;

}

if ($iit2 == "2"){

$iitscore = $iitscore + 10;}

if ($iit3 == "1"){

$iitscore = $iitscore + 10;}

if ($iit4 == "4"){

$iitscore = $iitscore + 10;}

if ($iit5 == "2"){

$iitscore = $iitscore + 10;}

if ($iit6 == "1"){

$iitscore = $iitscore + 10;}

if ($iit7 == "1"){

$iitscore = $iitscore + 10;}

if ($iit8 == "3"){

$iitscore = $iitscore + 10;}

if ($iit9 == "1"){

$iitscore = $iitscore + 10;}

if ($iit10 == "1"){

$iitscore = $iitscore + 10;}

echo $iitscore;

89 | P a g e

Page 90: Pro

// ai validation

if ($ai1 == "3"){

$aiscore = $aiscore + 10;}

if($ai2 == "2"){

$aiscore = $aiscore + 10;}if($ai3 == "2"){

$aiscore = $aiscore + 10;}if ($ai4 == "1"){

$aiscore = $aiscore + 10;}if ($ai5 == "1"){

$aiscore = $aiscore + 10;}

if($ai6 == "3"){

$aiscore = $aiscore + 10;}if($ai7 == "2"){

$aiscore = $aiscore + 10;}if ($ai8 == "3"){

$aiscore = $aiscore + 10;}if($ai9 == "2"){

$aiscore = $aiscore + 10;}if ($ai10 == "1"){

$aiscore = $aiscore + 10;}

echo $aiscore;

// cn2 validation

90 | P a g e

Page 91: Pro

if ($cn21 == "2"){

$cn2score = $cn2score + 10;}

if($cn22 == "2"){

$cn2score = $cn2score + 10;}if($cn23 == "2"){

$cn2score = $cn2score + 10;}if ($cn24 == "1"){

$cn2score = $cn2score + 10;}if ($cn25 == "4"){

$cn2score = $cn2score + 10;}

if($cn26 == "2"){

$cn2score = $cn2score + 10;}if($cn27 == "2"){

$cn2score = $cn2score + 10;}if ($cn28 == "2"){

$cn2score = $cn2score + 10;}if($cn29 == "2"){

$cn2score = $cn2score + 10;}if ($cn210 == "1"){

$cn2score = $cn2score + 10;}

echo $cn2score;?>

//Session.PHP

91 | P a g e

Page 92: Pro

<?php

$con=mysql_connect("localhost","root","") or die(mysql_error());mysql_select_db("online_exam_db",$con);$query1 = "SELECT * FROM session WHERE

username='$username'";$result = mysql_query($query1);while ($row=mysql_fetch_array($result)){

$usernaame = $row["username"];$semester = $row["semester"];

}?>

//SessionDestroy.PHP

<?php$con=mysql_connect("localhost","root","") or die(mysql_error());mysql_select_db("online_exam_db",$con);$query = "SELECT * FROM session WHERE username='$username'";$result = mysql_query($query,$con);while($row=mysql_fetch_array($result)){

$usernme = $row["username"];$semestr = $row["semester"];

}$query2 = "DELETE FROM session WHERE username='$username'";$result2 = mysql_query($query2)or die(mysql_error());$message = "You have successfully logged out!!";$messageencode = base64_encode($message);echo "<SCRIPT LANGUAGE='JAVASCRIPT'>

window.location='login.php?erruserid=$messageencode' </SCRIPT>";?>

//Sessionlive.PHP

<HTML><HEAD><STYLE LANGUAGE="text/css"><!--.style1 {font-family: Verdana, Arial, sans-serif}.style1 {font-size:smaller}

92 | P a g e

Page 93: Pro

.a{width:50;height:25;color:black;background-color:skyblue;font-size:15;font-family:arial}--></STYLE></HEAD><BODY><DIV CLASS="style1"><?php

echo "<B>Session Details :<BR>-----------------</B><BR>";echo "<B>Username :</B> ".$username."<BR>"."<B>Semester :</B>

".$semester."<BR>"."<B>Session Status :</B> Alive";

echo "<BR>";echo "<B>Session Logout :</B>";echo " <A HREF='sessiondestroy.php?username=$username&semester=$semester'>Logout</A>"; ?></DIV></BODY></HTML>

//TakeExam.PHP

<?phpinclude ("session.php");include ("active.php");?><HTML>

<HEAD><META NAME="GENERATOR" Content="Hypertext

Preprocessor"><STYLE LANGUAGE="text/css">

<!--.style1 {font-family: Verdana, Arial, sans-serif}.style1 {font-size:smaller}.a{width:50;height:25;color:black;background-color:skyblue;font-size:15;font-family:arial}--></STYLE></HEAD>

<BASEFONT face="arial"/></HEAD>

<BODY BGCOLOR="#d7d4d4"><?php

$con=mysql_connect("localhost","root","") or die(mysql_error());mysql_select_db("online_exam_db",$con);$query = "SELECT * FROM student_history WHERE

username='$username'";

93 | P a g e

Page 94: Pro

$result = mysql_query($query);while ($row=mysql_fetch_array($result)){

$userid=$row["username"];$semest=$row["semester"];$score=$row["score"];$grade=$row["grade"];$subje=$row["subject"];

}//echo $sUsrSub;//$subject = $r;?>

<?phpif($r == "C"){ ?>

<br><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){var errmsg="Can't take exam again !"location.href="examlist.php?errormessage=errmsg"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script>

94 | P a g e

Page 95: Pro

<form action="result.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="post" name="frm" onsubmit="return chkRad(frm.r,frm.ri,frm.rii,frm.ro,frm.rp,frm.pr,frm.rq,frm.qr,frm.wr,frm.cr)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Programming in C</b></div><div align="right" id="eTime" style="font-size:13"></div>

<br><fieldset width="500"><legend><b style="FONT-SIZE: 17px; COLOR: green">&nbsp;C was originally developed by &nbsp;</b></legend><div style="FONT-SIZE: 8px">&nbsp;</div><div style="PADDING-LEFT: 12px"><input type=radio Value="" name=c1>H.K.Gundurao<br><input type=radio Value="" name=c1>N.S.Manjunath<br><input type=radio Value="" name=c1>M.N.Nachappa<br><input type=radio Value="4" name=c1>Dennis.M.Ritchie</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="FONT-SIZE: 17px; COLOR: green">&nbsp;C was developed in the year of &nbsp;</b></legend><div style="FONT-SIZE: 8px">&nbsp;</div><div style="PADDING-LEFT: 12px"><input type=radio Value="1" name=ri>70s<br><input type=radio Value="" name=ri>80s<br><input type=radio Value="" name=ri>90s<br><input type=radio Value="" name=ri>60s</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="FONT-SIZE: 17px; COLOR: green">&nbsp;Which one adds the characters of one string to another &nbsp;</b></legend><div style="FONT-SIZE: 8px">&nbsp;</div>

95 | P a g e

Page 96: Pro

<div style="PADDING-LEFT: 12px"><input type=radio Value="1" name=rii>strcat<br><input type=radio Value="" name=rii>strchr<br><input type=radio Value="" name=rii>strcmp<br><input type=radio Value="" name=rii>strcmpi</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="FONT-SIZE: 17px; COLOR: green">&nbsp;Give a short description of isalnum() &nbsp;</b></legend><div style="FONT-SIZE: 8px">&nbsp;</div><div style="PADDING-LEFT: 12px"><input type=radio Value="1" name=ro>Test whether a character is an alphabet or a number<br><input type=radio Value="" name=ro>Character classification macro that returns non-zero if c is a letter(A-z or a-z)<br><input type=radio Value="" name=ro>Tests whether a character is an ascii(0 to 127) character.<br><input type=radio Value="" name=ro>Character classification macro that returns non-zero value if c is a digit('0'-'9')</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="FONT-SIZE: 17px; COLOR: green">&nbsp;printf() command is used for &nbsp;</b></legend><div style="FONT-SIZE: 8px">&nbsp;</div><div style="PADDING-LEFT: 12px"><input type=radio Value="" name=rp>To input a string<br><input type=radio Value="2" name=rp>To display a string<br><input type=radio Value="" name=rp>To concatenate a string to another string<br><input type=radio Value="" name=rp>To convert a string to ascii value</div>

96 | P a g e

Page 97: Pro

<div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Choose the right answer of this expression, 7%5+10.0*10/3 &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=pr>32.0<br><input type=radio Value="" name=pr>21.7<br><input type=radio Value="" name=pr>32.7<br><input type=radio Value="" name=pr>45.76</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The 'break' Statement is used to &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=rq>Continue loops<br><input type=radio Value="2" name=rq>Terminate loops<br><input type=radio Value="" name=rq>Returns into loops<br><input type=radio Value="" name=rq>Divide into loops</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which one is a header file? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=qr>#include"stdio.h"<br><input type=radio Value="" name=qr>printf();<br>

97 | P a g e

Page 98: Pro

<input type=radio Value="" name=qr>scanf();<br><input type=radio Value="" name=qr>getch();</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The inverse of getchar() is &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=wr>getch()<br><input type=radio Value="" name=wr>getche()<br><input type=radio Value="" name=wr>return()<br><input type=radio Value="4" name=wr>putchar()</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which function we used to count the number of characters in the string? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=cr>strlen()<br><input type=radio Value="" name=cr>strcat()<br><input type=radio Value="" name=cr>strcmp()<br><input type=radio Value="" name=cr>strcpy()</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

98 | P a g e

Page 99: Pro

else if ($r == "ENG") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="post" name="frm" onsubmit="return chkRad(frm.c,frm.t,frm.ca,frm.cri,frm.z,frm.za,frm.zb,frm.zm,frm.zn,frm.zt)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Technical English & Report Writing</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which one is not a present tense &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=c>was<br><input type=radio Value="" name=c>is

99 | P a g e

Page 100: Pro

<br><input type=radio Value="" name=c>have<br><input type=radio Value="" name=c>are</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which is Present continuous tense &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=t>I am going to the college<br><input type=radio Value="" name=t>I was gone to the college<br><input type=radio Value="" name=t>I will go to the college<br><input type=radio Value="" name=t>I have to go to the college</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;"The pasent had died before the doctor came", which tense? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ca>Present continuous<br><input type=radio Value="2" name=ca>Past perfect<br><input type=radio Value="" name=ca>Future<br><input type=radio Value="" name=ca>Past continuous</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

100 | P a g e

Page 101: Pro

<legend><b style="font-size:17;color:green">&nbsp;Who got Gitanjali award? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cri>John Smith<br><input type=radio Value="" name=cri>Rogger<br><input type=radio Value="" name=cri>Dannis Rithie<br><input type=radio Value="4" name=cri>Rabindranath Tagore</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The story "Packing" who was written? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=z>Jerome K.Jerome<br><input type=radio Value="" name=z>Willium <br><input type=radio Value="" name=z>Dan W.Patterson<br><input type=radio Value="" name=z>Sarat chandra chttopadyay</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;In an application, where the address was written? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=za>Top left<br><input type=radio Value="" name=za>Top right<br><input type=radio Value="" name=za>Bottom left<br><input type=radio Value="" name=za>Bottom right

101 | P a g e

Page 102: Pro

</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Who wrote "The Listener" poetry? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=zb>Rogger <br><input type=radio Value="" name=zb>Robinson <br><input type=radio Value="3" name=zb>Walter Delamer<br><input type=radio Value="" name=zb>Rabindranath Tagore</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many types of tenses has grammer? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=zm>Two<br><input type=radio Value="" name=zm>One<br><input type=radio Value="3" name=zm>Three<br><input type=radio Value="" name=zm>Four</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Rogger goes to his farm. Here Rogger is a &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12">

102 | P a g e

Page 103: Pro

<input type=radio Value="" name=zn>Adjective<br><input type=radio Value="" name=zn>Pronoun<br><input type=radio Value="" name=zn>Conjunction<br><input type=radio Value="4" name=zn>Noun</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Who wrote "Art of letter writing" ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=zt>Jhon Smith<br><input type=radio Value="" name=zt>Willium<br><input type=radio Value="3" name=zt>Jacob<br><input type=radio Value="" name=zt>Mayor</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "MATH") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60

103 | P a g e

Page 104: Pro

var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="post" name="frm" onsubmit="return chkRad(frm.z,frm.z2,frm.z3,frm.z4,frm.z5,frm.z6,frm.z7,frm.z8,frm.z9,frm.z10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Mathematical Foundation</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many integers between 1 and 567 are divisible by 3, 5 or 7? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=z>200<br><input type=radio Value="" name=z>100<br><input type=radio Value="3" name=z>308<br><input type=radio Value="" name=z>340</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

104 | P a g e

Page 105: Pro

<legend><b style="font-size:17;color:green">&nbsp;A U B, This is shows that A and B are &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=z2>Intersection<br><input type=radio Value="2" name=z2>Union<br><input type=radio Value="" name=z2>Belongs<br><input type=radio Value="" name=z2>Subset</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do u mean by a set theory ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=z3>A set is intuitively understood as a well defined collection of objects.<br><input type=radio Value="" name=z3>A set is a collection of events.<br><input type=radio Value="" name=z3>A set is a numerical collections.<br><input type=radio Value="" name=z3>A set is an integer only.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;If A=(1,2)and B=(3,1,4), then A x B = ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=z4>{(3,1),(3,2),(1,1),(1,2),(4,1),(4,2)}<br><input type=radio Value="" name=z4>{(1,1),(1,2),(2,1),(2,2)}<br><input type=radio Value="3" name=z4>{(1,3),(1,1),(1,4),(2,3),(2,1),(2,4)}<br>

105 | P a g e

Page 106: Pro

<input type=radio Value="" name=z4>{(3,3),(3,1),(3,4),(1,3),(1,1),(1,4),(4,3),(4,1),(4,4)}</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;If U={1,2,3,4,5}is the universal set and A={1,2},B={2,3},C={3,5}then A x B'=? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=z5>{(1,1),(1,4),(1,5),(2,1),(2,4),(2,5)}<br><input type=radio Value="" name=z5>{(3,3),(3,5),(4,3),(4,5),(5,3),(5,5)}<br><input type=radio Value="" name=z5>{(3,1),(3,2),(3,4),(4,1),(4,2),(4,4),(5,1),(5,2),(5,4)}<br><input type=radio Value="" name=z5>{(3,2),(3,3),(4,2),(4,3),(5,2),(5,3)}</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many integers between 1 and 567 are divisible by 3, 5 or 7? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=z6>200<br><input type=radio Value="" name=z6>100<br><input type=radio Value="3" name=z6>308<br><input type=radio Value="" name=z6>340</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

106 | P a g e

Page 107: Pro

<legend><b style="font-size:17;color:green">&nbsp;A U B, This is shows that A and B are &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=z7>Intersection<br><input type=radio Value="2" name=z7>Union<br><input type=radio Value="" name=z7>Belongs<br><input type=radio Value="" name=z7>Subset</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do u mean by a set theory ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=z8>A set is intuitively understood as a well defined collection of objects.<br><input type=radio Value="" name=z8>A set is a collection of events.<br><input type=radio Value="" name=z8>A set is a numerical collections.<br><input type=radio Value="" name=z8>A set is an integer only.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;If A=(1,2)and B=(3,1,4), then A x B = ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=z9>{(3,1),(3,2),(1,1),(1,2),(4,1),(4,2)}<br><input type=radio Value="" name=z9>{(1,1),(1,2),(2,1),(2,2)}<br><input type=radio Value="3" name=z9>{(1,3),(1,1),(1,4),(2,3),(2,1),(2,4)}<br>

107 | P a g e

Page 108: Pro

<input type=radio Value="" name=z9>{(3,3),(3,1),(3,4),(1,3),(1,1),(1,4),(4,3),(4,1),(4,4)}</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;If U={1,2,3,4,5}is the universal set and A={1,2},B={2,3},C={3,5}then A x B'=? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=z10>{(1,1),(1,4),(1,5),(2,1),(2,4),(2,5)}<br><input type=radio Value="" name=z10>{(3,3),(3,5),(4,3),(4,5),(5,3),(5,5)}<br><input type=radio Value="" name=z10>{(3,1),(3,2),(3,4),(4,1),(4,2),(4,4),(5,1),(5,2),(5,4)}<br><input type=radio Value="" name=z10>{(3,2),(3,3),(4,2),(4,3),(5,2),(5,3)}</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "AI") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

108 | P a g e

Page 109: Pro

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}--></script><form action="result.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="get" name="frm"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Artificial Intelligence</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;When LISP language was invented? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ai1>1945<br><input type=radio Value="" name=ai1>1990<br><input type=radio Value="3" name=ai1>1950<br><input type=radio Value="" name=ai1>1940</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Who invented LISP language ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ai2>D.Christopher<br><input type=radio Value="2" name=ai2>John Mccarthy

109 | P a g e

Page 110: Pro

<br><input type=radio Value="" name=ai2>Dan W.Patterson<br><input type=radio Value="" name=ai2>E.C.Charmaik</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of AI? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ai3>Acquired Intelligence<br><input type=radio Value="2" name=ai3>Artificial Intelligence<br><input type=radio Value="" name=ai3>Accounts Information<br><input type=radio Value="" name=ai3>Air India</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Who invented PROLOG ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=ai4>Alain Colmerauer<br><input type=radio Value="" name=ai4>John McCarthy<br><input type=radio Value="" name=ai4>Elein Rich <br><input type=radio Value="" name=ai4>Knight</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of IPL ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div>

110 | P a g e

Page 111: Pro

<div style="padding-left:12"><input type=radio Value="1" name=ai5>Information Processing Language<br><input type=radio Value="" name=ai5>Line Processing Language<br><input type=radio Value="" name=ai5>Internet Protocol Language<br><input type=radio Value="" name=ai5>Information Protocol language</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which year, J.A.Robinson introduced resolution as an inference method &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ai6>1945<br><input type=radio Value="" name=ai6>1990<br><input type=radio Value="3" name=ai6>1965<br><input type=radio Value="" name=ai6>1968</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;AI also has much in common with &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ai7>Medical<br><input type=radio Value="2" name=ai7>Engineering<br><input type=radio Value="" name=ai7>Chemistry<br><input type=radio Value="" name=ai7>biology</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500">

111 | P a g e

Page 112: Pro

<legend><b style="font-size:17;color:green">&nbsp;Edward Feigenbanum summaried about knowledge based System in year &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ai8>1956<br><input type=radio Value="" name=ai8>1965<br><input type=radio Value="3" name=ai8>1977<br><input type=radio Value="" name=ai8>1970</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;In function call (car '(a b c)), which value returned ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=ai9>c<br><input type=radio Value="2" name=ai9>a<br><input type=radio Value="" name=ai9>b<br><input type=radio Value="" name=ai9>b c</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;(append '(a)'(b c)), its returns &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=ai10>(a b c)<br><input type=radio Value="" name=ai10>(a c)<br><input type=radio Value="" name=ai10>(c b)<br><input type=radio Value="" name=ai10>(a b)</div><div>&nbsp;</div>

112 | P a g e

Page 113: Pro

</fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "IIT") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="post" name="frm" onsubmit="return chkRad(frm.iit1,frm.iit2,frm.iit3,frm.iit4,frm.iit5,frm.iit6,frm.iit7,frm.iit8,frm.iit9,frm.iit10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Internet & Information Technology</b></div><div align="right" id="eTime" style="font-size:13"></div>

113 | P a g e

Page 114: Pro

<br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is internet? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=iit1>Message can be send throughout the world all the time.<br><input type=radio Value="" name=iit1>Message can be send only specified area for a particular amount of time.<br><input type=radio Value="" name=iit1>Message can be send only particular area all the time.<br><input type=radio Value="" name=iit1>Message can be send throughout the world for a specified time.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is full form of HTTP? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=iit2>Hyper Text Transfortation Protocol<br><input type=radio Value="2" name=iit2>Hyper Text Transfer Protocol<br><input type=radio Value="" name=iit2>Hyper Text Transmit Protocol<br><input type=radio Value="" name=iit2>Hyper Text tour Protocol</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of IIS ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=iit3>Internet Information Service

114 | P a g e

Page 115: Pro

<br><input type=radio Value="" name=iit3>Intranet Information Service<br><input type=radio Value="" name=iit3>Indian Institute of Service<br><input type=radio Value="" name=iit3>Internet Institute of society</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of WAIS ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=iit4>World Artificial Intelligence System<br><input type=radio Value="" name=iit4>World Association in Society<br><input type=radio Value="" name=iit4>Wide Area Internet System<br><input type=radio Value="4" name=iit4>Wide Area Information System</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of SGML ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=iit5>Standard General Mark-up language<br><input type=radio Value="2" name=iit5>Standard Generalised Mark-up language<br><input type=radio Value="" name=iit5>System General Mark-up language<br><input type=radio Value="" name=iit5>System Generalised Mark-up language</div><div>&nbsp;</div></fieldset><br>

115 | P a g e

Page 116: Pro

<br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of HTML ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=iit6>Hyper Text Mark-up Language<br><input type=radio Value="" name=iit6>Hyper Test Mark-up Language<br><input type=radio Value="" name=iit6>High Text Mark-up Language<br><input type=radio Value="" name=iit6>Hover Text Mark up Language</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of CSS ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=iit7>Cascading Style Sheet<br><input type=radio Value="" name=iit7>Common Style Sheet<br><input type=radio Value="" name=iit7>Cascadeing System Software<br><input type=radio Value="" name=iit7>Cummilative Style Sheet</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;H1 is refferred for what? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=iit8>Paragraph writing<br><input type=radio Value="" name=iit8>Hyper link<br>

116 | P a g e

Page 117: Pro

<input type=radio Value="3" name=iit8>Heading <br><input type=radio Value="" name=iit8>Font style</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Marquee Tag is refferred for what? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=iit9>Moving the text or image left or right <br><input type=radio Value="" name=iit9>Color the fonts<br><input type=radio Value="" name=iit9>Change their Style<br><input type=radio Value="" name=iit9>Make a preformat document</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;HREF is refferred for what? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=iit10>It is linking the pages to the other pages.<br><input type=radio Value="" name=iit10>It is show the values of the other pages.<br><input type=radio Value="" name=iit10>It is print the gif images.<br><input type=radio Value="" name=iit10>It is show the JPEG files.</div><div>&nbsp;</div></fieldset><br><br><div align="center">

117 | P a g e

Page 118: Pro

<input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php } else if ($r == "CN2") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="post" name="frm"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Computer Network-II</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of TCP/IP ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div>

118 | P a g e

Page 119: Pro

<div style="padding-left:12"><input type=radio Value="" name=cn21>Transfer Common Protocol / Intranet Protocol<br><input type=radio Value="2" name=cn21>Transmission Control Protocol / Internet Protocol<br><input type=radio Value="" name=cn21>Text Control Protocol / Internet Protocol<br><input type=radio Value="" name=cn21>Tele Common Protocol / Intranet Protocol</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of MIME ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cn22>Multiple Internet mail Extention<br><input type=radio Value="2" name=cn22>Multipurpose Internet mail Extention<br><input type=radio Value="" name=cn22>Multimedia Internet mail Extention<br><input type=radio Value="" name=cn22>Multiple Intranet mail Extention</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of SMTP ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cn23>Significant mail transmission protocol<br><input type=radio Value="2" name=cn23>Simple mail transmission protocol<br><input type=radio Value="" name=cn23>Short mail transmission protocol

119 | P a g e

Page 120: Pro

<br><input type=radio Value="" name=cn23>Simple mail transfer protocol</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of DHCP ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=cn24>Dynamic host configaration protocol<br><input type=radio Value="" name=cn24>Dynamic horizantal configaration protocol<br><input type=radio Value="" name=cn24>Dynamic host confirm protocol<br><input type=radio Value="" name=cn24>Domain host confirm protocol</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of FQDN ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cn25>Fixed Qualified Domain Name<br><input type=radio Value="" name=cn25>Fixed Quantity Domain Name<br><input type=radio Value="" name=cn25>Fully Quantity Domain Name<br><input type=radio Value="4" name=cn25>Fully Qualified Domain Name</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

120 | P a g e

Page 121: Pro

<legend><b style="font-size:17;color:green">&nbsp;What is the full form of SMTP ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cn26>Significant mail transmission protocol<br><input type=radio Value="2" name=cn26>Simple mail transmission protocol<br><input type=radio Value="" name=cn26>Short mail transmission protocol<br><input type=radio Value="" name=cn26>Simple mail transfer protocol</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of MIME ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cn27>Multiple Internet mail Extention<br><input type=radio Value="2" name=cn27>Multipurpose Internet mail Extention<br><input type=radio Value="" name=cn27>Multimedia Internet mail Extention<br><input type=radio Value="" name=cn27>Multiple Intranet mail Extention</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of MIME ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cn28>Multiple Internet mail Extention<br><input type=radio Value="2" name=cn28>Multipurpose Internet mail Extention<br>

121 | P a g e

Page 122: Pro

<input type=radio Value="" name=cn28>Multimedia Internet mail Extention<br><input type=radio Value="" name=cn28>Multiple Intranet mail Extention</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of SMTP ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=cn29>Significant mail transmission protocol<br><input type=radio Value="2" name=cn29>Simple mail transmission protocol<br><input type=radio Value="" name=cn29>Short mail transmission protocol<br><input type=radio Value="" name=cn29>Simple mail transfer protocol</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of DHCP ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=cn210>Dynamic host configaration protocol<br><input type=radio Value="" name=cn210>Dynamic horizantal configaration protocol<br><input type=radio Value="" name=cn210>Dynamic host confirm protocol<br><input type=radio Value="" name=cn210>Domain host confirm protocol</div><div>&nbsp;</div></fieldset><br><br><div align="center">

122 | P a g e

Page 123: Pro

<input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "MP") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}

var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php?username=<?php echo $username; ?>&semester=<?php echo $semester; ?>" method="post" name="frm" onsubmit="return chkRad(frm.x,frm.x2,frm.x3,frm.x4,frm.x5,frm.x6,frm.x7,frm.x8,frm.x9,frm.x10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Microprocessor & Computer Organization</b></div><div align="right" id="eTime" style="font-size:13"></div>

123 | P a g e

Page 124: Pro

<br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of CPU ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=x>Computer Processing Unit<br><input type=radio Value="2" name=x>Central Processing Unit<br><input type=radio Value="" name=x>Common Path Unit<br><input type=radio Value="" name=x>Cummilative Processing Unit</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Mnemonics ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=x2>The binary instructions are given abbreviated names called mnemonics.<br><input type=radio Value="" name=x2>The alphabetic instructions are given abbreviated names called mnemonics.<br><input type=radio Value="" name=x2>The numerical instructions are given abbreviated names called mnemonics.<br><input type=radio Value="" name=x2>The alpha-numeric instructions are given abbreviated names called mnemonics.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the nibble ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=x3>The group of 2-bits is called nibble.

124 | P a g e

Page 125: Pro

<br><input type=radio Value="" name=x3>The group of 3-bits is called nibble.<br><input type=radio Value="" name=x3>The group of 8-bits is called nibble.<br><input type=radio Value="4" name=x3>The group of 4-bits is called nibble.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;FORTRAN is a what ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=x4>A high level language.<br><input type=radio Value="" name=x4>A middle level language.<br><input type=radio Value="" name=x4>A low level language.<br><input type=radio Value="" name=x4>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is a Compiler ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=x5>It is a program which converts our machine level language into high level language.<br><input type=radio Value="" name=x5>It is a program which converts our high level language into low level language.<br><input type=radio Value="3" name=x5>It is a program which converts our high level language into machine level language.<br><input type=radio Value="" name=x5>It is a program which converts our low level language into high level language.</div><div>&nbsp;</div>

125 | P a g e

Page 126: Pro

</fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of CPU ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=x6>Computer Processing Unit<br><input type=radio Value="2" name=x6>Central Processing Unit<br><input type=radio Value="" name=x6>Common Path Unit<br><input type=radio Value="" name=x6>Cummilative Processing Unit</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Mnemonics ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=x7>The binary instructions are given abbreviated names called mnemonics.<br><input type=radio Value="" name=x7>The alphabetic instructions are given abbreviated names called mnemonics.<br><input type=radio Value="" name=x7>The numerical instructions are given abbreviated names called mnemonics.<br><input type=radio Value="" name=x7>The alpha-numeric instructions are given abbreviated names called mnemonics.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the nibble ? &nbsp;</b></legend>

126 | P a g e

Page 127: Pro

<div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=x8>The group of 2-bits is called nibble.<br><input type=radio Value="" name=x8>The group of 3-bits is called nibble.<br><input type=radio Value="" name=x8>The group of 8-bits is called nibble.<br><input type=radio Value="4" name=x8>The group of 4-bits is called nibble.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;FORTRAN is a what ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=x9>A high level language.<br><input type=radio Value="" name=x9>A middle level language.<br><input type=radio Value="" name=x9>A low level language.<br><input type=radio Value="" name=x9>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is a Compiler ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=x10>It is a program which converts our machine level language into high level language.<br><input type=radio Value="" name=x10>It is a program which converts our high level language into low level language.<br><input type=radio Value="3" name=x10>It is a program which converts our high level language into machine level language.<br>

127 | P a g e

Page 128: Pro

<input type=radio Value="" name=x10>It is a program which converts our low level language into high level language.</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "STAT") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}

//------------------------------------ to be copied --------------------------var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

//------------------------------ eof copy------------------------------</script>

128 | P a g e

Page 129: Pro

<form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.y,frm.y2,frm.y3,frm.y4,frm.y5,frm.y6,frm.y7,frm.y8,frm.y9,frm.y10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Probability & Statistics</b></div><!--copy this-->

<div align="right" id="eTime" style="font-size:13"></div><!--copy end--><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do you mean by 'raw data' ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=y>The data does not give any useful information. It is rather confusing to mind. <br><input type=radio Value="" name=y>The data does give any useful information. It is rather confusing to mind.<br><input type=radio Value="" name=y>The data does not give any useless information. It is rather confusing to mind.<br><input type=radio Value="" name=y>The data does give any useful information and it is rather easy to understand.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do you mean by 'Continuous frequency distribution' ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y2>A frequency distribution in which class intervals are not considered.<br><input type=radio Value="" name=y2>A frequency distribution in which class intervals are not useful.<br><input type=radio Value="3" name=y2>A frequency distribution in which class intervals are considered.<br><input type=radio Value="" name=y2>A frequency distribution in which class intervals are not allowed.</div>

129 | P a g e

Page 130: Pro

<div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Find the Arithmatic mean of 10 nos. 18,15,18,16,17,18,15,19,17,17 ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y3>22<br><input type=radio Value="" name=y3>11<br><input type=radio Value="3" name=y3>17<br><input type=radio Value="" name=y3>10</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;When an ordinary six faced die is thrown find the probability of getting 4 ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y4>1/2<br><input type=radio Value="" name=y4>1/3<br><input type=radio Value="" name=y4>1/5<br><input type=radio Value="4" name=y4>1/6</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is chance that a (1)leap year and (2) non leap year has 53 Sundays ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y5>(3/7,2/7)

130 | P a g e

Page 131: Pro

<br><input type=radio Value="2" name=y5>(3/7,1/7)<br><input type=radio Value="" name=y5>(1/7,2/7)<br><input type=radio Value="" name=y5>(1/7,2/7)</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do you mean by 'raw data' ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=y6>The data does not give any useful information. It is rather confusing to mind. <br><input type=radio Value="" name=y6>The data does give any useful information. It is rather confusing to mind.<br><input type=radio Value="" name=y6>The data does not give any useless information. It is rather confusing to mind.<br><input type=radio Value="" name=y6>The data does give any useful information and it is rather easy to understand.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do you mean by 'Continuous frequency distribution' ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y7>A frequency distribution in which class intervals are not considered.<br><input type=radio Value="" name=y7>A frequency distribution in which class intervals are not useful.<br><input type=radio Value="3" name=y7>A frequency distribution in which class intervals are considered.<br>

131 | P a g e

Page 132: Pro

<input type=radio Value="" name=y7>A frequency distribution in which class intervals are not allowed.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Find the Arithmatic mean of 10 nos. 18,15,18,16,17,18,15,19,17,17 ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y8>22<br><input type=radio Value="" name=y8>11<br><input type=radio Value="3" name=y8>17<br><input type=radio Value="" name=y8>10</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;When an ordinary six faced die is thrown find the probability of getting 4 ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y9>1/2<br><input type=radio Value="" name=y9>1/3<br><input type=radio Value="" name=y9>1/5<br><input type=radio Value="4" name=y9>1/6</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is chance that a (1)leap year and (2) non leap year has 53 Sundays ? &nbsp;</b></legend>

132 | P a g e

Page 133: Pro

<div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=y10>(3/7,2/7)<br><input type=radio Value="2" name=y10>(3/7,1/7)<br><input type=radio Value="" name=y10>(1/7,2/7)<br><input type=radio Value="" name=y10>(1/7,2/7)</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "DM") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)

133 | P a g e

Page 134: Pro

}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.e,frm.e2,frm.e3,frm.e4,frm.e5,frm.e6,frm.e7,frm.e8,frm.e9,frm.e10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Discrete Mathematical Structure with Applications to computer science</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;'and' is denoted by ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=e>^<br><input type=radio Value="" name=e>v<br><input type=radio Value="" name=e>><br><input type=radio Value="" name=e><</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;'If then' is denoted by ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=e2><-><br><input type=radio Value="" name=e2><=><br><input type=radio Value="3" name=e2>-><br><input type=radio Value="" name=e2><-</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

134 | P a g e

Page 135: Pro

<legend><b style="font-size:17;color:green">&nbsp;What is a spanning tree ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=e3>A tree, which is a spanning original graph of a graph G is called spanning tree.<br><input type=radio Value="2" name=e3>A tree, which is a spanning subgraph of a graph G is called Spanning tree.<br><input type=radio Value="" name=e3>A tree, which is a spanning graph of a subgraph G is called Spanning tree.<br><input type=radio Value="" name=e3>A tree, which is a spanning subgraph of a subgraph G is called Spanning tree.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is a self loop ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=e4>The defination of graph permits an edge e of the form e=(x,y).Such an edge e is called self loop.<br><input type=radio Value="2" name=e4>The defination of graph permits an edge e of the form e=(x,x).Such an edge e is called self loop.<br><input type=radio Value="" name=e4>The defination of graph permits an edge e of the form e=(y,y).Such an edge e is called self loop.<br><input type=radio Value="" name=e4>The defination of graph permits an edge e of the form e=(y,x).Such an edge e is called self loop.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is pseudograph ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div>

135 | P a g e

Page 136: Pro

<div style="padding-left:12"><input type=radio Value="" name=e5>The graph having loops and also multiple edges is called pseudograph.<br><input type=radio Value="2" name=e5>The graph having loops but no multiple edges is called psedograph.<br><input type=radio Value="" name=e5>The graph having no loops and also multiple edges is called pseudograph.<br><input type=radio Value="" name=e5>The graph having one loops and also multiple edges is called pseudograph.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;'and' is denoted by ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=e6>^<br><input type=radio Value="" name=e6>v<br><input type=radio Value="" name=e6>><br><input type=radio Value="" name=e6><</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;'If then' is denoted by ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=e7><-><br><input type=radio Value="" name=e7><=><br><input type=radio Value="3" name=e7>-><br><input type=radio Value="" name=e7><-

136 | P a g e

Page 137: Pro

</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is a spanning tree ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=e8>A tree, which is a spanning original graph of a graph G is called spanning tree.<br><input type=radio Value="2" name=e8>A tree, which is a spanning subgraph of a graph G is called Spanning tree.<br><input type=radio Value="" name=e8>A tree, which is a spanning graph of a subgraph G is called Spanning tree.<br><input type=radio Value="" name=e8>A tree, which is a spanning subgraph of a subgraph G is called Spanning tree.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is a self loop ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=e9>The defination of graph permits an edge e of the form e=(x,y).Such an edge e is called self loop.<br><input type=radio Value="2" name=e9>The defination of graph permits an edge e of the form e=(x,x).Such an edge e is called self loop.<br><input type=radio Value="" name=e9>The defination of graph permits an edge e of the form e=(y,y).Such an edge e is called self loop.<br><input type=radio Value="" name=e9>The defination of graph permits an edge e of the form e=(y,x).Such an edge e is called self loop.</div><div>&nbsp;</div></fieldset><br>

137 | P a g e

Page 138: Pro

<br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is pseudograph ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=e10>The graph having loops and also multiple edges is called pseudograph.<br><input type=radio Value="2" name=e10>The graph having loops but no multiple edges is called psedograph.<br><input type=radio Value="" name=e10>The graph having no loops and also multiple edges is called pseudograph.<br><input type=radio Value="" name=e10>The graph having one loops and also multiple edges is called pseudograph.</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "DC") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

138 | P a g e

Page 139: Pro

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.f,frm.f2,frm.f3,frm.f4,frm.f5,frm.f6,frm.f7,frm.f8,frm.f9,frm.f10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Data Structures using C</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give the full form of LIFO ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=f>Low index in high index first out.<br><input type=radio Value="" name=f>Lower index flow out<br><input type=radio Value="3" name=f>Last in first out.<br><input type=radio Value="" name=f>Last index for outer.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What Stack States ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=f2>LIFO<br><input type=radio Value="" name=f2>FIFO<br><input type=radio Value="" name=f2>LILO<br>

139 | P a g e

Page 140: Pro

<input type=radio Value="" name=f2>FILO</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give a short description of isalnum() &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=f3>Test whether a character is an alphabet or a number<br><input type=radio Value="" name=f3>Character classification macro that returns non-zero if c is a letter(A-z or a-z)<br><input type=radio Value="" name=f3>Tests whether a character is an ascii(0 to 127) character.<br><input type=radio Value="" name=f3>Character classification macro that returns non-zero value if c is a digit('0'-'9')</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Pointer is used in what ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=f4>C<br><input type=radio Value="" name=f4>UNIX<br><input type=radio Value="" name=f4>COBOL<br><input type=radio Value="" name=f4>FORTRAN</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

140 | P a g e

Page 141: Pro

<legend><b style="font-size:17;color:green">&nbsp;The opposite of Constructor {} is &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=f5>Friend function<br><input type=radio Value="" name=f5>Pointer<br><input type=radio Value="" name=f5>Union<br><input type=radio Value="4" name=f5>Destructor ~{}</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give the full form of LIFO ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=f6>Low index in high index first out.<br><input type=radio Value="" name=f6>Lower index flow out<br><input type=radio Value="3" name=f6>Last in first out.<br><input type=radio Value="" name=f6>Last index for outer.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What Stack States ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=f7>LIFO<br><input type=radio Value="" name=f7>FIFO<br><input type=radio Value="" name=f7>LILO<br><input type=radio Value="" name=f7>FILO

141 | P a g e

Page 142: Pro

</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give a short description of isalnum() &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=f8>Test whether a character is an alphabet or a number<br><input type=radio Value="" name=f8>Character classification macro that returns non-zero if c is a letter(A-z or a-z)<br><input type=radio Value="" name=f8>Tests whether a character is an ascii(0 to 127) character.<br><input type=radio Value="" name=f8>Character classification macro that returns non-zero value if c is a digit('0'-'9')</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Pointer is used in what ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=f9>C<br><input type=radio Value="" name=f9>UNIX<br><input type=radio Value="" name=f9>COBOL<br><input type=radio Value="" name=f9>FORTRAN</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

142 | P a g e

Page 143: Pro

<legend><b style="font-size:17;color:green">&nbsp;The opposite of Constructor {} is &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=f10>Friend function<br><input type=radio Value="" name=f10>Pointer<br><input type=radio Value="" name=f10>Union<br><input type=radio Value="4" name=f10>Destructor ~{}</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "ACC") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

143 | P a g e

Page 144: Pro

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.u,frm.u2,frm.u3,frm.u4,frm.u5,frm.u6,frm.u7,frm.u8,frm.u9,frm.u10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Accounting & Financial Management</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Journal ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=u>The monthly business transactions are recorded in a book, called Journal.<br><input type=radio Value="2" name=u>The daily business transactions are recorded in a book, called Journal.<br><input type=radio Value="" name=u>The yearly business transactions are recorded in a book, called Journal.<br><input type=radio Value="" name=u>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is purpose of purchase book ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=u2>This book is used to record credit purchase of goods only.<br><input type=radio Value="" name=u2>This book is used to record debit purchase of goods only.<br><input type=radio Value="" name=u2>This book is used to record credit and debit purchase of goods only.<br>

144 | P a g e

Page 145: Pro

<input type=radio Value="" name=u2>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Cash book ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=u3>Cash book is a special journal in which all credit transactions are recorded directly.<br><input type=radio Value="" name=u3>Cash book is a special journal in which all debit transactions are recorded directly.<br><input type=radio Value="3" name=u3>Cash book is a special journal in which all cash transactions are recorded directly.<br><input type=radio Value="" name=u3>Cash book is a special journal in which all credit and debit transactions are recorded directly.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is a balance sheet ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=u4>Balance sheet is just a statement of assets and liabilities.<br><input type=radio Value="" name=u4>Balance sheet is just a statement of capital.<br><input type=radio Value="" name=u4>Balance sheet is just a statement of liabilities.<br><input type=radio Value="" name=u4>Balance sheet is just a statement of only assets.</div><div>&nbsp;</div></fieldset>

145 | P a g e

Page 146: Pro

<br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Formula to calculate break-even point is: &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=u5>BEP=Fixed cost x Sales / Sales - Variable cost.<br><input type=radio Value="" name=u5>BEP=Fixed cost x Profit / Sales - Variable cost.<br><input type=radio Value="" name=u5>BEP=Fixed cost x purchase / Sales - Variable cost.<br><input type=radio Value="" name=u5>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Journal ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=u6>The monthly business transactions are recorded in a book, called Journal.<br><input type=radio Value="2" name=u6>The daily business transactions are recorded in a book, called Journal.<br><input type=radio Value="" name=u6>The yearly business transactions are recorded in a book, called Journal.<br><input type=radio Value="" name=u6>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is purpose of purchase book ? &nbsp;</b>

146 | P a g e

Page 147: Pro

</legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=u7>This book is used to record credit purchase of goods only.<br><input type=radio Value="" name=u7>This book is used to record debit purchase of goods only.<br><input type=radio Value="" name=u7>This book is used to record credit and debit purchase of goods only.<br><input type=radio Value="" name=u7>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Cash book ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=u8>Cash book is a special journal in which all credit transactions are recorded directly.<br><input type=radio Value="" name=u8>Cash book is a special journal in which all debit transactions are recorded directly.<br><input type=radio Value="3" name=u8>Cash book is a special journal in which all cash transactions are recorded directly.<br><input type=radio Value="" name=u8>Cash book is a special journal in which all credit and debit transactions are recorded directly.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is a balance sheet ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=u9>Balance sheet is just a statement of assets and liabilities.

147 | P a g e

Page 148: Pro

<br><input type=radio Value="" name=u9>Balance sheet is just a statement of capital.<br><input type=radio Value="" name=u9>Balance sheet is just a statement of liabilities.<br><input type=radio Value="" name=u9>Balance sheet is just a statement of only assets.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Formula to calculate break-even point is: &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=u10>BEP=Fixed cost x Sales / Sales - Variable cost.<br><input type=radio Value="" name=u10>BEP=Fixed cost x Profit / Sales - Variable cost.<br><input type=radio Value="" name=u10>BEP=Fixed cost x purchase / Sales - Variable cost.<br><input type=radio Value="" name=u10>None of this.</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "UNIX") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])

148 | P a g e

Page 149: Pro

if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.g,frm.g2,frm.g3,frm.g4,frm.g5,frm.g6,frm.g7,frm.g8,frm.g9,frm.g10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Unix Operating System</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give the meaning of portability ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=g>The code can be saved from virus.<br><input type=radio Value="2" name=g>The code can be changed and compiled on a new machine.<br><input type=radio Value="" name=g>The code can be modify and compiled on a new machine.<br><input type=radio Value="" name=g>None of this.</div><div>&nbsp;</div></fieldset>

149 | P a g e

Page 150: Pro

<br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is boot block ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=g2>It is a last block in the system file.<br><input type=radio Value="" name=g2>It is a middle block in the system file.<br><input type=radio Value="3" name=g2>It is a very first block in the system file.<br><input type=radio Value="" name=g2>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the function of command cp ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=g3>It copies the content of one file to another file.<br><input type=radio Value="" name=g3>It copies the content of one file to another file and deletes the contents of first file.<br><input type=radio Value="" name=g3>It send the content of one file to another file.<br><input type=radio Value="" name=g3>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What does the tail filter ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div>

150 | P a g e

Page 151: Pro

<div style="padding-left:12"><input type=radio Value="" name=g4>It displays the last lines from the end of file by default.<br><input type=radio Value="2" name=g4>It displays 10 lines from the end of file by default.<br><input type=radio Value="" name=g4>It displays 2 lines from the end of file by default.<br><input type=radio Value="" name=g4>It displays 20 lines from the end of file by default.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Bourne Shell command prompt is denoted by: &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=g5>"%"<br><input type=radio Value="" name=g5>"$"<br><input type=radio Value="" name=g5>"&"<br><input type=radio Value="" name=g5>"^"</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give the meaning of portability ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=g6>The code can be saved from virus.<br><input type=radio Value="2" name=g6>The code can be changed and compiled on a new machine.<br><input type=radio Value="" name=g6>The code can be modify and compiled on a new machine.

151 | P a g e

Page 152: Pro

<br><input type=radio Value="" name=g6>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is boot block ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=g7>It is a last block in the system file.<br><input type=radio Value="" name=g7>It is a middle block in the system file.<br><input type=radio Value="3" name=g7>It is a very first block in the system file.<br><input type=radio Value="" name=g7>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the function of command cp ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=g8>It copies the content of one file to another file.<br><input type=radio Value="" name=g8>It copies the content of one file to another file and deletes the contents of first file.<br><input type=radio Value="" name=g8>It send the content of one file to another file.<br><input type=radio Value="" name=g8>None of this.</div><div>&nbsp;</div></fieldset><br><br>

152 | P a g e

Page 153: Pro

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What does the tail filter ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=g9>It displays the last lines from the end of file by default.<br><input type=radio Value="2" name=g9>It displays 10 lines from the end of file by default.<br><input type=radio Value="" name=g9>It displays 2 lines from the end of file by default.<br><input type=radio Value="" name=g9>It displays 20 lines from the end of file by default.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Bourne Shell command prompt is denoted by: &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=g10>"%"<br><input type=radio Value="" name=g10>"$"<br><input type=radio Value="" name=g10>"&"<br><input type=radio Value="" name=g10>"^"</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php } else if($r == "CG") { ?><script src="score.js"></script><script>

153 | P a g e

Page 154: Pro

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.b,frm.b2,frm.b3,frm.b4,frm.b5,frm.b6,frm.b7,frm.b8,frm.b9,frm.b10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Computer Graphics</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give the full form of DDA ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=b>Digital Different Analyzer.<br><input type=radio Value="" name=b>Domain Differential Analyzer.<br><input type=radio Value="3" name=b>Digital Differential Analyzer.<br><input type=radio Value="" name=b>None of this.</div>

154 | P a g e

Page 155: Pro

<div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Octrees ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=b2>Octrees are hierarchical tree structure.<br><input type=radio Value="" name=b2>Octrees are horizontal tree structure.<br><input type=radio Value="" name=b2>Octrees are vertical tree structure.<br><input type=radio Value="" name=b2>Octrees are diagonal tree structure.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is track ball ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=b3>Track ball is a ball that can be rotated with the leg.<br><input type=radio Value="" name=b3>Track ball is a ball that can be rotated with the nose.<br><input type=radio Value="3" name=b3>Track ball is a ball that can be rotated with the finger or palm of the hand.<br><input type=radio Value="" name=b3>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Joy stick ? &nbsp;</b>

155 | P a g e

Page 156: Pro

</legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=b4>A joystick contains a small vertical level mounted on a have that is used to move the cursor movement.<br><input type=radio Value="" name=b4>A joystick contains a large vertical level mounted on a have that is used to move the cursor movement.<br><input type=radio Value="" name=b4>A joystick contains a small horizontal level mounted on a have that is used to move the cursor movement.<br><input type=radio Value="" name=b4>A joystick contains a large horizontal level mounted on a have that is used to move the cursor movement.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is tablet ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=b5>The term tablet is used to describe a smooth surface.<br><input type=radio Value="" name=b5>The term tablet is used to describe a rought surface.<br><input type=radio Value="" name=b5>The term tablet is used to describe a simple surface.<br><input type=radio Value="4" name=b5>The term tablet is used to describe a flat surface.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Give the full form of DDA ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=b6>Digital Different Analyzer.

156 | P a g e

Page 157: Pro

<br><input type=radio Value="" name=b6>Domain Differential Analyzer.<br><input type=radio Value="3" name=b6>Digital Differential Analyzer.<br><input type=radio Value="" name=b6>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Octrees ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=b7>Octrees are hierarchical tree structure.<br><input type=radio Value="" name=b7>Octrees are horizontal tree structure.<br><input type=radio Value="" name=b7>Octrees are vertical tree structure.<br><input type=radio Value="" name=b7>Octrees are diagonal tree structure.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is track ball ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=b8>Track ball is a ball that can be rotated with the leg.<br><input type=radio Value="" name=b8>Track ball is a ball that can be rotated with the nose.<br><input type=radio Value="3" name=b8>Track ball is a ball that can be rotated with the finger or palm of the hand.<br><input type=radio Value="" name=b8>None of this.</div><div>&nbsp;</div>

157 | P a g e

Page 158: Pro

</fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Joy stick ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=b9>A joystick contains a small vertical level mounted on a have that is used to move the cursor movement.<br><input type=radio Value="" name=b9>A joystick contains a large vertical level mounted on a have that is used to move the cursor movement.<br><input type=radio Value="" name=b9>A joystick contains a small horizontal level mounted on a have that is used to move the cursor movement.<br><input type=radio Value="" name=b9>A joystick contains a large horizontal level mounted on a have that is used to move the cursor movement.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is tablet ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=b10>The term tablet is used to describe a smooth surface.<br><input type=radio Value="" name=b10>The term tablet is used to describe a rought surface.<br><input type=radio Value="" name=b10>The term tablet is used to describe a simple surface.<br><input type=radio Value="4" name=b10>The term tablet is used to describe a flat surface.</div><div>&nbsp;</div></fieldset><br><br>

158 | P a g e

Page 159: Pro

<div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r = "BC") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.w,frm.w2,frm.w3,frm.w4,frm.w5,frm.w6,frm.w7,frm.w8,frm.w9,frm.w10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Business Communication & Personality Development</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which one is not a present tense &nbsp;</b>

159 | P a g e

Page 160: Pro

</legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=w>was<br><input type=radio Value="" name=w>is<br><input type=radio Value="" name=w>have<br><input type=radio Value="" name=w>are</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which is Present continuous tense &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=w2>I am going to the college<br><input type=radio Value="" name=w2>I was gone to the college<br><input type=radio Value="" name=w2>I will go to the college<br><input type=radio Value="" name=w2>I have to go to the college</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;"The pasent had died before the doctor came", which tense? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=w3>Present continuous<br><input type=radio Value="2" name=w3>Past perfect<br><input type=radio Value="" name=w3>Future<br><input type=radio Value="" name=w3>Past continuous</div><div>&nbsp;</div>

160 | P a g e

Page 161: Pro

</fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Who got Gitanjali award? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=w4>John Smith<br><input type=radio Value="" name=w4>Rogger<br><input type=radio Value="" name=w4>Dannis Rithie<br><input type=radio Value="4" name=w4>Rabindranath Tagore</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The story "Packing" who was written? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=w5>Jerome K.Jerome<br><input type=radio Value="" name=w5>Willium <br><input type=radio Value="" name=w5>Dan W.Patterson<br><input type=radio Value="" name=w5>Sarat chandra chttopadyay</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;In an application, where the address was written? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=w6>Top left<br>

161 | P a g e

Page 162: Pro

<input type=radio Value="" name=w6>Top right<br><input type=radio Value="" name=w6>Bottom left<br><input type=radio Value="" name=w6>Bottom right</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Who wrote "The Listener" poetry? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=w7>Rogger <br><input type=radio Value="" name=w7>Robinson <br><input type=radio Value="3" name=w7>Walter Delamer<br><input type=radio Value="" name=w7>Rabindranath Tagore</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many types of tenses has grammer? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=w8>Two<br><input type=radio Value="" name=w8>One<br><input type=radio Value="3" name=w8>Three<br><input type=radio Value="" name=w8>Four</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

162 | P a g e

Page 163: Pro

<legend><b style="font-size:17;color:green">&nbsp;Rogger goes to his farm. Here Rogger is a &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=w9>Adjective<br><input type=radio Value="" name=w9>Pronoun<br><input type=radio Value="" name=w9>Conjunction<br><input type=radio Value="4" name=w9>Noun</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Who wrote "Art of letter writing" ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=w10>Jhon Smith<br><input type=radio Value="" name=w10>Willium<br><input type=radio Value="3" name=w10>Jacob<br><input type=radio Value="" name=w10>Mayor</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r = "SE") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])

163 | P a g e

Page 164: Pro

if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.h,frm.h2,frm.h3,frm.h4,frm.h5,frm.h6,frm.h7,frm.h8,frm.h9,frm.h10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Software Engineering</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Define Software Engineering? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h>Software Engineering is instructions (Computer Program) that when executed provide desired function and performance.<br><input type=radio Value="2" name=h>Software Engineering is the systematic approach to the development, operation, maintenance, and retirement of software.<br><input type=radio Value="" name=h>Software Engineering is a collection of numerical methods.<br><input type=radio Value="" name=h>None of this.

164 | P a g e

Page 165: Pro

</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which Component is not able in the SRS ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h2>Functionality<br><input type=radio Value="2" name=h2>Internal interfaces.<br><input type=radio Value="" name=h2>Performance.<br><input type=radio Value="" name=h2>External interfaces.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of COCOMO model? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h3>Common Cost Model<br><input type=radio Value="" name=h3>Comersial Constructive Model<br><input type=radio Value="" name=h3>Cummilative Cost Model<br><input type=radio Value="4" name=h3>Constructive Cost Model</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What types of Resource available in the Project Management? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12">

165 | P a g e

Page 166: Pro

<input type=radio Value="" name=h4>One type (Human Resource)<br><input type=radio Value="" name=h4>Two types (Human Resource, Hardware Resource)<br><input type=radio Value="3" name=h4>Three types (Human Resource, Hardware Resource, Software Resource)<br><input type=radio Value="" name=h4>Four types (Human Resource, Hardware Resource, Software Resource, Customer Resource)</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The classic life-cycle paradigm is sometimes called as &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h5>Spiral model<br><input type=radio Value="" name=h5>COCOMO model<br><input type=radio Value="" name=h5>Top-down model<br><input type=radio Value="4" name=h5>Waterfall model</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Define Software Engineering? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h6>Software Engineering is instructions (Computer Program) that when executed provide desired function and performance.<br><input type=radio Value="2" name=h6>Software Engineering is the systematic approach to the development, operation, maintenance, and retirement of software.<br>

166 | P a g e

Page 167: Pro

<input type=radio Value="" name=h6>Software Engineering is a collection of numerical methods.<br><input type=radio Value="" name=h6>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which Component is not able in the SRS ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h7>Functionality<br><input type=radio Value="2" name=h7>Internal interfaces.<br><input type=radio Value="" name=h7>Performance.<br><input type=radio Value="" name=h7>External interfaces.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of COCOMO model? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h8>Common Cost Model<br><input type=radio Value="" name=h8>Comersial Constructive Model<br><input type=radio Value="" name=h8>Cummilative Cost Model<br><input type=radio Value="4" name=h8>Constructive Cost Model</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

167 | P a g e

Page 168: Pro

<legend><b style="font-size:17;color:green">&nbsp;What types of Resource available in the Project Management? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h9>One type (Human Resource)<br><input type=radio Value="" name=h9>Two types (Human Resource, Hardware Resource)<br><input type=radio Value="3" name=h9>Three types (Human Resource, Hardware Resource, Software Resource)<br><input type=radio Value="" name=h9>Four types (Human Resource, Hardware Resource, Software Resource, Customer Resource)</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The classic life-cycle paradigm is sometimes called as &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=h10>Spiral model<br><input type=radio Value="" name=h10>COCOMO model<br><input type=radio Value="" name=h10>Top-down model<br><input type=radio Value="4" name=h10>Waterfall model</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r = "SS") { ?><script src="score.js"></script><script>

168 | P a g e

Page 169: Pro

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.i,frm.i2,frm.i3,frm.i4,frm.i5,frm.i6,frm.i7,frm.i8,frm.i9,frm.i10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>System Software</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Define System Software? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=i>System Software is a collection of programs used to assists the system to perform related works.<br><input type=radio Value="" name=i>System Software is a collection of programs used to assists the system to perform defferent works.<br><input type=radio Value="" name=i>System Software is a collection of data used to assists the system to perform related works.<br>

169 | P a g e

Page 170: Pro

<input type=radio Value="" name=i>System Software is a collection of programs used to assists the system to developed related works.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The language in the form 1's & 0's called &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i2>Assembly language<br><input type=radio Value="" name=i2>Numeric language<br><input type=radio Value="" name=i2>Alphanumeric language<br><input type=radio Value="4" name=i2>Machine language</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many tasks has the lexical phase? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i3>Two<br><input type=radio Value="2" name=i3>Three<br><input type=radio Value="" name=i3>Four<br><input type=radio Value="" name=i3>Five</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which one is a component of System Software? &nbsp;</b></legend>

170 | P a g e

Page 171: Pro

<div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i4>MBR<br><input type=radio Value="" name=i4>MAR<br><input type=radio Value="" name=i4>Add<br><input type=radio Value="4" name=i4>Loaders</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;BALR are used for what ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i5>It is used to compile the base register.<br><input type=radio Value="2" name=i5>It is used to loading the base register.<br><input type=radio Value="" name=i5>It is used to assemble the base register.<br><input type=radio Value="" name=i5>It is used to testing the base register.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Define System Software? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="1" name=i6>System Software is a collection of programs used to assists the system to perform related works.<br><input type=radio Value="" name=i6>System Software is a collection of programs used to assists the system to perform defferent works.<br><input type=radio Value="" name=i6>System Software is a collection of data used to assists the system to perform related works.<br>

171 | P a g e

Page 172: Pro

<input type=radio Value="" name=i6>System Software is a collection of programs used to assists the system to developed related works.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;The language in the form 1's & 0's called &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i7>Assembly language<br><input type=radio Value="" name=i7>Numeric language<br><input type=radio Value="" name=i7>Alphanumeric language<br><input type=radio Value="4" name=i7>Machine language</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many tasks has the lexical phase? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i8>Two<br><input type=radio Value="2" name=i8>Three<br><input type=radio Value="" name=i8>Four<br><input type=radio Value="" name=i8>Five</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which one is a component of System Software? &nbsp;</b></legend>

172 | P a g e

Page 173: Pro

<div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i9>MBR<br><input type=radio Value="" name=i9>MAR<br><input type=radio Value="" name=i9>Add<br><input type=radio Value="4" name=i9>Loaders</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;BALR are used for what ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=i10>It is used to compile the base register.<br><input type=radio Value="2" name=i10>It is used to loading the base register.<br><input type=radio Value="" name=i10>It is used to assemble the base register.<br><input type=radio Value="" name=i10>It is used to testing the base register.</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "COBOL") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")

173 | P a g e

Page 174: Pro

location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.d,frm.d2,frm.d3,frm.d4,frm.d5,frm.d6,frm.d7,frm.d8,frm.d9,frm.d10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Business Data Processing COBOL</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Is COBOL is platform independent ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d>No<br><input type=radio Value="2" name=d>Yes<br><input type=radio Value="" name=d>Not exactly<br><input type=radio Value="" name=d>Some Computers it is Indepent</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500">

174 | P a g e

Page 175: Pro

<legend><b style="font-size:17;color:green">&nbsp;Which level language is COBOL ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d2>Assembly language<br><input type=radio Value="" name=d2>Low level language<br><input type=radio Value="3" name=d2>High level language<br><input type=radio Value="" name=d2>Middle level language</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;In which position we write program in the COBOL compilar ?&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d3>5<br><input type=radio Value="" name=d3>6<br><input type=radio Value="3" name=d3>7<br><input type=radio Value="" name=d3>8</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which comes first? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d4>HALT<br><input type=radio Value="" name=d4>PROCEDURAL<br><input type=radio Value="" name=d4>PROGRAM<br><input type=radio Value="4" name=d4>IDENTIFICATION

175 | P a g e

Page 176: Pro

</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Is COBOL a programming language? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d5>No<br><input type=radio Value="2" name=d5>Yes<br><input type=radio Value="" name=d5>Not exactly<br><input type=radio Value="" name=d5>It is a operating system</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Is COBOL is platform independent ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d6>No<br><input type=radio Value="2" name=d6>Yes<br><input type=radio Value="" name=d6>Not exactly<br><input type=radio Value="" name=d6>Some Computers it is Indepent</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which level language is COBOL ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d7>Assembly language<br>

176 | P a g e

Page 177: Pro

<input type=radio Value="" name=d7>Low level language<br><input type=radio Value="3" name=d7>High level language<br><input type=radio Value="" name=d7>Middle level language</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;In which position we write program in the COBOL compilar ?&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d8>5<br><input type=radio Value="" name=d8>6<br><input type=radio Value="3" name=d8>7<br><input type=radio Value="" name=d8>8</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;Which comes first? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d9>HALT<br><input type=radio Value="" name=d9>PROCEDURAL<br><input type=radio Value="" name=d9>PROGRAM<br><input type=radio Value="4" name=d9>IDENTIFICATION</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500">

177 | P a g e

Page 178: Pro

<legend><b style="font-size:17;color:green">&nbsp;Is COBOL a programming language? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=d10>No<br><input type=radio Value="2" name=d10>Yes<br><input type=radio Value="" name=d10>Not exactly<br><input type=radio Value="" name=d10>It is a operating system</div><div>&nbsp;</div></fieldset><br><br><div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "SAD") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

178 | P a g e

Page 179: Pro

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.v,frm.v2,frm.v3,frm.v4,frm.v5,frm.v6,frm.v7,frm.v8,frm.v9,frm.v10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>System Analysis & Design</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do you mean by SDLC ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v>Source destination life cycle<br><input type=radio Value="" name=v>System destination life cycle<br><input type=radio Value="3" name=v>System development life cycle<br><input type=radio Value="" name=v>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of DFD ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v2>Data flow dictionary<br><input type=radio Value="2" name=v2>Data flow diagram<br><input type=radio Value="" name=v2>Data force diagram<br><input type=radio Value="" name=v2>None of this.</div><div>&nbsp;</div></fieldset><br><br>

179 | P a g e

Page 180: Pro

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form od DD ?&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v3>Document Dictionary<br><input type=radio Value="" name=v3>Demand Draft<br><input type=radio Value="3" name=v3>Data Dictionary<br><input type=radio Value="" name=v3>None of this</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of SE ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v4>Software Engineering<br><input type=radio Value="2" name=v4>Structured English<br><input type=radio Value="" name=v4>Source English<br><input type=radio Value="" name=v4>None of this</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many types of classification has cost and benefits? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v5>One<br><input type=radio Value="" name=v5>Two<br><input type=radio Value="3" name=v5>Three<br>

180 | P a g e

Page 181: Pro

<input type=radio Value="" name=v5>Four</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What do you mean by SDLC ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v6>Source destination life cycle<br><input type=radio Value="" name=v6>System destination life cycle<br><input type=radio Value="3" name=v6>System development life cycle<br><input type=radio Value="" name=v6>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of DFD ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v7>Data flow dictionary<br><input type=radio Value="2" name=v7>Data flow diagram<br><input type=radio Value="" name=v7>Data force diagram<br><input type=radio Value="" name=v7>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form od DD ?&nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12">

181 | P a g e

Page 182: Pro

<input type=radio Value="" name=v8>Document Dictionary<br><input type=radio Value="" name=v8>Demand Draft<br><input type=radio Value="3" name=v8>Data Dictionary<br><input type=radio Value="" name=v8>None of this</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the full form of SE ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v9>Software Engineering<br><input type=radio Value="2" name=v9>Structured English<br><input type=radio Value="" name=v9>Source English<br><input type=radio Value="" name=v9>None of this</div><div>&nbsp;</div></fieldset><br><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;How many types of classification has cost and benefits? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=v10>One<br><input type=radio Value="" name=v10>Two<br><input type=radio Value="3" name=v10>Three<br><input type=radio Value="" name=v10>Four</div><div>&nbsp;</div></fieldset><br><br>

182 | P a g e

Page 183: Pro

<div align="center"><input type="submit" class="" name="button" value="Submit" style="cursor:hand;border:1 black solid;background-color:white;width:150" onmouseover="this.style.color='magenta'" onmouseout="this.style.color='black'"></div></form><?php }

else if($r == "JAVA") { ?><script src="score.js"></script><script>

var clval=document.cookie.split("=")var ckvl=clval[1].split(";")//alert(ckvl[0])if(ckvl[0]!="start"){alert("Can't take exam again !")location.href="Login.htm"}var iCnt=60var tmr=nullfunction window.onload(){

iCnt--eTime.innerHTML="Time Remaining: <b style=color:red>" + iCnt +

"</b> Sec "if (iCnt==0){

alert("Time Out !")iCnt=0window.clearInterval(tmr)document.forms[0].method="POST"document.forms[0].action="result.php"document.forms[0].submit()

}

tmr=setTimeout("window.onload()",1000)}

</script><form action="result.php" method="post" name="frm" onsubmit="return chkRad(frm.vj,frm.vj2,frm.vj3,frm.vj4,frm.vj5,frm.vj6,frm.vj7,frm.vj8,frm.vj9,frm.vj10)"><div align="center" style="FONT-FAMILY: arial;font-size:20;color:green"><b>Java Programming & Web Page Development</b></div><div align="right" id="eTime" style="font-size:13"></div><br><fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is full form of jdk ? &nbsp;</b>

183 | P a g e

Page 184: Pro

</legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=vj>Java dictionary kit<br><input type=radio Value="" name=vj>Java description kit<br><input type=radio Value="3" name=vj>Java devolpment kit<br><input type=radio Value="" name=vj>None of this.</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is the function of java compiler ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=vj2>Its transalates the java source code into its bytecode<br><input type=radio Value="" name=vj2>Its transalates the java bytecode into its source code<br><input type=radio Value="3" name=vj2>Its interpreter executes the class file which is generated by compiler<br><input type=radio Value="" name=vj2>Its java debugger jdb.exe enables to bebug our java program</div><div>&nbsp;</div></fieldset><br><br>

<fieldset width="500"><legend><b style="font-size:17;color:green">&nbsp;What is Java Virtual Machine ? &nbsp;</b></legend><div style="font-size:8">&nbsp;</div><div style="padding-left:12"><input type=radio Value="" name=vj3>Its a key addition to JDK1.1 is support for JavaBeans, a component model for java<br><input type=radio Value="2" name=vj3>Its sits,metaphorically, between the java program and the machine it is running

184 | P a g e

Page 185: Pro

<br><input type=radio Value="" name=vj3>It is capable od Dynamically linking in new class libraries, methods and objects<br><input type=radio Value="" name=vj3>It is used to run java applets</div><div>&nbsp;</div></fieldset><br><br></form><?php }

else {

echo "No records found in the subject : $r";}include 'sessionlive.php';?>

<P>&nbsp;</P>

</BODY></HTML>

//Temp.PHP

<?phpecho $r;

?>

185 | P a g e

Page 186: Pro

BIBILOGRAPHY

BIBILOGRAPHY

1. HTML BLACKBOOK by Steven Holzner2. The Complete Reference SQL Second Edition 3. PHP 5 – Wrox Press.

186 | P a g e