Skip to content
  • 0 Votes
    2 Posts
    478 Views
    zareenZ
    Solution: <html> <title></title> <body> <h1><U>Patient Admit Card</U></h1></div> <form action="form.php" method="POST"> <table> <tr> <td width="50%">Patient Name </td> <td width="50%"><INPUT TYPE = "text" NAME="pName" ></td> </tr> <tr> <td width="50%">Patient ID</td> <td width="50%"><INPUT TYPE = "text" NAME="pID"></td> </tr> <tr> <td width="50%">Patient Age</td> <td width="50%"><INPUT TYPE = "number" NAME="pAge"></td> </tr> <tr> <td width="50%"> Mobile Number</td> <td width="50%"> <INPUT TYPE = "text" NAME="mNumber"></td> </tr> <tr> <td width="50%">Gender Male</td> <td width="50%"><input type="radio" name="gender"> Male <input type="radio" name="gender"> Female</td> </tr> <tr> <td width="50%">Patient Address</td> <td width="50%"><INPUT TYPE = "Text" NAME="pAddress"></td> </tr> <tr> <td width="50%">City</td> <td width="50%"><INPUT TYPE = "Text" NAME="city"></td> <tr> <td width="50%">District</td> <td width="50%"><INPUT TYPE = "Text" NAME="district"></td> </tr> <tr> <td width="50%">Doctor Name</td> <td width="50%"><INPUT TYPE = "Text" NAME="dName"></td> </tr> <tr> </table> <table> <tr> <td width="0%"><INPUT TYPE = "submit" NAME="Submit"></td> <td width="0%"><INPUT TYPE = "reset" NAME="Reset"></td> </tr> </table> </form> </body> </html>
  • 0 Votes
    12 Posts
    4k Views
    Dua ZahraD
    Sameer took a loan of Rs 10,000 at the interest rate of 12% per annum for 5 years. Show that the compound interest is greater than simple interest on the given amount plz send me solution
  • 0 Votes
    5 Posts
    9k Views
    zaasmiZ
    CS402_Assignment#01_Solution_cyberian.pk.docx [image: 1573729827421-e9b034a6-5143-46d8-a96c-bfbeda3e1b82-image.png]
  • 0 Votes
    4 Posts
    1k Views
    zareenZ
    https://youtu.be/GXSZ-g5FTA4 Idea! [image: 1573729250367-e9b5adc9-884f-4606-8f28-a844df74c5f7-image.png]
  • 0 Votes
    7 Posts
    2k Views
    zareenZ
    Answers to Questions: Answer no. 1: User Characteristics or type of users [5 Marks] Admin Student Teacher Cleric Verifier (External User) Answer no. 2: Functional Requirements (at least 5) [10 Marks] User and Admin registration. User management through System Admin (Admin can only approve the joining requests of users). Student and Teacher Data Entry. Semester Information interface to insert relevant Data. Course Information interface to insert relevant Data. Grades Information interface to insert relevant Data. Fee Collection Interface Certificate Generation through system. Certificate Verification Interface
  • 0 Votes
    2 Posts
    951 Views
    zareenZ
    Solution Code: <?php $header = "Virtual University of Pakistan"; $quicklist = "QUICK LINKS"; $about = "About Us"; $admissions = "Admissions"; $faculties = "Faculties"; $student = "Student"; $campuses = "Virtual Campuses"; $contact_us = "Contact Us"; $intro = "INTRODUCTION"; $content = "Pakistan’s first University based completely on modern Information and Communication Technologies."; $footer = "M.A Jinnah Campus, Defence Road,<br> Off Raiwind Road, Lahore"; ?> <html> <head> <title>Assignment No. 1 (Solution) - Fall 2019</title> </head> <body bgcolor="#CCCCCC"> <table width="1800" border="0" align="center" cellpadding="20" cellspacing="0"> <tr> <td height="200" colspan="2" align="center" valign="middle" bgcolor="#CC6633"><h1><?php echo $header; ?></h1></td> </tr> <tr> <td width="300" rowspan="2" align="center" valign="top" bgcolor="#FF9966"><h3><?php echo $quicklist; ?></h3> <a href="#"><?php echo $about; ?></a><br /><br /> <a href="#"><?php echo $admissions; ?></a><br /><br /> <a href="#"><?php echo $faculties; ?></a><br /><br /> <a href="#"><?php echo $student; ?></a><br /><br /> <a href="#"><?php echo $campuses; ?></a><br /><br /> <a href="#"><?php echo $contact_us; ?></a><br /><br /> </td> <td width="1500" height="50" align="center" valign="top" bgcolor="#FFDECE"><h3><?php echo $intro; ?></h3></td> </tr> <tr> <td height="500" align="left" valign="top" bgcolor="#FFDECE"><p><?php echo $content; ?></p></td> </tr> <tr> <td height="140" colspan="2" align="center" valign="middle" bgcolor="#CC6633"><h4><?php echo $footer; ?></h4></td> </tr> </table> </body> </html> Ideas 2 <?php $header = "Virtual University of Pakistan"; $quicklist = "QUICK LINKS"; $about = "About Us"; $admissions = "Admissions"; $faculties = "Faculties"; $student = "Student"; $campuses = "Virtual Campuses"; $contact_us = "Contact Us"; $intro = "INTRODUCTION"; $content = "Pakistan’s first University based completely on modern Information and Communication Technologies."; $footer = "M.A Jinnah Campus, Defence Road,<br> Off Raiwind Road, Lahore"; ?> <html> <head> <title>Assignment No. 1 (Solution) - Fall 2019</title> </head> <body bgcolor="#CCCCCC"> <table width="1800" border="0" align="center" cellpadding="20" cellspacing="0"> <tr> <td height="200" colspan="2" align="center" valign="middle" bgcolor="#CC6633"><h1><?php echo $header; ?></h1></td> </tr> <tr> <td width="300" rowspan="2" align="center" valign="top" bgcolor="#FF9966"><h3><?php echo $quicklist; ?></h3> <a href="#"><?php echo $about; ?></a><br /><br /> <a href="#"><?php echo $admissions; ?></a><br /><br /> <a href="#"><?php echo $faculties; ?></a><br /><br /> <a href="#"><?php echo $student; ?></a><br /><br /> <a href="#"><?php echo $campuses; ?></a><br /><br /> <a href="#"><?php echo $contact_us; ?></a><br /><br /> </td> <td width="1500" height="50" align="center" valign="top" bgcolor="#FFDECE"><h3><?php echo $intro; ?></h3></td> </tr> <tr> <td height="500" align="left" valign="top" bgcolor="#FFDECE"><p><?php echo $content; ?></p></td> </tr> <tr> <td height="140" colspan="2" align="center" valign="middle" bgcolor="#CC6633"><h4><?php echo $footer; ?></h4></td> </tr> </table> </body> </html>
  • 0 Votes
    1 Posts
    427 Views
    No one has replied
  • 1 Votes
    4 Posts
    2k Views
    Muhammad Habib Ur RehmanM
    • CIA triad Question No. 1 [Marks: 10] Suppose you are attempting the exam for the post of Information Security Engineer in the ABC organization. During the exam, you are given the following real life scenarios associated with the three main pillars of informing security (C.I.A) : Suppose fifty cancer patient’s treatment is being carried out by Dr. Ali in the well-reputed cancer hospital in Lahore. All the medical information of those patients is stored in the table of the hospital’s database system. Dr. Ali suggests medicine to the patients on the basis of patient’s relevant information stored in the database. If another doctor who has also legal rights to access this table of the database, unintentionally changes the information that can mislead the patient treatment. CSS Exam’s applicants are checking their results online through the FPSC website but the FPSC website takes too much time to load. The AZB limited Bank makes a plan for launching a new offer for capturing customers in a market but this plan leaked to its competitors. A bank’s ATM is not responding due to general backend server error. If a renowned shoe brand’s prices and specifications available on online shopping stores are changed by an unauthorized person. If you are replying to the messages of your friend, then it should be received in the original form as it is sent by you. Upon the last date of applying for the online job application, the related website is not responding due to some technical problems which makes the candidates unable to submit their job application on time. Student’s board results information (Marks, CGPA) is considered very important and it should be available only for that specific student and their parents rather than other class students. A developer’s salary slip in the software house should not be visible to any other developer. Student’s semester grades are posted on the class Facebook group by some unauthorized student. After carefully reading and analyzing the above-mentioned scenarios and fill the following table: Scenario. No Associated C.I.A security component 1 2 3 4 5 6 7 8 9 10 kindly i want solution of this question plzzz
  • 0 Votes
    6 Posts
    2k Views
    zareenZ
    Solution Code <!DOCTYPE html> <html> <head> <style> #nav { display:block; padding:5px; border-width:0.5px; width:500px; } </style> <title></title> </head> <body style="background-color:powderblue; align: center;"> <center> <img src="Student_support_system.jpg"> <form> <table > <tr> <td> Student Name: </td> <td> <input type="text" name="stdname"> </td> </tr> <tr> <td> Roll No: </td> <td> <input type="text" name="rollno"> </td> </tr> <tr> <td> Mobile No: </td> <td> <input type="text" name="mobileno"> </td> </tr> <tr> <td>Choose type of Problem:</td> <td> <input type="radio" name="issue" checked> Email realted Issue<br> <input type="radio" name="issue" > LMS related Issue<br> <input type="radio" name="issue" > Password related Issue<br> <input type="radio" name="issue" > Exam related Issue<br> <input type="radio" name="issue" > Result related Issue<br> <input type="radio" name="issue" > Other </td> </tr> <tr> <td>Comments:</td> <td><input type="text" multiple name="Comments" style="width: 300px; height:100px;"> </td> </tr> <tr> <br> <td></td> <td > <input type="submit" style="width:100px;" value="Submit" style="";></td> </tr> </table> </form> </center> </body> </html>
  • 0 Votes
    1 Posts
    471 Views
    No one has replied
  • 0 Votes
    6 Posts
    1k Views
    zaasmiZ
    https://www.youtube.com/watch?v=P_4x86p5dVI
  • 0 Votes
    1 Posts
    413 Views
    No one has replied
  • 0 Votes
    1 Posts
    580 Views
    No one has replied
  • 0 Votes
    1 Posts
    433 Views
    No one has replied
  • 0 Votes
    1 Posts
    334 Views
    No one has replied
  • 0 Votes
    1 Posts
    310 Views
    No one has replied
Reputation Earning
How to Build a $1,000/Month World CUP LIVE Matches Live Cricket Streaming
Ads
File Sharing
Stats

0

Online

3.0k

Users

2.8k

Topics

8.5k

Posts
Popular Tags
Online User
| |