Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

Introduction to Database Technology - DT Results Introduction to Database Technology - DT Results Year Students Pass Fail (no resit) Resit Withdrawn 2012/13 60 40 7 3 10 2013/14 45 25 5 15 0...

1 answer below »
Introduction to Database Technology - DT Results
        Introduction to Database Technology - DT Results
            Year    Students    Pass    Fail (no resit)    Resit    Withdrawn
    2012/13    60    40    7    3    10
    2013/14    45    25    5    15    0
    2014/15    50    35    3    7    5
    2015/16    48    30    8    3    7
    
Problem Solving for Programming – PfP Results
        Problem Solving for Programming – PfP Results
            Year    Students    Pass    Fail (no resit)    Resit    Withdrawn
    2012/13    65    45    7    3    10
    2013/14    55    35    5    15    0
    2014/15    60    45    2    10    3
    2015/16    38    30    8    3    7
    
PHP Task
The Department of Computer Science (DCS) at Birkbeck College, have requested that you develop a prototype main page and link this page to prototype secure intranet pages. Your system should include the following aspects:
7. Main index page, which should provide some dummy content, as an introduction to DCS, plus the following links:
Intranet: links to a secure page which provides access to module results via a login 

Administrator: links to a registration page/form via admin password, which if successful, allows an administrator to set up new members of staff. 

8. Log-in: A member of staff should be able to log-in to the intranet by entering a valid username and password in a form. 

9. Log-out: A logged in member of staff will be able to log-out of the system from any page, and a message will be displayed to this effect returning the user to the index page. 

10. Admin page: A page for an administrator to register a new member of staff to allow them to login to the intranet. The data required for a member of staff to be registered as a user is: 
Title, First name, Surname, Email, Username and Password 

11. The administrator user name should be “admin” and the password should be “dcsadmin01” for testing purposes). 

12. Secure intranet content pages: An intranet index page which links to 3 module results pages (data provided in the FMA resources folder in Moodle). These three pages should show module results for the following modules:
Web Programming using PHP - P1 Results 

Introduction to Database Technology – DT Results 

Problem Solving for Programming – PfP Results 

13. The user should be able to
owse between pages while maintaining their logged-in or out state, regardless of their
owser settings. N.B. the module results pages should only be accessible if a member of staff has successfully logged in (including the administrator user), otherwise only the index page should be available. 

14. All pages should display a link or form to log-in or out depending on the cu
ent user status. If the user is logged in, the page should display the username of the logged in user and if a user logs out they should be redirected to the index page. 

A user navigating to any of the public content pages should be able to view the content directly whether they are logged-in or logged-out. The pages should clearly display their user status (apart from the URL links to https:
www.dcs.
k.ac.uk/... pages). If a logged out user tries to access the intranet pages, they should be politely requested to log-in.
There is no specific requirement to apply any CSS or other formatting to your html output, however, you may do so, if you feel that it adds to the presentation of your solution.
However, the output should use htmlentities and validate co
ectly under the DOCTYPE you have specified.
Hints
Your solution should be as robust as possible while providing a usable experience for users; remember the motto of form submission "Never trust user input". Any security flaws in your final design should be clearly outlined in a learning/development log, which you will need to submit as one of your deliverables. It may also be helpful to carefully consider the following before you begin any coding:
·         ⚫Consider what data you will need to store, what the validation criteria is for it and where you will store it. You are not permitted to use a MySQL (or other) database for this assignment, so you will probably want to store user data in an external file. Consider the security implications of using such a file and set appropriate permissions settings on the server. 

·         ⚫Remember the quickest way to write this application is to avoid repeating any PHP or HTML code. Thus, you will need to do a design and plan out some useful functions and/or include files that you could write once and then reuse throughout your project. 

·         ⚫You will need to maintain state between pages. It would, therefore be useful to review the class slides on PHP security and session and cookie management. 

·         ⚫You will need to modify the given module results data files to facilitate secure access and maintain a session; you are allowed to rename them to have a .php extension to facilitate this. 


__MACOSX/._k
k/.DS_Store
__MACOSX/k/._.DS_Store
k/index.php
?php
    require 'includes/functions.php';
    startSession();
?
!DOCTYPE html PUBLIC "-
W3C
DTD XHTML 1.0 Strict
EN" "http:
www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
html xmlns="http:
www.w3.org/1999/xhtml" xml:lang="en" lang="en"
            Home - Computer Science Department Bi<br />eck<br />title<br />        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" <br />        <link rel="stylesheet" type="text/css" href="css<br />esults.css" <br />    <br />head<br />ody<br />    <div<br />        <?php <br />            <br /> require the loginform and related code<br />            require 'includes/loginform.php';<br />        ?<br />    <br />div<br />    <div<br />        <?php <br />            <br /> require the menu and related code<br />            require 'includes/menu.php';<br />        ?<br />    <br />div<br />    <h1>Birkbeck University<br />h1<br />    <h1>Department of Computer Science<br />h1<br />    <?php<br />        $pageRef = 'Home'; <br />        displaySessionData($pageRef);<br />    ?<br />    <p>Welcome to Birkbeck University Computer Science Department.<br />p<br />    <p>The Department of Computer Science and Information Systems at Birkbeck is one of the first computing departments established in the UK, cele<br />ating our 60th anniversary in 2017. We provide a stimulating teaching and research environment for both part-time and full-time students, and a friendly, inclusive space for learning, working and collaborating.<br />p<br />    <?php<br />        <br /> require the foote<br />        include 'includes/footer.php';<br />    ?<br />ody<br />html<br />__MACOSX/k/._index.php<br />__MACOSX/k/._css<br />k/webprogramming.php<br />?php <br />    require 'includes/functions.php';<br />    startSession();<br />    if (isset($_SESSION['password'])) { <br />equired to access this page, else} access denied message, page bottom.<br />?<br />!DOCTYPE html PUBLIC "-<br />W3C<br />DTD XHTML 1.0 Strict<br />EN" "http:<br />www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"<br />html xmlns="http:<br />www.w3.org/1999/xhtml" xml:lang="en" lang="en"<br />    <head<br />        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" <br />        <title>Web Programming using PHP - P1 Results<br />title<br />        <link rel="stylesheet" type="text/css" href="css<br />esults.css" <br />    <br />head<br />ody<br />    <div<br />        <?php <br />        <br /> require the loginform and related code<br />        require 'includes/loginform.php';<br />        ?<br />    <br />div<br />    <div<br />        <?php<br />        <br /> require the menu and related code <br />        require 'includes/menu.php';<br />        ?<br />    <br />div<br />    <h1>Birkbeck University<br />h1<br />    <h1>Department of Computer Science<br />h1<br />    <?php<br />        $pageRef = 'Web Programming using PHP'; <br />        displaySessionData($pageRef);<br />    ?<br />    <div<br />        <?php<br />            <br /> require the submenu and related code <br />            require 'includes/submenu.php';<br />        ?<br />    <br />div<br />    <div<br />    <br />        <h2>Web Programming using PHP - P1 Results<br />h2<br />        <table<br />             <t<br />                <th>Yea<br />th<br />                <th>Students<br />th<br />                <th>Pass<br />th<br />                <th>Fail (no resit)<br />th<br />                <th>Resit<br />th<br />                <th>Withdrawn<br />th<br />            <br />t<br />             <t<br />                <td>2012/13<br />td<br />                <td>50<br />td<br />                <td>30<br />td<br />                <td>5<br />td<br />                <td>5<br />td<br />                <td>10<br />td<br />            <br />t<br />            <t<br />                <td>2013/14<br />td<br />                <td>60<br />td<br />                <td>35<br />td<br />                <td>5<br />td<br />                <td>12<br />td<br />                <td>8<br />td<br />            <br />t<br />             <t<br />                <td>2014/15<br />td<br />                <td>45<br />td<br />                <td>20<br />td<br />                <td>3<br />td<br />                <td>7<br />td<br />                <td>15<br />td<br />            <br />t<br />             <t<br />                <td>2015/16<br />td<br />                <td>40<br />td<br />                <td>25<br />td<br />                <td>3<br />td<br />                <td>5<br />td<br />                <td>7<br />td<br />            <br />t<br />        <br />table<br />    <br />div<br />    <?php<br />        <br /> require the footer and related code<br />        include 'includes/footer.php';<br />        }else{<br />            echo "<p>You cannot access this page without logging in<br />p>";<br />        }<br />    ?<br />ody>        <br />html<br />__MACOSX/k/._webprogramming.php<br />__MACOSX/k/._includes<br />k/intranet.php<br />?php <br />    require 'includes/functions.php';<br />    startSession();<br />    if (isset($_SESSION['password'])) { <br />password in sessions needed to access this page, e<br />or at page bottom.<br />?<br />!DOCTYPE html PUBLIC "-<br />W3C<br />DTD XHTML 1.0 Strict<br />EN" "http:<br />www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"<br />html xmlns="http:<br />www.w3.org/1999/xhtml" xml:lang="en" lang="en"<br />    <head<br />        <title>Home - Computer Science Department Bi<br />eck<br />title<br />        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" <br />        <link rel="stylesheet" type="text/css" href="css<br />esults.css" <br />    <br />head<br />ody<br />    <div<br />        <?php <br />        <br /> require the loginform and related code<br />        require 'includes/loginform.php';<br />        ?<br />    <br />div<br />    <div<br />        <?php<br />            <br /> require the menu and related code <br />            require 'includes/menu.php';<br />        ?<br />    <br />div<br />    <h1>Birkbeck University<br />h1<br />    <h1>Department of Computer Science<br />h1<br />    <?php<br />        $pageRef = 'Intranet'; <br />        displaySessionData($pageRef);<br />    ?<br />    <p>    Welcolme to the Intranet page, click on the link to see the results:<br />p<br />    <div<br />        <?php<br />        <br /> require the submenu and related code<br />        require 'includes/submenu.php';<br />        ?<br />    <br />div<br />    <p>Each of the pages contain the results for the related module.<br />p<br />    <?php<br />        <br /> require the footer and related code<br />        include 'includes/footer.php';<br />        }else{<br />            echo "<p>You cannot access this page without logging in<br />p>";<br />        }<br />    ?<br />ody<br />html<br />__MACOSX/k/._intranet.php<br />k/admin.php<br />?php <br />    require 'includes/functions.php';<br />    startSession();<br />    if (isset($_SESSION['password']) AND <br /> username and password required to access the admin page. <br />        (isset($_SESSION['username']) AND <br /> else message 'You cannot access this page...' at the bottom of the page.<br />         ($_SESSION['username'] === 'admin') AND<br />         ($_SESSION['password'] === 'dcsadmin01'))) {<br /> <br />?<br />!DOCTYPE html PUBLIC "-<br />W3C<br />DTD XHTML 1.0 Strict<br />EN" "http:<br />www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"<br />html xmlns="http:<br />www.w3.org/1999/xhtml" xml:lang="en" lang="en"<br />    <head<br />        <title>Home - Computer Science Department Bi<br />eck<br />title<br />        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" <br />        <link rel="stylesheet" type="text/css" href="css<br />esults.css" <br />    <br />head<br />ody<br />    <div<br />    <?php <br />        require 'includes/loginform.php';<br />    ?<br />    <br />div<br />    <div<br />    <?php <br />        require 'includes/menu.php';<br />    ?<br />    <br />div<br />    <h1>Birkbeck University<br />h1<br />    <h1>Department of Computer Science<br />h1<br />        <br />    <?php<br />        $pageRef = 'Administration'; <br />        displaySessionData($pageRef);<br />    ?>    <br />    <p>As the administrator you are able to set up new users.<br />p<br />    <br />    <p>Remember that you need to fill in all of the fields.<br />p<br />    <p>You can only register a user once.<br />p<br />    <?php<br />        require 'includes<br />egistrationform.php';<br />        include 'includes/footer.php';<br />        }else{<br />            echo "<p>You cannot access this page without logging in as an administato<br />p>";<br />        }<br />    ?<br />ody<br />html<br />__MACOSX/k/._admin.php<br />k/databasetech.php<br />?php <br />    require 'includes/functions.php';<br />    startSession();<br />    if (isset($_SESSION['password'])) { <br />equired to access this page, else} access denied message, page bottom.<br />?<br />!DOCTYPE html PUBLIC "-<br />W3C<br />DTD XHTML 1.0 Strict<br />EN" "http:<br />www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"<br />html xmlns="http:<br />www.w3.org/1999/xhtml" xml:lang="en" lang="en"<br />    <head<br />        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" <br />        <title>Introduction to Database Technology - DT Results<br />title<br />        <link rel="stylesheet" type="text/css" href="css<br />esults.css" <br />    <br />head<br />ody<br />    <div<br />        <?php <br />            <br /> require the loginform and related code<br />            require 'includes/loginform.php';<br />        ?<br />    <br />div<br />    <div<br />        <?php <br />         <br /> require the menu and related code<br />            require 'includes/menu.php';<br />        ?<br />    <br />div<br />    <h1>Birkbeck University<br />h1<br />    <h1>Department of Computer Science<br />h1<br />    <?php<br />        $pageRef = 'Introduction to Database Technology'; <br />        displaySessionData($pageRef);<br />    ?<br />    <div<br />        <?php <br />            <br /> require the submenu and related code<br />            require 'includes/submenu.php';<br />        ?<br />    <br />div<br />    <div<br />        <h2>Introduction to Database Technology - DT Results<br />h2<br />        <table<br />             <t<br />                <th>Yea<br />th<br />                <th>Students<br />th<br />                <th>Pass<br />th<br />                <th>Fail (no resit)<br />th<br />                <th>Resit<br />th<br />                <th>Withdrawn<br />th<br />             <br />t<br />             <t<br />                <td>2012/13<br />td<br />                <td>60<br />td<br />                <td>40<br />td<br />                <td>7<br />td<br />                <td>3<br />td<br />                <td>10<br />td<br />             <br />t<br />            <t<br />                <td>2013/14<br />td<br />                <td>45<br />td<br />                <td>25<br />td<br />                <td>5<br />td<br />                <td>15<br />td<br />                <td>0<br />td<br />            <br />t<br />             <t<br />                <td>2014/15<br />td<br />                <td>50<br />td<br />                <td>35<br />td<br />                <td>3<br />td<br />                <td>7<br />td<br />                <td>5<br />td<br />             <br />t<br />             <t<br />                <td>2015/16<br />td<br />                <td>48<br />td<br />                <td>30<br />td<br />                <td>8<br />td<br />                <td>3<br />td<br />                <td>7<br />td<br />             <br />t<br />        <br />table<br />    <br />div<br />    <?php<br />        <br /> require the footer and related code<br />        include 'includes/footer.php';<br />        }else{<br />            echo "<p>You cannot access this page without logging in<br />p>";<br />        }<br />    ?>        <br />ody>        <br />html<br />__MACOSX/k/._databasetech.php<br />k/css<br />esults.css<br />table {<br />    font-family: arial, sans-serif;<br />    border-collapse: collapse;<br />    width: 50%;            <br />}<br />td, th {<br />    border: 2px solid #dddddd;<br />    text-align: left;<br />    padding: 5px;<br />    <br />}<br />tr:nth-child(even) {<br />    background-color: #dddddd;<br />}<br />.tables{<br />    margin-bottom: 30px;<br />}<br />ody{<br />    font-family: Arial, Helvetica, sans-serif;<br />    background-color: #f2f2ef;<br />    margin: auto;<br />    width: 70%;<br />    border: 2px solid darkgrey;<br />    border-radius: 5px;<br />    padding: 2em;<br />}<br />h1{<br />    margin: 20px 5px 0px 10px;<br />    color: #651c65;<br />}<br />h2{    <br />    padding: 5px;<br />    margin: 10px;<br />}<br />h3{<br />    color: #651c65;<br />    padding: 5px;<br />    margin: 10px;<br />}<br />h4{<br />    text-align: right;<br />    color: #651c65;<br />}<br />li{<br />    color:#651c65;<br />    text-align: right;<br />    list-style-position: inside;<br />}<br />h5{<br />    text-align: right;<br />    color: darkgrey;<br />}<br />p{<br />    padding: 5px;<br />    margin: 10 15px;<br />}<br />.nav ul {<br />    list-style-type: none;<br />    margin: 5px;<br />    padding: 0;<br />    overflow: hidden;<br />}<br />.nav li {<br />    float: left;<br />    background-color: white;<br />    border: 1px solid darkgrey;<br />}<br />.nav li a <div class="row txtSpac"> <div class='attachdoc'><a href='/attached-files/p1results-c5hzgkc1.html?did=3' download='p1results-c5hzgkc1.html' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> p1results-c5hzgkc1.html </a><a href='/attached-files/dtresults-pczlk3kt.html?did=3' download='dtresults-pczlk3kt.html' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> dtresults-pczlk3kt.html </a><a href='/attached-files/pfpresults-gi2wqzuc.html?did=3' download='pfpresults-gi2wqzuc.html' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> pfpresults-gi2wqzuc.html </a><a href='/attached-files/schoolphp-sn0hzhyn.docx?did=3' download='schoolphp-sn0hzhyn.docx' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> schoolphp-sn0hzhyn.docx </a><a href='/attached-files/k-sdmjnv25-ktnx15t1.zip?did=3' download='k-sdmjnv25-ktnx15t1.zip' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> k-sdmjnv25-ktnx15t1.zip </a></div> </div> </div> <script type='application/ld+json'>{"@context":"http://schema.org","@type":"QAPage","mainEntity":{"@type":"Question","name":"Introduction to Database Technology - DT Results        Introduction to Database Technology - DT...","author":{"@type":"Person","name":"Anonymous"},"dateCreated":"2021-12-20T22:31:50","text":"Introduction to Database Technology - DT Results        Introduction to Database Technology - DT Results            Year    Students    Pass    Fail (no resit)    Resit    Withdrawn    2012/13    60    40    7    3    10    2013/14    45    25    5    15    0    2014/15    50    35    3    7    5    2015/16    48    30    8    3    7     Problem Solving for Programming – PfP Results        Problem Solving for Programming – PfP Results            Year    Students    Pass    Fail (no resit)    Resit    Withdrawn    2012/13    65    45    7    3    10    2013/14    55    35    5    15    0    2014/15    60    45    2    10    3    2015/16    38    30    8    3    7     PHP Task The Department of Computer Science (DCS) at Birkbeck College, have requested that you develop a prototype main page and link this page to prototype secure intranet pages. Your system should include the following aspects: 7. Main index page, which should provide some dummy content, as an introduction to DCS, plus the following links: Intranet: links to a secure page which provides access to module results via a login \u2028Administrator: links to a registration page/form via admin password, which if successful, allows an administrator to set up new members of staff. \u20288. Log-in: A member of staff should be able to log-in to the intranet by entering a valid username and password in a form. \u20289. Log-out: A logged in member of staff will be able to log-out of the system from any page, and a message will be displayed to this effect returning the user to the index page. \u202810. Admin page: A page for an administrator to register a new member of staff to allow them to login to the intranet. The data required for a member of staff to be registered as a user is: \u2028Title, First name, Surname, Email, Username and Password \u202811. The administrator user name should be “admin” and the password should be “dcsadmin01” for testing purposes). \u202812. Secure intranet content pages: An intranet index page which links to 3 module results pages (data provided in the FMA resources folder in Moodle). These three pages should show module results for the following modules: Web Programming using PHP - P1 Results \u2028Introduction to Database Technology – DT Results \u2028Problem Solving for Programming – PfP Results \u202813. The user should be able to owse between pages while maintaining their logged-in or out state, regardless of their owser settings. N.B. the module results pages should only be accessible if a member of staff has successfully logged in (including the administrator user), otherwise only the index page should be available. \u202814. All pages should display a link or form to log-in or out depending on the cuent user status. If the user is logged in, the page should display the username of the logged in user and if a user logs out they should be redirected to the index page. \u2028A user navigating to any of the public content pages should be able to view the content directly whether they are logged-in or logged-out. The pages should clearly display their user status (apart from the URL links to https:www.dcs.k.ac.uk/... pages). If a logged out user tries to access the intranet pages, they should be politely requested to log-in. There is no specific requirement to apply any CSS or other formatting to your html output, however, you may do so, if you feel that it adds to the presentation of your solution. However, the output should use htmlentities and validate coectly under the DOCTYPE you have specified. Hints Your solution should be as robust as possible while providing a usable experience for users; remember the motto of form submission \"Never trust user input\". Any security flaws in your final design should be clearly outlined in a learning/development log, which you will need to submit as one of your deliverables. It may also be helpful to carefully consider the following before you begin any coding: ·         ⚫Consider what data you will need to store, what the validation criteria is for it and where you will store it. You are not permitted to use a MySQL (or other) database for this assignment, so you will probably want to store user data in an external file. Consider the security implications of using such a file and set appropriate permissions settings on the server. \u2028·         ⚫Remember the quickest way to write this application is to avoid repeating any PHP or HTML code. Thus, you will need to do a design and plan out some useful functions and/or include files that you could write once and then reuse throughout your project. \u2028·         ⚫You will need to maintain state between pages. It would, therefore be useful to review the class slides on PHP security and session and cookie management. \u2028·         ⚫You will need to modify the given module results data files to facilitate secure access and maintain a session; you are allowed to rename them to have a .php extension to facilitate this. \u2028 __MACOSX/._kk/.DS_Store__MACOSX/k/._.DS_Storek/index.php?php     require 'includes/functions.php';    startSession();?!DOCTYPE html PUBLIC \"-W3CDTD XHTML 1.0 StrictEN\" \"http:www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"html xmlns=\"http:www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"            Home - Computer Science Department Biecktitle                    headody                         require the loginform and related code            require 'includes/loginform.php';        ?    div                         require the menu and related code            require 'includes/menu.php';        ?    div    Birkbeck Universityh1    Department of Computer Scienceh1            $pageRef = 'Home';         displaySessionData($pageRef);    ?    Welcome to Birkbeck University Computer Science Department.p    The Department of Computer Science and Information Systems at Birkbeck is one of the first computing departments established in the UK, celeating our 60th anniversary in 2017. We provide a stimulating teaching and research environment for both part-time and full-time students, and a friendly, inclusive space for learning, working and collaborating.p             require the foote        include 'includes/footer.php';    ?odyhtml__MACOSX/k/._index.php__MACOSX/k/._cssk/webprogramming.php?php     require 'includes/functions.php';    startSession();    if (isset($_SESSION['password'])) { equired to access this page, else} access denied message, page bottom.?!DOCTYPE html PUBLIC \"-W3CDTD XHTML 1.0 StrictEN\" \"http:www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"html xmlns=\"http:www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"                    Web Programming using PHP - P1 Resultstitle            headody                     require the loginform and related code        require 'includes/loginform.php';        ?    div                     require the menu and related code         require 'includes/menu.php';        ?    div    Birkbeck Universityh1    Department of Computer Scienceh1            $pageRef = 'Web Programming using PHP';         displaySessionData($pageRef);    ?                         require the submenu and related code             require 'includes/submenu.php';        ?    div                Web Programming using PHP - P1 Resultsh2                                     Yeath                Studentsth                Passth                Fail (no resit)th                Resitth                Withdrawnth            t                             2012/13td                50td                30td                5td                5td                10td            t                            2013/14td                60td                35td                5td                12td                8td            t                             2014/15td                45td                20td                3td                7td                15td            t                             2015/16td                40td                25td                3td                5td                7td            t        table    div             require the footer and related code        include 'includes/footer.php';        }else{            echo \"You cannot access this page without logging inp>\";        }    ?ody>        html__MACOSX/k/._webprogramming.php__MACOSX/k/._includesk/intranet.php?php     require 'includes/functions.php';    startSession();    if (isset($_SESSION['password'])) { password in sessions needed to access this page, eor at page bottom.?!DOCTYPE html PUBLIC \"-W3CDTD XHTML 1.0 StrictEN\" \"http:www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"html xmlns=\"http:www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"            Home - Computer Science Department Biecktitle                    headody                     require the loginform and related code        require 'includes/loginform.php';        ?    div                         require the menu and related code             require 'includes/menu.php';        ?    div    Birkbeck Universityh1    Department of Computer Scienceh1            $pageRef = 'Intranet';         displaySessionData($pageRef);    ?        Welcolme to the Intranet page, click on the link to see the results:p                     require the submenu and related code        require 'includes/submenu.php';        ?    div    Each of the pages contain the results for the related module.p             require the footer and related code        include 'includes/footer.php';        }else{            echo \"You cannot access this page without logging inp>\";        }    ?odyhtml__MACOSX/k/._intranet.phpk/admin.php?php     require 'includes/functions.php';    startSession();    if (isset($_SESSION['password']) AND username and password required to access the admin page.         (isset($_SESSION['username']) AND else message 'You cannot access this page...' at the bottom of the page.         ($_SESSION['username'] === 'admin') AND         ($_SESSION['password'] === 'dcsadmin01'))) { ?!DOCTYPE html PUBLIC \"-W3CDTD XHTML 1.0 StrictEN\" \"http:www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"html xmlns=\"http:www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"            Home - Computer Science Department Biecktitle                    headody                require 'includes/loginform.php';    ?    div                require 'includes/menu.php';    ?    div    Birkbeck Universityh1    Department of Computer Scienceh1                    $pageRef = 'Administration';         displaySessionData($pageRef);    ?>        As the administrator you are able to set up new users.p        Remember that you need to fill in all of the fields.p    You can only register a user once.p            require 'includesegistrationform.php';        include 'includes/footer.php';        }else{            echo \"You cannot access this page without logging in as an administatop>\";        }    ?odyhtml__MACOSX/k/._admin.phpk/databasetech.php?php     require 'includes/functions.php';    startSession();    if (isset($_SESSION['password'])) { equired to access this page, else} access denied message, page bottom.?!DOCTYPE html PUBLIC \"-W3CDTD XHTML 1.0 StrictEN\" \"http:www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"html xmlns=\"http:www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"                    Introduction to Database Technology - DT Resultstitle            headody                         require the loginform and related code            require 'includes/loginform.php';        ?    div                     require the menu and related code            require 'includes/menu.php';        ?    div    Birkbeck Universityh1    Department of Computer Scienceh1            $pageRef = 'Introduction to Database Technology';         displaySessionData($pageRef);    ?                         require the submenu and related code            require 'includes/submenu.php';        ?    div            Introduction to Database Technology - DT Resultsh2                                     Yeath                Studentsth                Passth                Fail (no resit)th                Resitth                Withdrawnth             t                             2012/13td                60td                40td                7td                3td                10td             t                            2013/14td                45td                25td                5td                15td                0td            t                             2014/15td                50td                35td                3td                7td                5td             t                             2015/16td                48td                30td                8td                3td                7td             t        table    div             require the footer and related code        include 'includes/footer.php';        }else{            echo \"You cannot access this page without logging inp>\";        }    ?>        ody>        html__MACOSX/k/._databasetech.phpk/cssesults.csstable {    font-family: arial, sans-serif;    border-collapse: collapse;    width: 50%;            }td, th {    border: 2px solid #dddddd;    text-align: left;    padding: 5px;    }tr:nth-child(even) {    background-color: #dddddd;}.tables{    margin-bottom: 30px;}ody{    font-family: Arial, Helvetica, sans-serif;    background-color: #f2f2ef;    margin: auto;    width: 70%;    border: 2px solid darkgrey;    border-radius: 5px;    padding: 2em;}h1{    margin: 20px 5px 0px 10px;    color: #651c65;}h2{        padding: 5px;    margin: 10px;}h3{    color: #651c65;    padding: 5px;    margin: 10px;}h4{    text-align: right;    color: #651c65;}li{    color:#651c65;    text-align: right;    list-style-position: inside;}h5{    text-align: right;    color: darkgrey;}p{    padding: 5px;    margin: 10 15px;}.nav ul {    list-style-type: none;    margin: 5px;    padding: 0;    overflow: hidden;}.nav li {    float: left;    background-color: white;    border: 1px solid darkgrey;}.nav li a","acceptedAnswer":{"@type":"Answer","url":"https://www.topassignmentexperts.com/questions/php-task-the-department-of-computer-science-dcs-at-birkbeck-college-have-reques-137289.html#pnlSolution","author":{"@type":"Person","name":"Arun Shankar"},"dateCreated":"2021-01-04T03:37:59","text":"k/.DS_Store\r\nk/addstaff.php\r\n\r\nk/admin.php\r\n\r\n\r\n.button {\r\n background-color: #4CAF50; /* Green */\r\n border: none;\r\n color: white;\r\n font-family: calibri;\r\n border-radius: 15px;\r\n padding: 15px 32px;\r\n text-align: center;\r\n text-decoration: none;\r\n display: inline-block;\r\n font-weight: bold;\r\n font-size: 16px;\r\n margin: 4px 2px;\r\n cursor: pointer;\r\n}\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n\r\n\t\r\n\t\tAdmin - CS Dept. Birbeck\r\n\t\t\r\n\t\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\tDepartment of Computer Science, Birkbeck University\r\n\t\t\t\t\r\n\t\t\t\tWelcome to the admin page.\r\n\t\t\t\tYou can add a new staff member by filling this form: \r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t \r\n\t \r\n\t\t\t\t\t Mr.\r\n\t\t\t\t\t Mrs.\r\n\t\t\t\t\t Ms.\r\n\t\t\t\t\t\r\n\t \r\n\t    \r\n\t \r\n\t \r\n\r\n\r\n\t \r\n\t    \r\n\t \r\n\t \r\n\r\n\r\n\t \r\n\t    \r\n\t \r\n\t \r\n\r\n\r\n\t Add staff\r\n \t</form>\r\n\t \r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\tLogOut\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\r\n\t\r\n\r\n\r\nk/authenticate.php\r\n\r\nk/css/results.css\r\ntable {\r\n\tfont-family: arial, sans-serif;\r\n\tborder-collapse: collapse;\r\n\twidth: 50%;\t\t\t\r\n}\r\ntd, th {\r\n\tborder: 2px solid #dddddd;\r\n\ttext-align: left;\r\n\tpadding: 5px;\r\n\t\r\n}\r\ntr:nth-child(even) {\r\n\tbackground-color: #dddddd;\r\n}\r\n.tables{\r\n\tmargin-bottom: 30px;\r\n}\r\nbody{\r\n\tfont-family: Arial, Helvetica, sans-serif;\r\n\tbackground-color: #f2f2ef;\r\n\tmargin: auto;\r\n\twidth: 70%;\r\n\tborder: 2px solid darkgrey;\r\n\tborder-radius: 5px;\r\n\tpadding: 2em;\r\n}\r\nh1{\r\n\tmargin: 20px 5px 0px 10px;\r\n\tcolor: #651c65;\r\n}\r\nh2{\t\r\n\tpadding: 5px;\r\n\tmargin: 10px;\r\n}\r\nh3{\r\n\tcolor: #651c65;\r\n\tpadding: 5px;\r\n\tmargin: 10px;\r\n}\r\nh4{\r\n\ttext-align: right;\r\n\tcolor: #651c65;\r\n}\r\nli{\r\n\tcolor:#651c65;\r\n\ttext-align: right;\r\n\tlist-style-position: inside;\r\n}\r\nh5{\r\n\ttext-align: right;\r\n\tcolor: darkgrey;\r\n}\r\np{\r\n\tpadding: 5px;\r\n\tmargin: 10 15px;\r\n}\r\n.nav ul {\r\n\tlist-style-type: none;\r\n\tmargin: 5px;\r\n\tpadding: 0;\r\n\toverflow: hidden;\r\n}\r\n.nav li {\r\n\tfloat: left;\r\n\tbackground-color: white;\r\n\tborder: 1px solid darkgrey;\r\n}\r\n.nav li a {\r\n\tdisplay: block;\r\n\tcolor: black;\r\n\ttext-align: center;\r\n\tpadding: 18px 20px;\r\n\ttext-decoration: none;\r\n}\r\n.nav li a:hover {\r\n\tbackground-color: #651c65;\r\n}\r\n.subnav li{\r\n\ttext-align: left;\r\n}\r\n.subnav a{\r\n\ttext-decoration: none;\r\n\tfont-size: 20px;\r\n\tcolor:#651c65;\r\n}\r\n.subnav a:hover{\r\n\tcolor: darkgrey;\r\n}\r\ninput[type=text], select {\r\n\twidth: 100%;\r\n\tpadding: 12px 20px;\r\n\tmargin: 8px 0;\r\n\tdisplay: inline-block;\r\n\tborder: 1px solid darkgrey;\r\n\tborder-radius: 4px;\r\n\tbox-sizing: border-box;\r\n}\r\ninput[type=Password]{\r\n\twidth: 100%;\r\n\tpadding: 12px 20px;\r\n\tmargin: 8px 0;\r\n\tdisplay: inline-block;\r\n\tborder: 1px solid darkgrey;\r\n\tborder-radius: 4px;\r\n\tbox-sizing: border-box;\r\n}\r\ninput[type=submit] {\r\n\twidth: 100%;\r\n\tfont-size: 20px;\r\n\tbackground-color: black;\r\n\tcolor: white;\r\n\tpadding: 14px 20px;\r\n\tmargin: 8px 0;\r\n\tborder: none;\r\n\tborder-radius: 4px;\r\n\tcursor: pointer;\r\n}\r\ninput[type=submit]:hover {\r\n\tbackground-color: #651c65;\r\n}\r\nfieldset {\r\n\tbackground-color: grey;\r\n\tmargin-bottom: 20px;\r\n}\r\n.login input[type=text]{\r\n\twidth: 100%;\r\n\tpadding: 7px 10px;\r\n\tmargin: 8px 0;\r\n\tdisplay: inline-block;\r\n\tborder: 1px solid darkgrey;","upvoteCount":136,"aggregateRating":4.55},"answerCount":1}}</script> </div> <div class="info"> <span class="solved" title="Solved"><em class="ico"></em> Answered Same Day</span> <span class="postedtime" title="Posted On"><em class="ico"></em> Dec 20, 2021</span> </div> </div> <div class="clear"></div> <div id="pnlSolvedQuestionStatus"> <div id="pnlSolution" class="solutionsbox"> <h2>Solution <span class="bdr"></span></h2> <div class="expert-answered"> <b> <span class="expert-pic"></span> Arun Shankar</b> answered on <b> Jan 04 2021</b> </div> <div class="rating-vote"> <div class="cont"> <span class='star'><span class='rating' style='width: 91%'></span></span> <span class="vote"><b> 136</b> Votes</span> </div> </div> <div class="soln-snippet"> k/.DS_Store<br />k/addstaff.php<br />?php <br />* This file has the logic to add a new staff member.<br />It gets the staff member details via the submission of the<br />form in the admin page. All that it does is to append the username<br />and password to the file users.txt. *<br />$uname = $_POST["user"];<br />$pass = $_POST["pass"];<br />$uname = trim($uname);<br />$pass = trim($pass);<br />if(strpos($pass,'staff')==false)<br />{<br />    echo "The password must follow the syntax dcsstaffXY";<br />    return;<br />}<br /> Check if a user with that name exists already<br />$file = fopen("includes/users.txt","r");<br />Output lines until EOF is reached<br />while(!feof($file))<br />{<br /> $line = fgets($file, 1024);<br /> $bits = explode(',', $line); <br /> $bits[0] = trim($bits[0]);<br /> if($uname==$bits[0]) <br /> {<br />     echo "A user with that username exists already. Please give a new username.";<br />     fclose($file);<br />    return;<br /> }<br />}<br />fclose($file);<br />$fp = fopen("includes/users.txt","a");<br />opens file in append mode <br />fwrite($fp,"\n".$uname.",".$pass);<br />fclose($fp);<br />header('location:admin.php');<br />?<br />k/admin.php<br />?php <br />    require 'includes/functions.php';<br />    session_start();<br />    if(!isset($_SESSION["type"]))<br />    {<br />        echo "You are not authorized to access this page.";<br />        return;<br />    }<br />    if($_SESSION["type"]!=1)    <br /> The user is not an admin<br />    {<br />        echo "Only admins authorized to access this page.";<br />        return;<br />    }<br />?<br />style type="text/css"<br />.button {<br /> background-color: #4CAF50; /* Green *<br /> border: none;<br /> color: white;<br /> font-family: cali<br />i;<br /> border-radius: 15px;<br /> padding: 15px 32px;<br /> text-align: center;<br /> text-decoration: none;<br /> display: inline-block;<br /> font-weight: bold;<br /> font-size: 16px;<br /> margin: 4px 2px;<br /> cursor: pointer;<br />}<br />style<br />!DOCTYPE html PUBLIC "-<br />W3C<br />DTD XHTML 1.0 Strict<br />EN" "http:<br />www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"<br />html xmlns="http:<br />www.w3.org/1999/xhtml" xml:lang="en" lang="en"<br />    <head<br />        <title>Admin - CS Dept. Bi<br />eck<br />title<br />        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" <br />    <br />head<br />ody style="background-color: white;"<br />    <div class="nav"<br />        <?php <br />            <br /> require the menu and related code<br />            require 'includes/menu.php';<br />        ?<br />    <br />div<br />    <table style="border-width: 0; background-color: white;"<br />        <t<br />            <td style="font-family: cali<br />i;"<br />                <h1 style="color: blue;">Department of Computer Science, Birkbeck University<br />h1<br />                <h<br />                <p>Welcome to the admin page.<br />p<br />                <p>You can add a new staff member by filling this form: <br />p<br />            <br />td<br />        <br />t<br />        <t<br />            <td style="font-family: cali<br />i; min-width: 500px;"<br />                <form method="post" action="addstaff.php"<br />     <h<br />     <select name="title"<br />                     <option value="1">Mr.<br />option<br />                     <option value="2">Mrs.<br />option<br />                     <option value="2">Ms.<br />option<br />                    <br />select<br />     <input type="text"name="user" placeholder="username"<br />     style="height:30px; border-radius: 5px; border-color: blue"<br />        <br />     <input type="password"name="pass" placeholder="password"<br />     style="height:30px; border-radius: 5px; border-color: blue;" <br />     <br />     <input type="text"name="fname" placeholder="first name"<br />     style="height:30px; border-radius: 5px; border-color: blue"<br />        <br />     <input type="password"name="lname" placeholder="last name"<br />     style="height:30px; border-radius: 5px; border-color: blue;" <br />     <br />     <input type="text"name="phone" placeholder="phone number"<br />     style="height:30px; border-radius: 5px; border-color: blue"<br />        <br />     <input type="password"name="email" placeholder="email id"<br />     style="height:30px; border-radius: 5px; border-color: blue;" <br />     <br />     <br />utton class="button" style="border-radius: 90px; background-color: violet;"<br />     type="submit" name="submit">Add staff<br />utton<br />     <br />form<br />     <?php<br />                if(isset($_SESSION["type"]))<br />                {<br />                    ?<br />                    <h<br />                    <?php echo "You are logged in as ".$_SESSION["fname"]; ?<br />                    <a href="logout.php"<br />                        <br />utton class="button" style="border-radius: 90px; background-color: red;">LogOut<br />utton<br />                    <br />a<br />                    <?php<br />                }<br />                ?<br />            <br />td<br />        <br />t<br />    <br />table<br />    <?php<br />        <br /> require the foote<br />        include 'includes/footer.php';<br />    ?<br />ody<br />html<br />k/authenticate.php<br />?php <br />* This file has the logic to validate a login. This code<br />is executed when a user clicks on the Login button in the <br />index.php page. This page gets the username and password as<br />POST variables, and then checks whether a username, password<br />combo matches it. If yes, login is successful, the session variables are<br />set accordingly, and the user is redirected to the appropriate page.<br />If not, the user is taken back to the index.php page. *<br />$uname = $_POST["user"];<br />$pass = $_POST["pass"];<br />$uname = trim($uname);<br />$pass = trim($pass);<br /> Read the file that stores all usernames and passwords.<br />$bits = "";<br />$file = fopen("includes/users.txt","r");<br />Output lines until EOF is reached<br />while(!feof($file))<br />{<br /> $line = fgets($file, 1024);<br /> $bits = explode(',', $line); <br /> $bits[0] = trim($bits[0]);<br /> $bits[1] = trim($bits[1]);<br /> if(($uname==$bits[0]) && ($pass==$bits[1]))<br /> {<br />         session_start();<br />         $_SESSION["fname"] = $uname;<br />         $_SESSION["password"] = $pass;<br />         <br /> Find out what sort of a user this is - Admin, or staff ?<br />         if(strpos($pass,'admin') !==false)<br />             $_SESSION["type"] = 1;    <br />         else if(strpos($pass,'staff') !==false)<br />             $_SESSION["type"] = 2;    <br />         echo "successful login";<br />         echo $_SESSION["type"] ;<br />         header('location:index.php');<br /> }<br />}<br />fclose($file); <br /> No user found with that username and password. Invalid credentials.     <br />header('location:index.php');<br />?<br />k/css<br />esults.css<br />table {<br />    font-family: arial, sans-serif;<br />    border-collapse: collapse;<br />    width: 50%;            <br />}<br />td, th {<br />    border: 2px solid #dddddd;<br />    text-align: left;<br />    padding: 5px;<br />    <br />}<br />tr:nth-child(even) {<br />    background-color: #dddddd;<br />}<br />.tables{<br />    margin-bottom: 30px;<br />}<br />ody{<br />    font-family: Arial, Helvetica, sans-serif;<br />    background-color: #f2f2ef;<br />    margin: auto;<br />    width: 70%;<br />    border: 2px solid darkgrey;<br />    border-radius: 5px;<br />    padding: 2em;<br />}<br />h1{<br />    margin: 20px 5px 0px 10px;<br />    color: #651c65;<br />}<br />h2{    <br />    padding: 5px;<br />    margin: 10px;<br />}<br />h3{<br />    color: #651c65;<br />    padding: 5px;<br />    margin: 10px;<br />}<br />h4{<br />    text-align: right;<br />    color: #651c65;<br />}<br />li{<br />    color:#651c65;<br />    text-align: right;<br />    list-style-position: inside;<br />}<br />h5{<br />    text-align: right;<br />    color: darkgrey;<br />}<br />p{<br />    padding: 5px;<br />    margin: 10 15px;<br />}<br />.nav ul {<br />    list-style-type: none;<br />    margin: 5px;<br />    padding: 0;<br />    overflow: hidden;<br />}<br />.nav li {<br />    float: left;<br />    background-color: white;<br />    border: 1px solid darkgrey;<br />}<br />.nav li a {<br />    display: block;<br />    color: black;<br />    text-align: center;<br />    padding: 18px 20px;<br />    text-decoration: none;<br />}<br />.nav li a:hover {<br />    background-color: #651c65;<br />}<br />.subnav li{<br />    text-align: left;<br />}<br />.subnav a{<br />    text-decoration: none;<br />    font-size: 20px;<br />    color:#651c65;<br />}<br />.subnav a:hover{<br />    color: darkgrey;<br />}<br />input[type=text], select {<br />    width: 100%;<br />    padding: 12px 20px;<br />    margin: 8px 0;<br />    display: inline-block;<br />    border: 1px solid darkgrey;<br />    border-radius: 4px;<br />    box-sizing: border-box;<br />}<br />input[type=Password]{<br />    width: 100%;<br />    padding: 12px 20px;<br />    margin: 8px 0;<br />    display: inline-block;<br />    border: 1px solid darkgrey;<br />    border-radius: 4px;<br />    box-sizing:... </div> </div> <div class="pdf-solution"> <a href="javascript:void(0);" id="hypGetSolution" data-action="main_cta" data-requirelogin="true" class="download" data-category="Solved" data-label="137289" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=137289" data-gaq="true">SOLUTION.PDF</a> </div> <div class="pdf-solution solnfixed"> <div class="cont"> <a href="javascript:void(0);" id="hypGetSolutionBottom" data-action="main_cta_bottom" data-requirelogin="true" class="download" data-category="Solved" data-label="137289" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=137289" data-gaq="true">SOLUTION.PDF</a> <h2>Answer To This Question Is Available To Download</h2> </div> </div> </div> <div id="dvRecentQuestionList"> <div id="pnlRecentRelatedQuestionList"> <div class="rel-que"> <h2>Related Questions & Answers<span class="bdr"></span></h2> <ul> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/question-1-using-the-database-in-the-image-below-generate-a-template-file-and-a-3441927.html">Question 1: Using the database in the image below, generate a template file and a complete controller script that displays a timecard report for the department whose department number is delivered to...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Dec 02, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-find-instructions-in-the-attached-file-3438449.html">Instructions Complete the following steps, being sure to take a screenshot showing that you have completed each step and pasting the screenshot into a document for submission as well as a...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Apr 08, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-find-instructions-in-the-attached-file-3438180.html">Instructions Complete the following steps and take a screenshot showing that you have completed steps 2 and 4 by pasting the screenshot as well as a summary into a document for submission: 1....</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Mar 31, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-find-instructions-in-the-attached-file-3437626.html">Instructions Complete the Test Yourself with Exercises section in each learning module below: PHP Arrays: https://www.w3schools.com/php/php_arrays.asp PHP Date and Time:...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Mar 18, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-find-instructions-in-the-attached-file-3437401.html">Instructions Complete the Test Yourself with Exercises section in each learning module below: PHP Operators: https://www.w3schools.com/php/php_operators.asp PHP Loops:...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Mar 11, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/your-goal-is-to-develop-an-adopt-a-pet-registration-systemthe-database-name-is-3434063.html">Your goal is to develop an "Adopt a Pet" registration system.The database name is your first initial and last name.The system will include:1. Input form for customer to enter their information (name,...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Nov 17, 2022</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/hello-i-need-help-with-this-programming-projectthe-language-preference-is-mysql-3433683.html">CS XXXXXXXXXXSQL Library Project Library System Programming Project Description This SQL programming project involves the creation of a database host application that interfaces with a backend SQL...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Nov 08, 2022</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/assignment1due-date-sunday102922using-workbench-you-will-be-awarded-no-credit-i-3433084.html">Assignment1Due Date Sunday10/29/22Using WorkBench (you will be awarded no credit if you do not use WorkBench),to create an ERD Diagram for the tables below.Note: There are changes from the previous...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Oct 23, 2022</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/mid-term-project-due-101622mid-term-project-you-may-work-by-yourself-or-with-on-3432139.html">Mid-term Project - Due 10/16/22Mid-term Project. You may work by yourself or with one other person from the class for this project.There is a lot to this task. Make sure you allow enough time to...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Oct 05, 2022</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/see-image-3431297.html">See image</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Sep 22, 2022</span> </div> </li> </ul> <div class="clearfix"></div> <a id="hypMoreRelatedQuestion" class="moreque" href="/php-assignment-help/">More Questions »</a> </div> </div> </div> </div> <div class="col-md-4"> <div class="submit-assignment"> <div id="dvQuestionContainer"> <div class="assignment-frm"> <div id="dvTitle"><h3>Submit New Assignment</h3></div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvSubject"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtSubject" type="text" id="txtSubject" class="form-control" placeholder="Subject" /> <span class="help-block filled" id="spnSubjectName" style="display: none;"><span class="parsley-checkemailavailability">Please select subject</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6" id="dvDeadLine"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtDeadLine" type="text" readonly="readonly" id="txtDeadLine" class="form-control" placeholder="Deadline" /> <span class="help-block filled" id="spnDeadline" style="display: none;"><span class="parsley-checkemailavailability">Please select deadline for your assignment</span></span> </div> </div> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvNoOfPages"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlNoOfPages" id="ddlNoOfPages" class="form-control"> <option value="-1">Select No Of Pages</option> <option value="0">Not Applicable</option> <option value="1">Pages/Words: 1/250</option> <option value="2">Pages/Words: 2/500</option> <option value="3">Pages/Words: 3/750</option> <option value="4">Pages/Words: 4/1000</option> <option value="5">Pages/Words: 5/1250</option> <option value="6">Pages/Words: 6/1500</option> <option value="7">Pages/Words: 7/1750</option> <option value="8">Pages/Words: 8/2000</option> <option value="9">Pages/Words: 9/2250</option> <option value="10">Pages/Words: 10/2500</option> <option value="11">Pages/Words: 11/2750</option> <option value="12">Pages/Words: 12/3000</option> <option value="13">Pages/Words: 13/3250</option> <option value="14">Pages/Words: 14/3500</option> <option value="15">Pages/Words: 15/3750</option> <option value="16">Pages/Words: 16/4000</option> <option value="17">Pages/Words: 17/4250</option> <option value="18">Pages/Words: 18/4500</option> <option value="19">Pages/Words: 19/4750</option> <option value="20">Pages/Words: 20/5000</option> <option value="21">Pages/Words: 21/5250</option> <option value="22">Pages/Words: 22/5500</option> <option value="23">Pages/Words: 23/5750</option> <option value="24">Pages/Words: 24/6000</option> <option value="25">Pages/Words: 25/6250</option> <option value="26">Pages/Words: 26/6500</option> <option value="27">Pages/Words: 27/6750</option> <option value="28">Pages/Words: 28/7000</option> <option value="29">Pages/Words: 29/7250</option> <option value="30">Pages/Words: 30/7500</option> <option value="31">Pages/Words: 31/7750</option> <option value="32">Pages/Words: 32/8000</option> <option value="33">Pages/Words: 33/8250</option> <option value="34">Pages/Words: 34/8500</option> <option value="35">Pages/Words: 35/8750</option> <option value="36">Pages/Words: 36/9000</option> <option value="37">Pages/Words: 37/9250</option> <option value="38">Pages/Words: 38/9500</option> <option value="39">Pages/Words: 39/9750</option> <option value="40">Pages/Words: 40/10000</option> <option value="41">Pages/Words: 41/10250</option> <option value="42">Pages/Words: 42/10500</option> <option value="43">Pages/Words: 43/10750</option> <option value="44">Pages/Words: 44/11000</option> <option value="45">Pages/Words: 45/11250</option> <option value="46">Pages/Words: 46/11500</option> <option value="47">Pages/Words: 47/11750</option> <option value="48">Pages/Words: 48/12000</option> <option value="49">Pages/Words: 49/12250</option> <option value="50">Pages/Words: 50/12500</option> <option value="51">Pages/Words: 51/12750</option> <option value="52">Pages/Words: 52/13000</option> <option value="53">Pages/Words: 53/13250</option> <option value="54">Pages/Words: 54/13500</option> <option value="55">Pages/Words: 55/13750</option> <option value="56">Pages/Words: 56/14000</option> <option value="57">Pages/Words: 57/14250</option> <option value="58">Pages/Words: 58/14500</option> <option value="59">Pages/Words: 59/14750</option> <option value="60">Pages/Words: 60/15000</option> <option value="61">Pages/Words: 61/15250</option> <option value="62">Pages/Words: 62/15500</option> <option value="63">Pages/Words: 63/15750</option> <option value="64">Pages/Words: 64/16000</option> <option value="65">Pages/Words: 65/16250</option> <option value="66">Pages/Words: 66/16500</option> <option value="67">Pages/Words: 67/16750</option> <option value="68">Pages/Words: 68/17000</option> <option value="69">Pages/Words: 69/17250</option> <option value="70">Pages/Words: 70/17500</option> <option value="71">Pages/Words: 71/17750</option> <option value="72">Pages/Words: 72/18000</option> <option value="73">Pages/Words: 73/18250</option> <option value="74">Pages/Words: 74/18500</option> <option value="75">Pages/Words: 75/18750</option> <option value="76">Pages/Words: 76/19000</option> <option value="77">Pages/Words: 77/19250</option> <option value="78">Pages/Words: 78/19500</option> <option value="79">Pages/Words: 79/19750</option> <option value="80">Pages/Words: 80/20000</option> <option value="81">Pages/Words: 81/20250</option> <option value="82">Pages/Words: 82/20500</option> <option value="83">Pages/Words: 83/20750</option> <option value="84">Pages/Words: 84/21000</option> <option value="85">Pages/Words: 85/21250</option> <option value="86">Pages/Words: 86/21500</option> <option value="87">Pages/Words: 87/21750</option> <option value="88">Pages/Words: 88/22000</option> <option value="89">Pages/Words: 89/22250</option> <option value="90">Pages/Words: 90/22500</option> <option value="91">Pages/Words: 91/22750</option> <option value="92">Pages/Words: 92/23000</option> <option value="93">Pages/Words: 93/23250</option> <option value="94">Pages/Words: 94/23500</option> <option value="95">Pages/Words: 95/23750</option> <option value="96">Pages/Words: 96/24000</option> <option value="97">Pages/Words: 97/24250</option> <option value="98">Pages/Words: 98/24500</option> <option value="99">Pages/Words: 99/24750</option> <option value="100">Pages/Words: 100/25000</option> </select> <span class="help-block filled" id="spnNoOfPages" style="display: none;"><span class="parsley-checkemailavailability">Please select no of pages for your assignment</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6" id="dvReferenceId"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlReferenceId" id="ddlReferenceId" class="form-control"> <option value="0">Referencing Style</option> <option value="1">Harvard</option> <option value="2">MLA</option> <option value="3">Vancouver</option> <option value="4">Chicago/Turabian</option> <option value="5">APA</option> <option value="6">Oxford</option> <option value="7">Oscola</option> <option value="8">AGLC</option> <option value="9">MHRA</option> <option value="10">Others</option> <option value="11">BMJ</option> <option value="12">Chicago</option> <option value="13">Footnotes</option> <option value="14">Footnotes and bibliography</option> <option value="15">IEEE</option> <option value="16">Open</option> <option value="17">OSCOLA</option> <option value="18">Turabian</option> </select> <span class="help-block filled" id="spnReferenceId" style="display: none;"><span class="parsley-checkemailavailability">Please select references for your assignment</span></span> </div> </div> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvLevelId"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlLevelId" id="ddlLevelId" class="form-control"> <option value="0">Select Level</option> <option value="1">Certification</option> <option value="2">Diploma</option> <option value="3">Advanced Diploma</option> <option value="4">Undergraduate</option> <option value="5">Masters</option> <option value="6">Others</option> </select> <span class="help-block filled" id="spnLevelId" style="display: none;"><span class="parsley-checkemailavailability">Please select level for your assignment</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6"> <div id="dvNoOfCopies"> <div class="form-group"> <div class="input-group multiple-copies"> <span class="input-group-btn"> <button class="btn btn-default" data-dir="dwn" id="btnDown"><span class="glyphicon glyphicon-minus"></span></button> </span> <input name="ctl00$MainContent$QuestionBox$txtNoOfCopies" type="text" value="No Of Copies: 1" id="txtNoOfCopies" class="form-control text-center" data-noofcopies="1" placeholder="No Of Copies" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnNoOfCopies" id="hdnNoOfCopies" value="1" /> <span class="input-group-btn"> <button class="btn btn-default" data-dir="up" id="btnUp"><span class="glyphicon glyphicon-plus"></span></button> </span> </div> <i class="glyphicon glyphicon-info-sign popinfo" data-toggle="popover" data-trigger="focus" title="" data-html="true" data-content="<ul><li>Extra 10% discount upto 3 copies (2-3 copies)</li><li>Extra 20% discount for more than 3 copies</li></ul>"></i> </div> </div> </div> </div> <div class="row"> <div class="col-xs-12" id="dvName"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtName" type="text" id="txtName" class="form-control" placeholder="Your Name" /> <span class="help-block filled" id="spnUserName" style="display: none;"><span class="parsley-checkemailavailability">Please Enter your name</span></span> </div> </div> </div> <div class="form-group"> <div class="nicEdit-main" id="txtDescription">Copy and Paste Your Assignment Here</div> <span class="help-block filled" id="spnDescription" style="display: none;"><span class="parsley-checkemailavailability">Please Enter your question</span></span> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6"> <div class="form-group"> <a href="javascript:void(0);" id="hypAttachFiles" class="attach-file">Attach File</a> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6"> <input type="submit" name="ctl00$MainContent$QuestionBox$btnSubmit" value="Get a Free Quote" id="btnSubmit" class="submit" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnSubjectId" id="hdnSubjectId" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnDescription" id="hdnDescription" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnDeadline" id="hdnDeadline" /> </div> <div id="dvUploadFileContainer" class="atchcont" style="display: none;"> <div id="dvQFile1" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile1" id="qFile1" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id="1">Cancel</a> </div> <div id="dvQFile2" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile2" id="qFile2" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='2'>Cancel</a> </div> <div id="dvQFile3" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile3" id="qFile3" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='3'>Cancel</a> </div> <div id="dvQFile4" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile4" id="qFile4" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='4'>Cancel</a> </div> <div id="dvQFile5" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile5" id="qFile5" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='5'>Cancel</a> </div> <a id="hypMoreFile" class="havemorefiles" href="javascript:void(0);" style="float: right;">Attach More File</a> </div> </div> <div class="modal fade" id="dvSubjectContaner" data-keyboard="false" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <ul class='nav nav-tabs' role='tablist'> <li role='presentation' class='active'><a href='#accounting' aria-controls='accounting' role='tab' data-toggle='tab'>Accounting</a></li> <li role='presentation'><a href='#computer-science' aria-controls='computer-science' role='tab' data-toggle='tab'>Computer Science</a></li> <li role='presentation'><a href='#economics' aria-controls='economics' role='tab' data-toggle='tab'>Economics</a></li> <li role='presentation'><a href='#engineering' aria-controls='engineering' role='tab' data-toggle='tab'>Engineering</a></li> <li role='presentation'><a href='#finance' aria-controls='finance' role='tab' data-toggle='tab'>Finance</a></li> <li role='presentation'><a href='#thesis' aria-controls='thesis' role='tab' data-toggle='tab'>Thesis</a></li> <li role='presentation'><a href='#management' aria-controls='management' role='tab' data-toggle='tab'>Management</a></li> <li role='presentation'><a href='#science_math' aria-controls='science_math' role='tab' data-toggle='tab'>Science/Math</a></li> <li role='presentation'><a href='#statistics' aria-controls='statistics' role='tab' data-toggle='tab'>Statistics</a></li> <li role='presentation'><a href='#writing' aria-controls='writing' role='tab' data-toggle='tab'>Writing</a></li> <li role='presentation'><a href='#dissertations' aria-controls='dissertations' role='tab' data-toggle='tab'>Dissertations</a></li> <li role='presentation'><a href='#essays' aria-controls='essays' role='tab' data-toggle='tab'>Essays</a></li> <li role='presentation'><a href='#programming' aria-controls='programming' role='tab' data-toggle='tab'>Programming</a></li> <li role='presentation'><a href='#healthcare' aria-controls='healthcare' role='tab' data-toggle='tab'>Healthcare</a></li> <li role='presentation'><a href='#law' aria-controls='law' role='tab' data-toggle='tab'>Law</a></li> <li role='presentation'><a href='#humanities' aria-controls='humanities' role='tab' data-toggle='tab'>Humanities</a></li> </ul> <div class='tab-content'> <div role='tabpanel' class='tab-pane active' id='accounting'> <ul> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='14'>» Accounting - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='15'>» Advanced Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='16'>» Auditing</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='17'>» Cost Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='18'>» Financial Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='19'>» Managerial Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='20'>» Payroll Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='142'>» Taxation</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='computer-science'> <ul> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='21'>» Automata or Computationing</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='22'>» Computer Architecture</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='23'>» Computer Graphics and Multimedia Applications</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='24'>» Computer Network Security</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='25'>» Data Structures</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='26'>» Database Management System</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='27'>» Design and Analysis of Algorithms</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='28'>» Information Technology</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='29'>» Linux Environment</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='30'>» Networking</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='31'>» Operating System</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='32'>» Software Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='33'>» Big Data</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='34'>» Android</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='35'>» iOS</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='36'>» Matlab</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='economics'> <ul> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='37'>» Economics - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='38'>» International Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='39'>» Macro Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='40'>» Micro Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='41'>» Game Theory</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='engineering'> <ul> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='42'>» Chemical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='43'>» Civil Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='44'>» Electrical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='45'>» Mechanical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='143'>» Electronics and communication Engineering</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='finance'> <ul> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='46'>» Corporate Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='47'>» International Financial Management</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='48'>» Investment</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='49'>» Risk Management</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='50'>» Personal Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='51'>» Behavioral Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='136'>» Finance - Others</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='thesis'> <ul> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='93'>» Accounting Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='94'>» Economics Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='95'>» Finance Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='96'>» Management Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='97'>» Other Thesis Topics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='management'> <ul> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='52'>» Business Law</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='53'>» Human Resource Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='54'>» Management - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='55'>» Managing Information Technology</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='56'>» Marketing Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='57'>» Strategic Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='58'>» Supply Chain Management / Operations Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='59'>» Hospitality Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='60'>» Business Ethics</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='61'>» International Business</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='62'>» Business Communications</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='124'>» Project Management</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='science_math'> <ul> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='63'>» Advanced Mathematics</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='64'>» Biology</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='65'>» Chemistry</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='66'>» Earth Science</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='67'>» Maths</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='68'>» Physics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='statistics'> <ul> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='69'>» ANOVA</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='70'>» Applied Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='71'>» Basics of Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='72'>» Central Tendency</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='73'>» Descriptive Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='74'>» Hypothesis Testing</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='75'>» Operational Research</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='76'>» Regression</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='77'>» Sampling Theory</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='78'>» Statistics - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='79'>» Stochastic processes</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='80'>» Time Series Analysis</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='writing'> <ul> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='81'>» Academic writing</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='82'>» Admission Services</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='83'>» Capstone</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='84'>» Paper Writing</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='135'>» Spanish</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='dissertations'> <ul> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='85'>» Accounting Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='86'>» Economics Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='87'>» Finance Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='88'>» Human Resource Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='89'>» Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='90'>» Marketing Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='91'>» Project Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='92'>» Statistics Dissertation</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='essays'> <ul> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='98'>» Narrative Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='99'>» Scholarship Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='100'>» Admission Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='101'>» Persuasive Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='102'>» Descriptive Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='103'>» Expository Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='104'>» accounting essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='105'>» finance essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='106'>» economics essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='107'>» leadership essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='108'>» statistics essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='109'>» College Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='110'>» Other Essay Topics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='programming'> <ul> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='111'>» Java</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='112'>» Python</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='113'>» C/C++</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='114'>» HTML</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='115'>» Ruby</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='116'>» PHP</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='117'>» Javascript</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='118'>» R Programming</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='119'>» .NET/C#</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='120'>» Other Programming Language</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='healthcare'> <ul> <li><a href='javascript:void(0);' data-subjectid='121' data-topicid='122'>» Nursing</a></li> <li><a href='javascript:void(0);' data-subjectid='121' data-topicid='123'>» Healthcare - Others</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='law'> <ul> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='126'>» Tax Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='127'>» Intellectual Property Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='128'>» Family Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='129'>» Criminal Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='130'>» Constitutional Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='131'>» Civil Litigates</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='132'>» International Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='133'>» Labour/Employment Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='134'>» Other law</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='humanities'> <ul> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='138'>» Sociology</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='139'>» Psychology</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='140'>» Foreign language</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='141'>» Proofreading</a></li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <div id="pnlRegister" class="login-popup" style="display: none;"> <div class="modal" id="dvLoginRegister" data-keyboard="false" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="false" style="display: block;"> <div class="modal-backdrop fade in" style="height: 100%;"></div> <div class="modal-dialog"> <div class="modal-content login"> <button type="button" class="close" id="btnCloseLogin" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <div class="modal-body"> <div class="container"> <div class="col-xs-12"> <div class="wrapper" id="wrapper"> <div class="login-form" id="dvLoginRegisterContainer"> <div class="col-md-6"> <div id="pnlRegister" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnRegister')"> <div id="register"> <div class="heading">Create an Account</div> <div class="form-group"><input name="ctl00$MainContent$LoginRegister$txtFisrtName" type="text" id="txtFisrtName" class="form-control name" data-parsley-required="true" data-parsley-pattern="^[A-Za-z\d\s]+$" data-parsley-pattern-message="Name should be alphanumeric." data-parsley-required-message="Please Enter your name." placeholder="Your Name" data-parsley-trigger="foucusout" /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtUserName" type="text" id="txtUserName" placeholder="Email Id" data-parsley-trigger="foucusout" data-parsley-type="email" class="form-control email-address" data-parsley-checkemailavailability="true" data-parsley-group="email" data-parsley-required-message="Please Enter your email id." data-parsley-required="true" data-parsley-checkemailavailability-message="Email is already registerd. Please login or choose another email id." /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtUserPassword" type="password" id="txtUserPassword" data-parsley-error-message="The password Should be at least 6 characters and can be a maximum of 15 characters." data-parsley-required="true" data-parsley-maxlength="15" data-parsley-minlength="6" class="form-control password" placeholder="Password" /> </div> <div class="form-group"> <input type="submit" name="ctl00$MainContent$LoginRegister$btnRegister" value="Sign Up" id="btnRegister" class="btn btn-success btn-block" data-gaq="true" data-category="Solved" data-label="137289" data-action="sign_up" /> <p class="frm-btm">Already registered? <a href="javascript:void(0)" id="login-link">Login</a> </p> </div> </div> </div> <div id="pnlLogin" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnLogin')"> <div id="login" style="display: none"> <div class="heading">Log In to Your Account</div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtEmailId" type="text" id="txtEmailId" data-parsley-error-message="Please Enter your email id." data-parsley-required="true" data-parsley-type="email" class="form-control email-address" placeholder="Email Id" /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtPassword" type="password" id="txtPassword" data-parsley-error-message="Please enter your password" data-parsley-required="true" data-parsley-maxlength="15" data-parsley-minlength="6" class="form-control password" placeholder="Password" /> </div> <div class="form-group"> <div class="forgotlink"> <a href="javascript:void(0)" id="forgotlink">Forgot Password</a> </div> <input type="submit" name="ctl00$MainContent$LoginRegister$btnLogin" value="Login" id="btnLogin" class="btn btn-success btn-block" data-gaq="true" data-category="Solved" data-label="137289" data-action="sign_in" /> <p class="frm-btm"> Not Account? <a href="javascript:void(0)" id="sign-link">Sign up</a> </p> </div> </div> </div> <div id="pnlForgotPassword" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnForgotPassword')"> <div id="dvForgotPassword" style="display: none"> <h2>Get Password?</h2> <p>Enter your email address to reset your password</p> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtResetPassowrdEmail" type="text" id="txtResetPassowrdEmail" data-parsley-error-message="Please Enter your email id." data-parsley-required="true" data-parsley-type="email" class="form-control email-address" placeholder="Email Id" /> </div> <div class="form-group"> <input type="submit" name="ctl00$MainContent$LoginRegister$btnForgotPassword" value="Reset Password" id="btnForgotPassword" class="btn btn-success btn-block" /> <p class="frm-btm">Back to Login? <a href="javascript:void(0)" id="lnkbackToLogin">Click here</a> </p> </div> </div> </div> </div> <div class="col-md-6"> <div class="login-benifits"> <div class="heading"> 96% of students say that they get better grades when they use TAE </div> <ul> <li>Millions of Homework Answers and Textbook Solutions</li> <li>If stuck, Ask Questions to Our Experts ANYTIME</li> <li>24X7 Support Available</li> </ul> </div> </div> <div class="clear"></div> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnCountryName" id="hdnCountryName" value="India" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnUserName" id="hdnUserName" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnIsLoginFailed" id="hdnIsLoginFailed" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnEntityId" id="hdnEntityId" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnNavigationUrl" id="hdnNavigationUrl" value="/myaccount/QuestionRequest.aspx?qid=137289" /> <div class="clear"></div> </div> </div> </div> </div> <!-- Login end --> </div> </div> </div> </div> </div> <footer> <div class="cont"> <div class="container"> <div class="row"> <div class="col-md-4 col-sm-6 col-xs-12"> <div class="ftr-logo"> <img src="../assets/images/logo.png" width="270" height="46" /> </div> <div class="ftr-mail"><a href="mailto:info@topassignmentexperts.com" rel="nofollow">info@topassignmentexperts.com</a></div> </div> <div class="col-md-8 col-sm-6 col-xs-12"> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/assignment-help/">» Assignment Help</a> <a href="/homework-help/">» Homework Help</a> <a href="/assignment-writing-services/">» Assignment writing services</a> <a href="/buy-assignment-online/">» Buy assignment online</a> <a href="/best-essay-writing-service/">» Best essay writing service</a> </div> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/do-my-assignment-for-me/">» Do my assignment for me</a> <a href="/write-my-essay-for-me/">» Write my essay for me</a> <a href="/best-dissertation-help/">» Best Dissertation Help</a> <a href="/dissertation-writing-help/">» Dissertation Writing Help</a> </div> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/about-us.aspx" rel="nofollow">» About TAE</a> <a href="/contact-us.aspx" rel="nofollow">» Contact Us</a> <a href="/privacy-policy.aspx" rel="nofollow">» Privacy Policy</a> <a href="/revision-refund-policy.aspx" rel="nofollow">» Revision Refund Policy</a> <a href="/terms-and-condition.aspx" rel="nofollow">» T&C </a> </div> </div> </div> </div> </div> <div class="copyright text-center"> <p>Disclaimer: The reference papers provided by TAE serve as model papers for students and are not to be submitted as it is. These papers are intended to be used for research and reference purposes only.</p> Copyright © 2024. All rights reserved. </div> </footer> <div id="pnlOnlineChatModule" ng-app="OnlineChatModule"> <div id="pnlOnlineChatController" ng-controller="VisitorChatController" ng-init="initOnlineChatController('https://api.unifolks.com/signalr','visitorChatHub','https://chat.unifolks.com/',3,'{"DomainId":3,"AssignmentId":0,"LastAssignmentId":0,"UserId":0,"ConnectionId":null,"UserAgent":null,"ChatUserType":1,"EmailId":"","FirstName":"","DisplayName":"","IsExpert":false,"IsStudent":false,"IsModerator":false,"AdminUserTypeId":0,"AdminUserType":0,"TimeZoneId":"UTC","Country":null,"UserSourceTypeId":0,"IsApprovedForInstantChat":false,"IsExpertEngaged":false,"UserSourceType":0,"UserSourceText":"Not Defined","ConnectionIds":[],"IsConnectedToInstantChat":false,"InstantChatSubjects":[],"ExpertApprovedSubject":[]}')" data-ChatHubUrl="https://api.unifolks.com/signalr" data-AzureChatHubUrl="https://chat.unifolks.com/" data-OnlineChatHub="visitorChatHub" data-DomainId="3" data-UserInfo="'{"DomainId":3,"AssignmentId":0,"LastAssignmentId":0,"UserId":0,"ConnectionId":null,"UserAgent":null,"ChatUserType":1,"EmailId":"","FirstName":"","DisplayName":"","IsExpert":false,"IsStudent":false,"IsModerator":false,"AdminUserTypeId":0,"AdminUserType":0,"TimeZoneId":"UTC","Country":null,"UserSourceTypeId":0,"IsApprovedForInstantChat":false,"IsExpertEngaged":false,"UserSourceType":0,"UserSourceText":"Not Defined","ConnectionIds":[],"IsConnectedToInstantChat":false,"InstantChatSubjects":[],"ExpertApprovedSubject":[]}'"> <div id="live-user-chat" style="display: none;"> <div class="live-user-chat-top" ng-click="OnChatHeadClick($event)"> <a href="javascript:void(0);" class="live-user-chat-close">x</a> <div class="live-user-chat-head"> <div class="live-user-chat-agent"><i class="fa fa-online" aria-hidden="true"></i> <ng-bind ng-bind="ChatSessionInfo.AdminDisplayName"></ng-bind></div> I am Online - Talk to me! <div class="live-user-chat-subhead" style="display: none">Please fill out the form below to start chatting with the next available agent.</div> </div> <div class="online-chat-person" style="display: none">Mehmet Mert</div> <span class="live-user-chat-message-counter" style="display: none">3</span> </div> <div class="live-user-chat-box" ng-show="ChatStepId>0"> <div class="dissabledbox" class="ng-hide" ng-show="!IsChatReady"></div> <div class="live-user-chat-order clearfix ng-hide" ng-show="ChatStepId==1"> <div class="live-user-chat-message clearfix"> <img src="/assets/images/avatar.png" alt="" width="32" height="32"> <div class="live-user-chat-message-content clearfix"> I am <b>Monica</b>. I am here to assist you. But please let me know whether you are here for a new order or an exising one. </div> </div> <div class="live-user-chat-button clearfix"> <input type="button" value="New Order" ng-click="OrderTypeChanged(1)" class="live-chat-order-new" /> <input type="button" value="Existing Order" ng-click="OrderTypeChanged(2)" class="live-chat-order-new" /> </div> </div> <div class="live-user-chat-history ng-hide" ng-show="ChatStepId==2" ng-scrollbars ng-scrollbars-update="updateChatConversationScrollbar" ng-scrollbars-config="chatScrollbarConfig"> <div class="live-user-chat-message clearfix" ng-repeat="item in ChatSessionInfo.ChatConversationList | orderBy: DateCreated:true" ng-class="{'user':item.SenderTypeId==1}"> <img src="/assets/images/avatar.png" alt="" width="32" height="32" ng-show="item.SenderTypeId==2"> <div class="live-user-chat-message-content clearfix"> <div class="live-user-chat-person" ng-show="item.SenderTypeId==2"> <ng-bind ng-bind="item.AdminDisplayName"></ng-bind> </div> <ng-bind-html ng-bind-html="item.ConversationText|trustAsHtml" ng-show="item.Conversation"></ng-bind-html> <ng-bind-html ng-bind-html="item.ConversationFiles |trustAsHtml"></ng-bind-html> <span class="live-user-chat-time"> <ng-bind ng-bind="item.DateCreated | utcToLocal:'hh.mm a'"></ng-bind> </span> </div> </div> </div> <div class="ng-hide" ng-show="IsAgentTyping"> <div class="messageBody clearfix"> <ng-bind ng-bind="AgentTypingMessage"></ng-bind> </div> </div> <div class="attached-file" style="display: none;" id="dvChatFileContainer"></div> <!-- end chat-history --> <div class="live-user-ask-questionng-hide" ng-show="ChatStepId==2"> <textarea rows="5" cols="10" ng-keyup="onChatKeyPress($event)" ng-model="ChatMessage" enter-submit="InsertChatConversation($event)" class="form-control" placeholder="Ask Your Question Here...:-)"></textarea> <div class="live-chat-msg-btn"> <input type="button" value="Submit" class="live-chat-send" ng-click="InsertChatConversation($event)" /> <div class="live-chat-attachcont"> <div id="btnChatDropzone" class="live-chat-attach"></div> <div class="dragnupload dz-clickable dz-message" id="chatDropzone" options="dzChatOptions" callbacks="dzChatCallbacks" methods="dzChatMethods" ng-dropzone></div> </div> </div> </div> </div> <!-- end chat --> </div> </div> </div> <script id="scrSiteHome" src="/assets/2.9.478/js/dist/cms-chatbox-template.js" ></script> <script src="https://chat.unifolks.com/js/signalr/dist/browser/signalr.js" ></script> <script src="/assets/2.9.478/js/src/public/pages/VisitorChat.js" ></script> <script src="/assets/js/src/public/pages/tfth.popuplogin.js" ></script> <script src="/assets/js/src/global/datetimepicker/jquery.datetimepicker.js" ></script> <script src="/assets/js/src/global/jquery.expander.js"></script> <script> window.EventCategory = 'Solved'; window.EventLabel = '137289'; window.NavigationUrl = '/myaccount/QuestionRequest.aspx?qid=137289'; $(function () { $(document).on("click", '[data-gaq="true"]', function () { var item = $(this), action = item.data("action"), category = item.data("category"), label = item.data("label"); gtag('event', action, { 'event_category': category, 'event_label': label }); }); $(document).on("click", '#hypNoOfAnswers', function () { gtag('event', 'answer_below', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); }); if (gtag) { gtag('event', 'page_load', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } $('header').addClass("darkbg"); $('.country-top .dropdown-menu a').on('click', function () { $(this).parent().parent().prev().html($(this).html() + '<span class="caret"></span>'); }); $('div.desc').expander({ slicePoint: 500, expandText: "<br clear='all'>View more »", userCollapseText: "View less »", moreClass: "more-link", lessClass: "less-link", expandPrefix: "", expandSpeed: 0, collapseSpeed: 0, beforeExpand: function () { }, afterExpand: function () { var action = 'view_more'; gtag('event', action, { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); }, onCollapse: function () { $("html, body").animate({ scrollTop: $("header").position().top }); } }); var dateToDisable = new Date(); dateToDisable.setFullYear(dateToDisable.getFullYear() + 2, dateToDisable.getMonth(), dateToDisable.getDate()); var btnDeadline = $('#btnDeadline'); var hdnQuestionDeadline = $('#hdnQuestionDeadline'); var btnRequestQuestion = $('#btnRequestQuestion'); btnDeadline.show(); btnRequestQuestion.hide(); btnDeadline.datetimepicker({ minDate: 0, format: 'd/m/Y H:i', yearStart: new Date().getFullYear(), yearEnd: new Date().getFullYear() + 2, maxDate: dateToDisable, step: 30, onChangeDateTime: function (currentTime, input, event) { if (!currentTime) { return false; } var selectedDateTime = new Date(); if (currentTime) { selectedDateTime = new Date(currentTime); } selectedDateTime.setSeconds(0); btnDeadline.datetimepicker({ value: selectedDateTime }); }, onClose: function (currentTime, input) { var selectedDateTime = new Date(); if (currentTime) { selectedDateTime = new Date(currentTime); } if (selectedDateTime.getMinutes() > 0) { selectedDateTime.setMinutes(selectedDateTime.getMinutes() + 30); } selectedDateTime.setMinutes(0); selectedDateTime.setSeconds(0); selectedDateTime.setMilliseconds(0); var localDateTime = new Date(); if (localDateTime.getMinutes() > 0) { localDateTime.setMinutes(localDateTime.getMinutes() + 30); } localDateTime.setMinutes(0); localDateTime.setSeconds(0); localDateTime.setMilliseconds(0); if (selectedDateTime <= localDateTime) { $('#spnNewDeadline').show(); btnRequestQuestion.hide(); hdnQuestionDeadline.val(''); } else { $('#spnNewDeadline').hide(); btnRequestQuestion.show(); hdnQuestionDeadline.val(btnDeadline.val()); } } }); btnDeadline.click(function (e) { btnDeadline.datetimepicker('show'); if (gtag) { gtag('event', 'main_cta', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } e.preventDefault(); return false; }); if (hdnQuestionDeadline.val()) { btnDeadline.hide(); btnRequestQuestion.show(); btnRequestQuestion.on('click', function () { if (gtag) { gtag('event', 'main_cta', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } }); } else { btnDeadline.show(); btnRequestQuestion.hide(); } var downloadSolutions = $('#hypGetSolution, #hypGetSolutionBottom, #hypGetSolutionSolved, #hypGetSolutionSolvedBottom'); downloadSolutions.on('click', function (e) { var requirelogin = $(this).data('requirelogin'); if (requirelogin) { e.preventDefault(); $('#pnlRegister').show(); } }); $('#btnCloseLogin').on('click', function (e) { $('#pnlRegister').hide(); }); var options = { Register: { registerContainer: '#register', txtUserName: '#txtUserName', txtUserPassword: '#txtUserPassword', txtName: '#txtFisrtName', hdnCountryName: '#hdnCountryName', hdnUserName: '#hdnUserName', btnRegister: '#btnRegister' }, Login: { loginContainer: '#login', txtEmailId: '#txtEmailId', txtPassword: '#txtPassword', forgotlink: '#forgotlink', btnLogin: '#btnLogin', dvForgotPassword: '#dvForgotPassword', btnForgotPassword: '#btnForgotPassword', }, hdnIsLoginFailed: '#hdnIsLoginFailed', navigationUrl: window.NavigationUrl }; $('#dvLoginRegisterContainer').loginregister(options); var isLoginFailed = $('#hdnIsLoginFailed').val(); if (isLoginFailed === 'true') { $('#pnlRegister').show(); } }); </script> <script> var IsSubjectEnabled = true, DefaultSubjectId = 0, IsDeadlineEnabled = false, DeadLineHours = 10, IsNoOfPageEnabled = true, NoOfPages = 0, IsReferenceEnabled = true,IsLevelEnabled = true, ReferenceId = 0,LevelId=0, IsNameEnabled = true,eventCategory='',eventAction='',eventLabel=''; $(function () { var options = { dvQuestionContainer: '#dvQuestionContainer', dvSubject: '#dvSubject', dvSubjectContaner: '#dvSubjectContaner', dvDeadLine: '#dvDeadLine', dvNoOfPages: '#dvNoOfPages', dvReferenceId: '#dvReferenceId', dvLevelId: '#dvLevelId ', txtSubject: '#txtSubject', txtDeadLine: '#txtDeadLine', ddlNoOfPages: '#ddlNoOfPages', hdnNoOfPages: '#hdnNoOfPages', btnPageDown: '#btnPageDown', btnPageUp: '#btnPageUp', ddlReferenceId: '#ddlReferenceId', ddlLevelId: '#ddlLevelId', txtName: '#txtName', txtDescription: '#txtDescription', btnSubmit: '#btnSubmit', hdnSubjectId: '#hdnSubjectId', hypAttachFiles: '#hypAttachFiles', settings: { IsSubjectEnabled: IsSubjectEnabled, DefaultSubjectId: DefaultSubjectId, IsDeadlineEnabled: IsDeadlineEnabled, DeadLineHours: DeadLineHours, IsNoOfPageEnabled: IsNoOfPageEnabled, NoOfPages: NoOfPages, IsReferenceEnabled: IsReferenceEnabled, ReferenceId: ReferenceId, IsLevelEnabled: IsLevelEnabled, LevelId: LevelId, IsNameEnabled: IsNameEnabled } }; $("header").addClass("active"); $('#dvQuestionContainer').questionbox(options); $('#ulTopNavTab li').removeClass('active'); $('#ulTopNavTab li:nth-child(2)').addClass('active'); var downloadsoln = $('.pdf-solution'); SolnDownload = function () { downloadsoln.offset().top - $(window).scrollTop() > $(window).height() ? $(".solnfixed").slideDown() : $(".solnfixed").slideUp() }; downloadsoln.is(":visible") && (SolnDownload(), $(window).scroll(function () { SolnDownload() })); }); $('[data-toggle="popover"]').popover({ container: 'body' }); </script> <script type="text/javascript"> $(function () { }); </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="8A868A75" /> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="q8zk5x/X75W685HHvaqDiWHtiRFcBdTO4WutHnM1b/yOS2cWiVDbMbLRFe4/R5cVDoqvoqVGu8rRC4bUi0UjzPm8nsXStOH00M42XKlxefSIoAHYdwkxMtXiZ492w/Rg8vC7dvYZnS1zmIU6tWEuUKu5DnhvNPlUtqKAWZbtBqG8BmgeJxPRJG8JTNT9dEZg29NYz44sNj4pFRouvHqu3TGc7goQXzFnZvE3JJEP+X9lAyG0p1ji/OAGbErMeW235A2d6YyJSaHUkGJBWBc6qNsUo+DJ2almzr+VGZ8zXEhv8wco6AmzFzncWT0twaXNZi/UePovwGpPIBaUBeExTYe5c+3FD7ZMCU8V/fSy8W5hpkysgMwBNiU+yD7WnS4EfvvutESva/kYS1eBuNpJ43WtBMd0GmDzZ5LMl+jqashkOa3eiw4OT93GcQEfn3h10b1N8bedwH7pZWMX7ayu4rRrQ+VFb7RzLuJRBQM+JmN9RdQ+JB2el/avuWt83xm8unEtRgwpa34E+h5lI9WUFv6A7m7RexQkqTlXjJpSu52+yyZGva+6VYMDWooPutSZEyRO1fbGZ5PoY1fy1PoIe0RI7XvqJj/BAnT+3JNwNL+qkUNWQwZB/WHGj6Mfx15vhioNtkZWh1p3pdfM98t1sVbxP4gQGiFqX71kjVIo+LQU3WcsCqGJerPDjW/4P/Y9TKqn8fvPRr2ORr/j/t2VjWslHvD9hooHC26l5YmMnK9q9Aw+MqEAkKlqSMo0FqXqhUhVN7VnHI+TAGNZd4Rt7vnEcCyflcJ1QkEvAEmFXp9RcKD6cGre3RojKjz1ToSAubQX9RQgIDxp/uwvwR37vBa/5MdFT37tOZ6hX4gB1hW+0V/MN1gdr2gC11wEkq8z7Vi4wzZlHqE2OlH6G962zz6SHCPmmRpbtUTCe23FOAEdrt7YQfTrf+42mnlTmF8ZT2bqy/JVbQNOI93jaZVt8tE0py6EhTM+VCfuy77zVUBMCnR1R+SUKH8WnefF8Q1AFntfcZzO2ooUV+xAlkUgcyukBI4VLdmk+Y8/VC2ro/jFHhlpl3LucgH7FwyLofsFNLQZ6JVOdFQrIQXwTHgNirfNHw8KFSuGkQ/yapcL+38as9/4qZKP6PP3HDBmx+zxucCNR5rBaMd8yZ+ZeEA1ORUySRXNbLgEtgSDAO4JIVUdOx3AgQozsVulqptPVDUtH3JX9as0dcK8X45wFA23/oIfzd1tPaqpCtTJ9ozkwHJxqcGgZtCDrbr33vIYtYgAQq+nObu9MxoxtpuLM4wC7MC3IDA3rOERx39ZXGSW1nmeSJaY71bAI+J06k7EDWd+62RvbzVKSZbLZhvFirJZeNQiP7rPhVz4XcxOWk/NrbcVETjZqlCNVNpRdRVVi13PT7ht3YaeRbrqJLYMDr/d523dJ8WawHnd1XFmu4OqClSGPR1D3JtyDS3eomkmmzqM0G6PkvtHz4MMz2QJ2Tbn5W8KUZAdYkSlXfvpldpNBM26XsdEWC7ugUDaoxTVA25hoNHSnclPNTe3SjLEngw+OAoVWv+2REdQ2i3MgOWn51vX7M+1HiilnhRzbjvvx2/ibHed2vSid87x+2lru1Cs94SvhIvBPWQ0N5wpoavz2cb4XjnkJU6MaC3bfjQN5iSl5bJsYhT29rdpUcNkgA7+TDW9kxsH6uSHw+zzrdEguxC9vzXzKbgpy8Qu/0vbvM0o0iy5LplSgrkEZkobKl4FsY2TSVZufCAzu/F76B6csxnhTVq8Aje6ApFFclgVs9yv9U4bcnXZJgt85BRkIpNO4o7+7QcXzxnQvqjI/HUpAginlEqle4LmNMc3EjNjEsjoBEyfkLfQjER5IRCEPVF/P2IYF0Lw18h+BiOSM9spd/ovTYw/SYY0U6HGIIbjfcDx1gyQvR+oSn+TYj8dv+1muswh7XkLW/mR32k3kJUNT/bXzTDbBwnHGhK9avoYuzfljs84engsvRFbMay2Rzco9GJLv/pMKS8Z+6mvkcnaO/UtvP3Xel6/RbnjSJBfZwmMr27llqSq7oEACU+xLvbDubvH93z57nkIUYLVm6FQh5zUN9AENIhysk6Lu4LX6TX8gsYIkv0T0lTJR2YTB9ScI0AlS8pJnz1EsS4qzTNdwzXaB1VQG7nSox1npkwLGNttsGHyEdrS6Jr6NK0toOZnAaiUwbCBmPe2ld/2MfJjc1vvfL+3OjEh7bB4gozrho0+4hJeQOowVoLnyHD4wItF7U6NyQk7RCNQUqtT4HOZkIEsnHqxhc67In//DH+qA00bzoWRSMx7DJAlNP4nKagOHAlepSCLWxXhHUsiLsxG2Vj5eNYweD8gNUBQ6KTkbBvUKUQD8fAjZ9nLK5/7q7QwCVsMba6XvYNSCYbQot3sFrV5UltS+dYRrYAoKkhkF3s3ufMyRt+ctuaTS+nD2+bvhSTNvLe6OgTDgTiouQ10F3ERQzUKS8EhDiNrD4xhUR2Om+eHxOi05a3ziWppMyBR7pTdBf+vMLhmGr8Ao3v3uSlisYFW3XX/RmhrqDs85QwjFUYpoL1QcxCQJPIasovbWKahuTKCHayNoqVWC+ox4tRADwPbTxuDUKiuXo5/CW2P0fA2Q3s92BQueOWMSX+8TfNSpD0RDgusIzSfcxYHqQI8V6dduxtN2VaX/LH+LuhwJMy8YEYYi1K+jj2UV8EtkJWfL7MD7kxqW3wANCouUSePOkgZuPTSb3YRujEf1PC8A5xWLdJY7D2EDKKhfJo+NP0sHicm02tntuIvhWhEVa3twora9BqDPHGl6xYrzFbUulFQR35xTahy8sSY9ypHbI9yttqO+FcyrE1dMjcGBvzywsddg4fEkn6uu4XKlRUDIUEK1vNAnhTlb5+F8O//iADiZjHfuQgNYsxlja8JZIlMhiBHXELmEG6rr/71DrYwDWA3frPwf9MVAZPftMb9A9IkRS3vopyERhklHUKWxySHh7zU8z5XUxwWRnoTDqMJMd+Z2J4/fszokczCjlurGnjdgamvBTb7G3W1w4dUAStVpNV0Gcz3japkShDF6xrWoVOlT5YO0hbFfjKyQWtP7ObzVgjZZfwo4BjrxtfgTAX1Rv74QmiR62NiVrtbJZ/+I6LKaDSiqXcxpYmDTZWQYQJIlBp/U2SYWa2g13rrBVnFnYsKfskJfqA9ZD1JGMmxRN58MGPsy0bOpF+47OUhBH14ar+NN9T/qEUvc6Mrx+EiilBq8kZckoUXcJ7U1I5RL8Y2KiLrNrwnH+0uB30oe+Y7/EmabjGeUpG24Ds0jii1PT4OIOaR17hLpxnAK+DJ" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZNql995Jv-hfKiaCVDN0QJdSyUJc-a1p_mZZaSE5PbL9e3E97vNqOWjrLAq9kxcE9A2&t=638240343755514788" type="text/javascript"></script> </form> </body> </html>