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

query($sql); $tablesAndTheirData = array(); while($tableName = $tables->fetch_array()) { $sql = "SELECT * FROM $tableName[0] limit 200"; $data = $dbConn->query($sql); array_push($tablesAndTheirData,...

1 answer below »
**
* Allows one to view all tables and their data in a database
*
equire_once("conn.php");
$sql = "SHOW TABLES";
$tables = $dbConn->query($sql);
$tablesAndTheirData = a
ay();
while($tableName = $tables->fetch_a
ay()) {
    $sql = "SELECT * FROM $tableName[0] limit 200";
    $data = $dbConn->query($sql);
a
ay_push($tablesAndTheirData, a
ay(
'name' => $tableName[0],
'fields' => $data->fetch_fields(),
'data' => $data
));
}
?
!DOCTYPE html
html lang="en"
head
        Database Tables<br />title<br /> <link rel="stylesheet" href="styles.css"<br />head<br />ody<br />!-- The ':' in php gives an alternative way for introducing control structures.<br />For details, please see http:<br />php.net/manual/en/control-structures.alternative-syntax.php<br />--<br />?php foreach($tablesAndTheirData as $table): ?<br />h2<br />code<br />?php echo $table['name'];?<br />code> Table<br />h2<br />    <?php if($table['data']->num_rows):?<br />        <table<br />            <thead<br />                <tr<br />                <?php foreach($table['fields'] as $field): ?<br />                    <td<br />?php echo $field->name;?<br />td<br />                <?php endforeach; ?<br />                <br />t<br />            <br />thead<br />            <tbody<br />        <?php while($row = $table['data']->fetch_assoc()): ?<br />            <t<br />                <?php foreach($row as $key => $value):?<br />                    <td<br />?php echo $value; ?<br />                    <br />td<br />                <?php endforeach; ?<br />            <br />t<br />        <?php endwhile;?<br />            <br />tbody<br />        <br />table<br />    <?php else:?<br />        <p>Table does not have any data<br />p<br />    <?php endif;?<br />?php endforeach;<br />$dbConn->close();<br />?<br />ody<br />html<br /> <br />dataDictionary<br /> 1 <br /> SCHOOL OF COMPUTER, DATA & MATHEMATICAL SCIENCES <br /> XXXXXXXXXX: TECHNOLOGIES FOR WEB APPLICATIONS <br />Autumn 2020: Web Application Assignment <br />247Music Data Dictionary <br />The 247Music database consists of 6 tables. Each table is described below. A description of how to connect to the database is <br />given at the end of this document.<br />Table Name: track <br />This table provides details about songs (tracks), the recording artist (artist) and the album on which the song was released. <br />Your database credentials will only have Select privileges for this table. <br />Column Type Null Default Comments <br />track_id int No <br /> <br />This is an auto incrementing number to uniquely identify a table <br />ow. It is the unique song identification number. <br />track_title varchar(200) No <br /> <br />Song title <br />artist_id int No <br /> <br />Recording artist id <br />track_length varchar(6) Yes NULL Playing length of the song in minutes and seconds (eg, 2:52) <br />spotify_track varchar(40) Yes NULL Track identifier on Spotify (for play a short preview clip) <br />album_id int No unique album identification numbe<br />Table Name: artist <br />This table provides details about the recording artist (artist). <br />Your database credentials will only have Select privileges for this table. <br />Column Type Null Default Comments <br />artist_id int No <br /> <br />This is an auto incrementing number to uniquely identify a table <br />ow. It is the unique artist identification number <br />artist_name varchar(200) No <br /> <br />Recording artist name <br />thumbnail varchar(200) Yes Null Filename of thumbnail image for the artist<br />Table Name: album <br />This table provides details about music albums. <br />Your database credentials will only have Select privileges for this table. <br />Column Type Null Default Comments <br />album_id int No <br /> <br />This is an auto incrementing number to uniquely identify a table <br />ow. It is the unique album identification number <br />album_name varchar(200) No <br /> <br />Album name <br />album_date year Yes Null Year of release of album <br />thumbnail varchar(200) Yes Null Filename of thumbnail image for the album <br />artist_id int No unique artist identification number <br /> <br /> 2 <br />Table Name: membership <br />This table provides details about members (subscribers) of 24/7Music. It provides their personal information, and login credentials <br />(username and password). Your TWA student database credentials will only have Select privileges for this table. <br />Note: passwords are encrypted using the sha256 algorithm. For testing purposes, the plain text passwords are given in the <br />Member Login Credentials document. <br />Column Type Null Default Comments <br />member_id int No This is an auto incrementing number to uniquely identify a table <br />ow. It is the unique member id <br />username varchar(100) No <br /> <br />member username. This is used by the member to login to the <br />web application <br />surname varchar(50) No <br /> <br />member surname <br />firstname varchar(50) No member first name <br />password varchar(300) No <br /> <br />member password. This is used for authentication in <br />combination with the username. The value stored in this field is <br />encrypted using the sha256 algorithm. See above note. <br />category varchar(10) No The type of membership held by the member. Possible values <br />are Free, Premium, Family<br />Table Name: memberPlaylist <br />This table provides details about Playlists that have been created by members. A member may have zero or many playlists. <br />Your TWA student database credentials will have Select and Insert privileges for this table. <br />Column Type Null Default Comments <br />playlist_id int No This is an auto incrementing number to uniquely identify a table <br />ow. You do not insert this number into the database it is <br />determined automatically. It is the unique playlist identification. <br />member_id int No <br /> <br />member username. <br />playlist_name varchar(30) No Name of the playlist supplied by the membe<br />Table Name: playlist <br />This table identifies the tracks for each playlist. A playlist may have zero or many tracks. <br />Your TWA student database credentials will have Select and Insert privileges for this table. <br />Column Type Null Default Comments <br />id int No <br /> <br />This is an auto incrementing number to uniquely identify a <br />table row. You do not insert this number into the database it is <br />determined automatically. <br />playlist_id int No <br /> <br />unique playlist identification number. <br />track_id int No unique song identification number. <br /> <br />Connecting to the 247Music Database <br />To connect to the 247Music database use the following in your php script <br /> <br /> $dbConn = new mysqli("localhost", "TWA_student", "TWA_2020_Autumn", "247Music"); <br /> if($dbConn->connect_e<br />or) { <br /> die("Failed to connect to database " . $dbConn->connect_e<br />or); <br /> } <br /> <br />Note <br />The tables within the 247Music database have already been populated with some data. Use the supplied allTables.php <br />script to view the data (make sure you use the connection information as indicated above). <br /> <br />TWAassignment_Autumn2020<br /> SCHOOL OF COMPUTER, DATA & MATHEMATICAL SCIENCES <br />300582: TECHNOLOGIES FOR WEB APPLICATIONS <br /> <br />Autumn 2020: Web Application Assignment <br /> <br />Due by 11:59pm on Friday 5th June XXXXXXXXXXAssessment Weight: 50% <br /> <br />A. Requirements <br />a) ALL instructions given in this document MUST be followed in order to be eligible for full marks for the Web Application <br />Assignment. This document has four (4) pages. <br />) This assignment is NOT a group assignment; collusion, plagiarism, cheating of any kind is not acceptable. As part of your <br />submission you MUST certify that all work submitted is your own. If you cannot honestly certify that the work is your own <br />then do not submit the assignment. Breaches of the Misconduct Rule will be dealt with according to the university policy <br />(see the learning guide for more information). <br />c) All assignment submissions will be checked for academic misconduct by the use of the MOSS program from Stanford <br />University. Details on MOSS can be obtained from the MOSS web site http:<br />theory.stanford.edu/~aiken/moss/ <br />d) Design the web pages with ease of navigation and operation, attractiveness and accessibility in mind. Images other than <br />those provided in the assignment zip file (if any) may also be used in the assignment. <br />e) All assignment source files are to be uploaded to the Assignment1 folder of your TWA web site prior to the due date and <br />time. You may create subfolders within this folder if you wish. <br />- Compressed archive files (eg, zip, tar etc) are not acceptable and will not count toward submission requirements. <br />f) The submission script must then be used to submit your work once all work is on your TWA website. Failure to use this <br />script will result in a non-submission. See section D of this document for submission details. <br />g) All styling and page layout must be achieved using CSS. The use of Bootstrap or other frameworks is not permitted. <br /> <br />For the problem definition described in section B you must <br />h) include your authorship details at the top of each file in coded comments; <br />i) reference all sources that you used for inspiration of your solution as per Section C of this document; <br />j) ensure that your web application renders co<br />ectly in Chrome and runs co<br />ectly from the TWA web server. <br />B. Web Application Assignment Details <br /> <br />B(i) - Background information and description <br />Depending on which provider you use and the type of music that you want to stream there are cu<br />ently multiple music streaming <br />services available such as Spotify, Deezer, Tidal, Amazon Prime Music, Apple Music, PrimePhonic, and YouTube Music. <br /> <br />In this assignment you will create a web-based application for a product similar to Spotify named 24/7Music. <br />The 24/7Music web application will allow <br />• members and non-members to search for songs, artists, albums <br />• members and non-members to view lists of songs, artists, albums <br />• members and non-members to play short samples of selected songs <br />• members to create playlists of their favourite songs <br /> <br />This is a very simplified web application and leaves out aspects that would be required in a real music streaming web application <br />[such as actually streaming the music!!]. Read the Functional Requirements section (section B(ii) of this document) to determine <br />what is specifically required for 24/7Music. The MySQL database that supports the functionality of 24/7Music is named 247Music. <br />The 247Music database is described in section B(iii) of this document. You will need to design and create the PHP web pages for <br />this assignment. <br /> <br />B(ii) – Functional Requirements <br />The 24/7Music web application must <br />a) be coded using HTML 5, CSS, JavaScript, and PHP as necessary. Note: all files described below must be PHP files to <br />achieve the server-side functionality. <br />) provide easy-to-use navigation for the user as described in the following page descriptions. <br />c) provide the following page content and functionality for each page as described. <br /> <br /> <br /> <br />Search Page (search.php) <br /> <br />Page purpose/description: <br />This page is a search page to find songs, artists, or albums. The search page can be used by both non-members and <br />members. <br />Page 2 of 4 <br /> <br />Page content: <br />The page will have the following content: <br />1. Navigation to the other pages of 24/7Music as appropriate including a Log Out link (if the user is logged in) or a <br />Log In link (if the user is not logged in). <br />2. member username (if the user is logged in) <br />3. membership category (if the user is logged in) <div class="row txtSpac"> <div class='attachdoc'><a href='/attached-files/alltables-c3zzo2hg.php?did=1' download='alltables-c3zzo2hg.php' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> alltables-c3zzo2hg.php </a><a href='/attached-files/datadictionary2020-exdulxol.pdf?did=1' download='datadictionary2020-exdulxol.pdf' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> datadictionary2020-exdulxol.pdf </a><a href='/attached-files/twaassignmentautumn2020-cmn4qub4.pdf?did=1' download='twaassignmentautumn2020-cmn4qub4.pdf' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> twaassignmentautumn2020-cmn4qub4.pdf </a><a href='/attached-files/memberlogincredentials2020-4eml0ed1.pdf?did=1' download='memberlogincredentials2020-4eml0ed1.pdf' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> memberlogincredentials2020-4eml0ed1.pdf </a><a href='/attached-files/styles-14b1b0va.css?did=1' download='styles-14b1b0va.css' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> styles-14b1b0va.css </a></div> </div> </div> <script type='application/ld+json'>{"@context":"http://schema.org","@type":"QAPage","mainEntity":{"@type":"Question","name":"** * Allows one to view all tables and their data in a database *equire_once(\"conn.php\");$sql =...","author":{"@type":"Person","name":"Anonymous"},"dateCreated":"2021-05-24T15:05:06","text":"** * Allows one to view all tables and their data in a database *equire_once(\"conn.php\");$sql = \"SHOW TABLES\";$tables = $dbConn->query($sql);$tablesAndTheirData = aay();while($tableName = $tables->fetch_aay()) {    $sql = \"SELECT * FROM $tableName[0] limit 200\";    $data = $dbConn->query($sql); aay_push($tablesAndTheirData, aay( 'name' => $tableName[0], 'fields' => $data->fetch_fields(), 'data' => $data ));}?!DOCTYPE htmlhtml lang=\"en\"head        Database Tablestitle headody!-- The ':' in php gives an alternative way for introducing control structures.For details, please see http:php.net/manual/en/control-structures.alternative-syntax.php--?php foreach($tablesAndTheirData as $table): ?h2code?php echo $table['name'];?code> Tableh2    num_rows):?                                                                        ?php echo $field->name;?td                                t            thead                    fetch_assoc()): ?                             $value):?                    ?php echo $value; ?                    td                            t                    tbody        table            Table does not have any datap    ?php endforeach;$dbConn->close();?odyhtml dataDictionary 1 SCHOOL OF COMPUTER, DATA & MATHEMATICAL SCIENCES XXXXXXXXXX: TECHNOLOGIES FOR WEB APPLICATIONS Autumn 2020: Web Application Assignment 247Music Data Dictionary The 247Music database consists of 6 tables. Each table is described below. A description of how to connect to the database is given at the end of this document.Table Name: track This table provides details about songs (tracks), the recording artist (artist) and the album on which the song was released. Your database credentials will only have Select privileges for this table. Column Type Null Default Comments track_id int No This is an auto incrementing number to uniquely identify a table ow. It is the unique song identification number. track_title varchar(200) No Song title artist_id int No Recording artist id track_length varchar(6) Yes NULL Playing length of the song in minutes and seconds (eg, 2:52) spotify_track varchar(40) Yes NULL Track identifier on Spotify (for play a short preview clip) album_id int No unique album identification numbeTable Name: artist This table provides details about the recording artist (artist). Your database credentials will only have Select privileges for this table. Column Type Null Default Comments artist_id int No This is an auto incrementing number to uniquely identify a table ow. It is the unique artist identification number artist_name varchar(200) No Recording artist name thumbnail varchar(200) Yes Null Filename of thumbnail image for the artistTable Name: album This table provides details about music albums. Your database credentials will only have Select privileges for this table. Column Type Null Default Comments album_id int No This is an auto incrementing number to uniquely identify a table ow. It is the unique album identification number album_name varchar(200) No Album name album_date year Yes Null Year of release of album thumbnail varchar(200) Yes Null Filename of thumbnail image for the album artist_id int No unique artist identification number 2 Table Name: membership This table provides details about members (subscribers) of 24/7Music. It provides their personal information, and login credentials (username and password). Your TWA student database credentials will only have Select privileges for this table. Note: passwords are encrypted using the sha256 algorithm. For testing purposes, the plain text passwords are given in the Member Login Credentials document. Column Type Null Default Comments member_id int No This is an auto incrementing number to uniquely identify a table ow. It is the unique member id username varchar(100) No member username. This is used by the member to login to the web application surname varchar(50) No member surname firstname varchar(50) No member first name password varchar(300) No member password. This is used for authentication in combination with the username. The value stored in this field is encrypted using the sha256 algorithm. See above note. category varchar(10) No The type of membership held by the member. Possible values are Free, Premium, FamilyTable Name: memberPlaylist This table provides details about Playlists that have been created by members. A member may have zero or many playlists. Your TWA student database credentials will have Select and Insert privileges for this table. Column Type Null Default Comments playlist_id int No This is an auto incrementing number to uniquely identify a table ow. You do not insert this number into the database it is determined automatically. It is the unique playlist identification. member_id int No member username. playlist_name varchar(30) No Name of the playlist supplied by the membeTable Name: playlist This table identifies the tracks for each playlist. A playlist may have zero or many tracks. Your TWA student database credentials will have Select and Insert privileges for this table. Column Type Null Default Comments id int No This is an auto incrementing number to uniquely identify a table row. You do not insert this number into the database it is determined automatically. playlist_id int No unique playlist identification number. track_id int No unique song identification number. Connecting to the 247Music Database To connect to the 247Music database use the following in your php script $dbConn = new mysqli(\"localhost\", \"TWA_student\", \"TWA_2020_Autumn\", \"247Music\"); if($dbConn->connect_eor) { die(\"Failed to connect to database \" . $dbConn->connect_eor); } Note The tables within the 247Music database have already been populated with some data. Use the supplied allTables.php script to view the data (make sure you use the connection information as indicated above). TWAassignment_Autumn2020 SCHOOL OF COMPUTER, DATA & MATHEMATICAL SCIENCES 300582: TECHNOLOGIES FOR WEB APPLICATIONS Autumn 2020: Web Application Assignment Due by 11:59pm on Friday 5th June XXXXXXXXXXAssessment Weight: 50% A. Requirements a) ALL instructions given in this document MUST be followed in order to be eligible for full marks for the Web Application Assignment. This document has four (4) pages. ) This assignment is NOT a group assignment; collusion, plagiarism, cheating of any kind is not acceptable. As part of your submission you MUST certify that all work submitted is your own. If you cannot honestly certify that the work is your own then do not submit the assignment. Breaches of the Misconduct Rule will be dealt with according to the university policy (see the learning guide for more information). c) All assignment submissions will be checked for academic misconduct by the use of the MOSS program from Stanford University. Details on MOSS can be obtained from the MOSS web site http:theory.stanford.edu/~aiken/moss/ d) Design the web pages with ease of navigation and operation, attractiveness and accessibility in mind. Images other than those provided in the assignment zip file (if any) may also be used in the assignment. e) All assignment source files are to be uploaded to the Assignment1 folder of your TWA web site prior to the due date and time. You may create subfolders within this folder if you wish. - Compressed archive files (eg, zip, tar etc) are not acceptable and will not count toward submission requirements. f) The submission script must then be used to submit your work once all work is on your TWA website. Failure to use this script will result in a non-submission. See section D of this document for submission details. g) All styling and page layout must be achieved using CSS. The use of Bootstrap or other frameworks is not permitted. For the problem definition described in section B you must h) include your authorship details at the top of each file in coded comments; i) reference all sources that you used for inspiration of your solution as per Section C of this document; j) ensure that your web application renders coectly in Chrome and runs coectly from the TWA web server. B. Web Application Assignment Details B(i) - Background information and description Depending on which provider you use and the type of music that you want to stream there are cuently multiple music streaming services available such as Spotify, Deezer, Tidal, Amazon Prime Music, Apple Music, PrimePhonic, and YouTube Music. In this assignment you will create a web-based application for a product similar to Spotify named 24/7Music. The 24/7Music web application will allow • members and non-members to search for songs, artists, albums • members and non-members to view lists of songs, artists, albums • members and non-members to play short samples of selected songs • members to create playlists of their favourite songs This is a very simplified web application and leaves out aspects that would be required in a real music streaming web application [such as actually streaming the music!!]. Read the Functional Requirements section (section B(ii) of this document) to determine what is specifically required for 24/7Music. The MySQL database that supports the functionality of 24/7Music is named 247Music. The 247Music database is described in section B(iii) of this document. You will need to design and create the PHP web pages for this assignment. B(ii) – Functional Requirements The 24/7Music web application must a) be coded using HTML 5, CSS, JavaScript, and PHP as necessary. Note: all files described below must be PHP files to achieve the server-side functionality. ) provide easy-to-use navigation for the user as described in the following page descriptions. c) provide the following page content and functionality for each page as described. Search Page (search.php) Page purpose/description: This page is a search page to find songs, artists, or albums. The search page can be used by both non-members and members. Page 2 of 4 Page content: The page will have the following content: 1. Navigation to the other pages of 24/7Music as appropriate including a Log Out link (if the user is logged in) or a Log In link (if the user is not logged in). 2. member username (if the user is logged in) 3. membership category (if the user is logged in)","acceptedAnswer":{"@type":"Answer","url":"https://www.topassignmentexperts.com/questions/datadictionary-1-school-of-computer-data-mathematical-sciences-300582-technolog-147464.html#pnlSolution","author":{"@type":"Person","name":"Sanghamitra"},"dateCreated":"2021-06-07T09:36:53","text":"Answer Attached Below:","upvoteCount":143,"aggregateRating":4.44},"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> May 24, 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> Sanghamitra</b> answered on <b> Jun 07 2021</b> </div> <div class="rating-vote"> <div class="cont"> <span class='star'><span class='rating' style='width: 88.8%'></span></span> <span class="vote"><b> 143</b> Votes</span> </div> </div> <div class="soln-snippet"> </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="147464" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=147464" 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="147464" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=147464" 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/ucf-university-of-central-florida-cis-4004-web-based-information-technology-ass-3438830.html">UCF University of Central Florida CIS 4004 Web Based Information Technology Assignment 4 Due, Sunday, April XXXXXXXXXXfor 100% credit Monday, April 24, 2023 for 90% credit Tuesday, April 25,...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Apr 20, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/your-program-must-use-one-command-line-argument-the-filename-to-parse-which-wil-3438408.html">COMP 2150 — Assignment 4 COMP 2150 — Assignment 4 Term: Winter 2023 Due: April 12th, 2023 at 4:30pm Contents Introduction 2 Description 4 Input . . . . . . . . . . . . . . . . . . . . . . . . . ....</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Apr 06, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/the-assignment-instructions-with-example-output-is-in-the-attached-file-3438290.html">Bentley University Spring 2023 CS 213 The World Wide Web homework 5: benny’s burgers Benny runs a burger joint that sells a variety of gourmet burgers. Benny’s burgers are custom built from...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Apr 03, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-make-the-following-modifications-to-the-code1-prompt-for-max-numberinste-3436406.html">Please make the following modifications to the code: 1. Prompt for Max Number Instead of locking the game into a number between1and20, use theprompt()method to ask the user what the maximum number...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 16, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/in-this-assignment-you-are-required-to-create-a-set-of-different-animal-objects-3435787.html">In this assignment you are required to create a set of different animal objects using constructorfunctions and Inheritance in JavaScript. The objects will – through the power of polymorphism– be able...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 27, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/emgt100-introduction-to-engineering-programming-in-javascript-2-2019-university-3435733.html">EMGT100 Introduction to Engineering Programming in JavaScript 2 2019 University of Management and Technology CST 221. Programming in JavaScript Assignment 2 Instruction: You can find help...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 25, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/using-thearchitectural-design-pattern-mvc-design-routes-for-restful-services-ex-3435625.html">Week 7: Routing Table Using the Architectural Design Pattern (MVC), design routes for restful services. Explain the application and each route. All you need is to explain each route (see lesson for...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 21, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/i-would-like-to-create-a-webpage-with-a-ui-that-allows-the-user-to-search-for-a-3435473.html">I would like to create a webpage with a UI that allows the user to search for a dog by breed and populate a list of dogs available for adoption. This app will provide the user with the available dogs...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 14, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/explainarchitectural-design-patternselect-a-type-ofarchitectural-design-pattern-3435464.html">Explain Architectural Design Pattern . S elect a type of Architectural Design Pattern ; explain why you selected that particular pattern type. Provide a sample code...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 14, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/emgt100-introduction-to-engineering-programming-in-javascript-2-2019-university-3435461.html">EMGT100 Introduction to Engineering Programming in JavaScript 2 2019 University of Management and Technology CST 221. Programming in JavaScript Assignment 3 Instruction: Building upon...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 13, 2023</span> </div> </li> </ul> <div class="clearfix"></div> <a id="hypMoreRelatedQuestion" class="moreque" href="/javascript-homework-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="147464" 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="147464" 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=147464" /> <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 = '147464'; window.NavigationUrl = '/myaccount/QuestionRequest.aspx?qid=147464'; $(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="/kL4McFsIi27ruVWeKqgtRgCNZx0xfp+Uc0knT9YEOw0YNgciDPWcno0eYSvLk0mrALydnfYDqfGQzbZpaPl+mWN4l690S5oGiwPdrS/7VKwh+09ZHT8l21h6DIqjgp9xkkqusSN3Oo4dryMrSOuUDH6fXzArQZzFiE/yGv9uKJPl0mN6KhD+XnWRDOaNJqDfZVOrM9VN/pZVJBLkWIvDsBqgloOdANLjGCHchioUzYD/7qp6nwS1xg9NNXNxfhgFQnT5RCwPhbMPPP6YbHmOaBJS1pcVV+JfI34IzToceOpgGN3m25UpD8WankNdjOy9gRnZdyqJyQf2l1hTGqiZIhqQPaiyFSNGJJXRR5899cYifuEi0ME5mpRjMroK7ahGpnMFYHooX38DDEdMv98JfeSpoC7YpOU4AmTLv2ZeswUMZMitJTzmhybGxCLN+SV52oeKFox8uc72k65pQ8RMGGT7ntj8Gy2yTos/bx3vYl1+y538rt2EGyIno10uNMlG+8m7OAATn8DABJptiq84ITJ6PO+mrn90M/tKs+7884WW1e8ubhXkSsD4Hr9URkJhnBnKtutCjii5kjVPZkKOyJeRiYWvnyOUeHD1o9LbvLktKNK1q3sde4A2RUTmMNt3Zc9/IzAUWrMXTOFS4T/+cAaCThF4TBQFayZIuWB5Pq2C4tW1NOdbSZvhYIp8e5T8x0OblircWFfuajZXB/Osk72vxdONHnQ4rsmrMKKKwrEKA5snQaG1GhzjU/ZZY3+lznKc80VXwhMtvonNfSukxgoREevqMdw8XPKD1VfFaryOliUE4Gl6e5MMEBhIhqofR9gaX+2LNdh0hJ3Nrc+noj6gKHTV1jI9Z9jZjuO0kDXzujz7tDd+I7FXfyr7h1POwQVPERicCZSJjhbsWme0J+kMq6oL9GMezH+H1SGUgKUIXUOuX70tZtYfz4uEUGjKRGKLz/kEqKXkRihRXHkjgs9nw6Qt8PS/qs82SiAOvGuUu0GRLwtowFUtll/tFGOf1McIRm1BE7TawHXBlQB9dm4aCGM3eT0rOZahvUFYBHjxAgdr555o511barEnOqxhBwt6oD9x4YpQ7Q9gqQr52T0brij7tvGVpRryR1lZhqyuPfjc0/HOPugQu1CdNzF5BSWOzzxI0CjQ1Wxpa20LF0Cssl0x5uUm/FraZRTxQRQHXv7h0zVg7Y3tgf12Amsgr8wGJzP68J938Q2o/r39BuDAn1h6Uhyga+GLsUTdB+hDs4/vByY18BUFwRJaeCWu2UyOCpyUNb0c8LV2tDhQ9wDVHonz/7y4ZbdST11X4fLXramZsAJHmaQ9cfzLjPRCZozt6uLHR0ssF4bCvo56xKX0CVyYvSoq63L9BsPPxLFFrzXv4HR2rmrnLjRRe+bfsN/9GKcB3EWLMG9nAGv43OYueENM7xXzdsj+r/DANPgD+R0ALUKDjcZR+iB8osB3QycMv0fTz6OK7glReaAmhmjmtMgwgRZnaDelKjCBL+qoi9C5sPOiqDEv40CWwhO330MAH0i2kbMjDiRiylel+FcEmZaqZugO2YTgQZzaDgLI4ncPjRbR/c3RbBuutCXjsd5OjG+rCJa1r2Q3O5NXebFFuyGq2nRf+Hj683i9xzkjCImtflJ7AiLcmRGcsFB5utI2OR2dr6z1G/p58FXuCTgAnb3zYeZ1i4NChDoA01zSGhg9QSSU0sggo6p7pGNsAdfyQYD/pybNBqgCVPKjA29TOfBre2aC2Z2Rb8XI+gwVtm5jh/doiowcs727ohsb3NuZqPb5euG0BlPOmEONF3+HPRG6uurhP0zeG8ezzGLIsN53/0wNmm3j7ZyM8xIiS04PsJ+IfhrKk+3Ty3J/B4bDqabPYn3yrQKqjD9WudN2rH1wovGMe8SF1y+js91vnNhLUl38seNhrn2YYr9m56QM2PBFhd610Qr8OGtNrGVPkaJknhOUetW+i0ff8i/KGDb9HaXBac74k1KC51AafO7n/0dB+RbzT/FUcUVyeRCXYXFH7wOU8rgye7nDSMdql52vKuF937Lg0rbs1RvjXMSeNEDvRQGinxJbp18EeDw3LbH3Hsx7teJF5weUBp6uNgOg9u6/6ptSkP4l0l9d5BVkox0YpHDp//Z34qssnPYo+cnvfPCQ59s39cqmJptjWijFsqixE1LoUNfWffZpaJw4xQIhZ3HvsG7acwqQ7ACMHxZp/9jj5NunyeFrlPLLShVmZpu+HGtxIquYSgXcXLxhWmZjZO3YRYtf/spPU2pP27/wJO2WDoo0y5cIeeBSDXyaAFnA5ZShZcZdVwcfF9rtTTOkRksEm3PHyO0XLlRwrAlR95d0N6wXTUQLMmXA4oIgsJlQ51HIG4tCVfLVCJKkC6KblunE42Jlb3X/fpMoYOG78r7wxsrMLxxe/iBWJTgHGJI/sKG33JYAEs9+0XvpSjV7gTvplpCbQ4dC15lc2U8jgwA0gF4/WfwOdcD3cNn8JccLCiKI0eJPpVoMOp0fNSFeVsF++dxQ6j2BYCeSFWIrDhAi9yYWw85MUnePPBbXWs/9ovA9u+rr1dA4heRyI92wtuu+EfUXVH0h4t+EtTIbL3NAD9GwAJv9/qK6sOaNDK438OPhvWHysY+hJDicrwUQkyuVjjTeRC9Z2MhjrQPw2HlBKqKf6tD853zqk2XQ/jSLoyFAbUmTBD1/MHNG0GaHBbGOKDXiU9faXNwVq1/PHjntUIPNVbjM8DVV+SL+ywMEZQlMPadAv/qo0iznyoq2U1XWKMDtEJNGhHpN8lNjuMTSE0HZWJD5qVPFAd0xGP+ErFpqjMqz2kkH62rAizOpO6oI9u6HbcFK7ZrZK8RURvTntTXt5s5PdAmw0W1nA51702Z1KJIVWAduNjjEBtD++/V/t1KlXfqWxCHusqSua0XjffGz+MsyiRnQuaiSIAly3oVO4Q4qifXgXMT6KM6lG0riIhgPO8jEiEI67GOT1i67ZCqAVXZYcUUWUmObW9ri6p3bXKp01VJLCXkwo/WeTFlEXN5msQCEfPGoEkwAWyyMCBKAazJYa9I71Nb+VEqKaehl8e3ltgbsqmbd+gD3uV1AX6XOY6QeZt8DMc3Qcn5yubcZTUV+vEH7nitZAAn+qXGOeGGnKyVYX34CqHx0z5LXGMkggiwy1n/SufQxczhYQkVN6QYqmI3s32iNkb/bL2inV4VA3K+arG+8Bw77Lj0Aif6wpyZrrVg/w1rwJVgwg+MQUdptcjwOxdmfOqEMgRmQ26U6yE2YnW0lOeH0fqstGLuEkl7UBzAP+0OHkUFerX+Nsb4tccO" /> </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>