Tags and text that do not show directly on the page are


Part I: MCQ: [45 points, 1 point each]

1. Tags and text that do not show directly on the page are placed where?

A- Tables

B- Head

C- Body

D- Forms

2. The tag belongs where in your HTML?</p> <p>A- Form</p> <p>B- Body</p> <p>C- Head</p> <p>D- Tables</p> <p>3. What tag tells the browser where the page starts and stops?</p> <p>A- <head></p> <p>B- <body></p> <p>C- <link></p> <p>D- None of the Above</p> <p>4. Which of the following will NOT be found in the <head> section?</p> <p>A- Metatags</p> <p>B- Title</p> <p>C- Table</p> <p>D- <style></p> <p>5. Which is the correct tag to make a link that will send an email?</p> <p>A- <a href="sendmail://nicholso_p01@firn.edu"></p> <p>B- <a href="nicholso_p01@firn.edu"></p> <p>C- <a href="mailto:nicholso_p01@firn.edu"></p> <p>D- <a href="to_:nicholso_p01@firn.edu"></p> <p>6. Table cells are represented by:</p> <p>A- <td></td></p> <p>B- <tr></tr></p> <p>C- <table></table></p> <p>D- <cell></cell></p> <p>7. To link your Web page to a style sheet, you must use the _____ tag.</p> <p>A- <head></p> <p>B- <style></p> <p>C- <link></p> <p>D- <a></p> <p>8. To center, right or left justify text or an image, what code would I use?</p> <p>A- justify</p> <p>B- align</p> <p>C- push</p> <p>D- send</p> <p>9. What does CSS stand for?</p> <p>A- Creative Style Sheets</p> <p>B- Cascading Style Sheets</p> <p>C- Computer Style Sheets</p> <p>D- Colorful Style Sheets</p> <p>10. Where in an HTML document is the correct place to refer to an external style sheet?</p> <p>A- In the <body> section</p> <p>B- In the <head> section</p> <p>C- At the top of the document</p> <p>D- At the end of the document</p> <p>11. Which HTML tag is used to define an internal style sheet?</p> <p>A- <css></p> <p>B- <style></p> <p>C- <script></p> <p>D- <link></p> <p>12. Which HTML attribute is used to define inline styles?</p> <p>A- class</p> <p>B- font</p> <p>C- styles</p> <p>D- none of the above</p> <p>13. Which is the correct CSS syntax?</p> <p>A- body {color: black;}</p> <p>B- body:color=black;</p> <p>C- {body;color:black;}</p> <p>D- {body:color=black;}</p> <p>14. How do you insert a comment in a CSS file?</p> <p>A- // this is a comment //</p> <p>B- /* this is a comment */</p> <p>C- ' this is a comment</p> <p>D- // this is a comment</p> <p>15. How do you add a background color for all <h1> elements?</p> <p>A- all.h1 {background-color:#FFFFFF;}</p> <p>B- h1.all {background-color:#FFFFFF;}</p> <p>C- h1 {background-color:#FFFFFF;}</p> <p>D- {h1 background-color:#FFFFFF;}</p> <p>16. Which CSS property is used to change the text color of an element?</p> <p>A- fgcolor</p> <p>B- text-color</p> <p>C- color</p> <p>D- colure</p> <p>17. Which CSS property controls the text size?</p> <p>A- text-style</p> <p>B- text-size</p> <p>C- font-size</p> <p>D- font-style</p> <p>18. How do you display hyperlinks without an underline?</p> <p>A- a {underline:none;}</p> <p>B- a {text-decoration:no-underline;}</p> <p>C- a {text-decoration:none;}</p> <p>D- a {decoration:no-underline;}</p> <p>19. What is the correct HTML for creating a hyperlink?</p> <p>A- <a href="https://www.kckcc.edu">KCKCC</a></p> <p>B- <a name="https://www.kckcc.edu ">KCKCC </a></p> <p>C- <a url="https://www.kckcc.edu ">KCKCC </a></p> <p>D- <a>https://www.kckcc.edu </a></p> <p>20. How can you make a numbered list?</p> <p>A- <dl></p> <p>B- <ol></p> <p>C- <list></p> <p>D- <ul></p> <p>21. What is the correct HTML for making a checkbox?</p> <p>A- <checkbox></p> <p>B- <input type="check"></p> <p>C- <input type="checkbox"></p> <p>D- <check></p> <p>22. What is the correct HTML for inserting an image?</p> <p>A- <image src="image.gif" alt="My Image"></p> <p>B- <imgsrc="image.gif" alt="My Image"></p> <p>C- <img href="image.gif" alt="My Image"></p> <p>D- <img alt="My Image">image.gif</img></p> <p>23. How do you make the text bold?</p> <p>A- style:bold;</p> <p>B- font:bold;</p> <p>C- font-weight:bold;</p> <p>D- weight:bold;</p> <p>24. How do you display a border like this:</p> <p>The top border = 10 pixels<br />The bottom border = 5 pixels<br />The left border = 20 pixels<br />The right border = 1pixels</p> <p>A- border-width:10px 20px 5px 1px;</p> <p>B- border-width:10px 1px 5px 20px;</p> <p>C- border-width:5px 20px 10px 1px;</p> <p>D- border-width:10px 5px 20px 1px;</p> <p>25. Which doctype is correct for HTML5?</p> <p>A- <!DOCTYPE HTML5></p> <p>B- <!DOCTYPE html></p> <p>C- <!DOCTYPE Xhtml5></p> <p>D- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "https://www.w3.org/TR/html5/strict.dtd"></p> <p>26. Which HTML5 element is used to specify a footer for a document or section?</p> <p>A- <bottom></p> <p>B- <footer></p> <p>C- <section></p> <p>D- <div id="footer"></p> <p>27. In HTML5, which attribute is used to specify that an input field must be filled out?</p> <p>A- placeholder</p> <p>B- required</p> <p>C- validate</p> <p>D- formvalidate</p> <p>28. If an element is configured with ______, the other content on the page will appear to its right.</p> <p>A- float: right;</p> <p>B- position: relative;</p> <p>C- float: left;</p> <p>D- position: right</p> <p>29. The Box Model consists of a content area surrounded by ___________.</p> <p>A- a border</p> <p>B- padding, border, and margin</p> <p>C- border and margin</p> <p>D- spacing, border, and margin</p> <p>30. The _______ pseudo-class configures the styles that will apply when the mouse rolls on top of a hyperlink.</p> <p>A- hover</p> <p>B- click</p> <p>C- active</p> <p>D- over</p> <p>31. Select the form control below that does not use the <input> tag.</p> <p>A- Text box</p> <p>B- Select list</p> <p>C- Checkbox</p> <p>D- Radio button</p> <p>32. When you use the Box Model, the __________________ is always transparent.</p> <p>A- border</p> <p>B- content</p> <p>C- spacing</p> <p>D- margin</p> <p>33. A table with a width set to 600 pixels will look ____________ on a monitor with resolution set to 640 x 480 than on a monitor with resolution set to 1024 x 768 )assuming that the physical size is the same for both monitors)</p> <p>A- larger</p> <p>B- smaller</p> <p>C- no different</p> <p>D- more distorted</p> <p>34. Select the HTML tag below that configures a button that, when clicked, will automatically reset form fields to their default values.</p> <p>A- <input type="clear"/></p> <p>B- <button type="reset">Reset</button></p> <p>C- <input type="reset" value="Reset" /></p> <p>D- <input type="button" value="clear" /></p> <p>35. You would like to conduct a survey and ask your Web page visitors to indicate the computer operating systems that they use. Each visitor could use more than one computer operating system. Select the form control that is best to use for this purpose.</p> <p>A- Check box</p> <p>B- Radio button</p> <p>C- Text box</p> <p>D- Scrolling text box</p> <p>36. An order form contains an area for Web visitors to select their state or province. You need to limit the amount of space on the form that is used for this feature. Select the form control that is best to use for this purpose.</p> <p>A- Check box</p> <p>B- Radio button</p> <p>C- Text box</p> <p>D- Select list</p> <p>37. Select the CSS rules of precedence from outermost to innermost from the choices below.</p> <p>A- External, inline, embedded</p> <p>B- External, embedded, inline</p> <p>C- Inline, embedded, external</p> <p>D- Embedded, inline, external</p> <p>38. Select the HTML below that would associate a label displaying the text "Phone" with the text box named customerPhone.</p> <p>A. Phone: <input type="textbox" name="customerPhone" /></p> <p>B. <label>Phone: <input type="text" name="customerPhone" /></label></p> <p>C. <label for="Pho">Phone: </label><input type="text" name="customerPhone" id="Pho" /></p> <p>D. Phone: <label></label><input type="textbox" name="customerPhone" /></p> <p>39. Use the ____ property in the HTML link tag to associate a Web page with a style sheet printing.</p> <p>A- media="print"</p> <p>B- out="printer"</p> <p>C- media="paper"</p> <p>D- show="screen"</p> <p>40. Which form control would be appropriate to accept comments about your website?</p> <p>A. Select list</p> <p>B. Text box</p> <p>C. Scrolling text box</p> <p>D. Label</p> <p>41. The main site navigation or a section offering navigation choices should contain __________.</p> <p>A. no more than nine links</p> <p>B. as many links as you need</p> <p>C. only the most important pages</p> <p>D. a link to every page on your website</p> <p>42. The three most common methods of organizing websites are _____________.</p> <p>A. horizontal, vertical, and diagonal</p> <p>B. hierarchical, linear, and random</p> <p>C. accessible, readable, maintainable</p> <p>D. chunking, linear, and random</p> <p>43. Select the best reason to include height and width attributes on an <img /> tag.</p> <p>A. They are required attributes and must always be included when designing Web pages.</p> <p>B. They help the browser load the page faster by reserving space for the image.</p> <p>C. They help the browser display the image in its own browser window.</p> <p>D. They slow down the overall speed in which the Web page loads</p> <p>44. Use the _______________ property to configure an image to use as a bullet point in an unordered list.</p> <p>A. bullet-image</p> <p>B. image-style</p> <p>C. list-style-image</p> <p>D. bullet-style-image</p> <p>45. To hide the display of the list markers on an ordered list, set list-style-type to the value ______.</p> <p>A. no display</p> <p>B. hide</p> <p>C. invisible</p> <p>D. none</p> <p>46. What do you need to do to make content stay below your floats?</p> <p>A- A. hide</p> <p>B- B. position</p> <p>C- C. clear</p> <p>D- D. overflow</p> <p>47. Which tag is used to contain your navigation?</p> <p>A. <nav></p> <p>B. <footer></p> <p>C. <header></p> <p>D. <hgroup></p> <p>48. The main site navigation or a section offering navigation choices should contain ________.</p> <p>A. no more than nine links</p> <p>B. as many links as you need</p> <p>C. only the most important pages</p> <p>D. a link to every page on your website</p> <p>49. Which tag is used to force the browser to display the next text or element on a new line?</p> <p>A. <new line /></p> <p>B. <p></p> <p>C. <br /></p> <p>D. <line /></p> <p>50. What is wrong with the following code?</p> <p><article><br /><header> Umbrella Corporation </header><br /><p> Article content <p><br /><sidebar> Footnotes </sidebar><br /></article></p></p> </div> <div id="viewreadmore" class="link"> <a id="readmore" href="javascript:void(0);" class="read-more-trigger mar_top10" onclick="changeheight(this)">View Complete Question</a> </div> <div id="DivSolution"> <h4> Solution Preview : </h4> <div class="seprator"> </div> <p> </p> <div class="downloadfiles"> <h5> Prepared by a verified Expert</h5> <h6> Basic Computer Science: Tags and text that do not show directly on the page are</h6> <h5> Reference No:- TGS01358185</h5> <input type="submit" name="getPaid" value="Purchase Solution File" id="getPaid" class="btn btn-success btn-lg btn-block-sm mar_btm20" /> <p> Now Priced at $30 (50% Discount)</p> </div> <div style="text-align: justify"></div> </div> </div> <div class="row"> <div class="col-sm-12 reviewbox"> <div id="PlnRated"> <div class="row recomded"> <div class="recomdedbox col-sm-2 col-xs-12"> <p class="inner"><i class="fa fa-thumbs-o-up"></i> Recommended <b>(93%)</b></p> </div> <div class="recomdedbox col-sm-2 col-xs-12"> <p class="inner rating"><i class="fa fa-star"></i> Rated <b>(4.5/5)</b></p> </div> </div> </div> <div class="row "> <div class="panel-group review" id="accordion" role="tablist" aria-multiselectable="true"> <div class="panel-heading" role="tab" id="headingTwo"> <h4 class="panel-title"> <a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"> Have a Question? (oR Write a Review) </a> </h4> </div> <div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo"> <div class="panel-body"> <div class="col-sm-12"> <div class="row search searchbg message"> <span id="RequiredFieldValidator1" style="visibility:hidden;">Write atleast 100 words!!</span> <textarea name="txtcomments" id="txtcomments" maxlength="1000" ValidationGroup="Review" placeholder="Write your review" class="form-control" rows="6"></textarea> <div class="pull-right mar_top20"> <input type="submit" name="btnReviewSubmit" value="Submit" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("btnReviewSubmit", "", true, "Review", "", false, false))" id="btnReviewSubmit" class="btn btn-primary pull-right" /> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="user-comments-area hidden-xs"> <h4 class="text-uppercase mar_btm20"> <i class="fa fa-question-circle"></i>   Recent Questions Asked Basic Computer Science</h4> <ul class="user-comments-list"> <table id="dlMaterials" cellspacing="0" style="width:100%;border-collapse:collapse;"> <tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_0" class="studenthdname" href="https://www.tutorsglobe.com/question/find-model-for-the-number-of-north-american-business-email-51358181.aspx">Find model for the number of north american business email</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_0">we will be considering linear quadratic cubic logarithmic or exponential models use your model to answer the questions</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_1" class="studenthdname" href="https://www.tutorsglobe.com/question/1-calculate-bwps-dfl-and-dtl-before-and-after-the-51358182.aspx">1 calculate bwps dfl and dtl before and after the</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_1">1 calculate bwps dfl and dtl before and after the acquisition of the new machine2 use the information from the previous</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_2" class="studenthdname" href="https://www.tutorsglobe.com/question/find-the-model-hx-what--is-the-maximum-acceleration-51358183.aspx">Find the model hx what is the maximum acceleration</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_2">construct a cosine function to model the final descent of a plane that is landing the plane begins its decent from 2000</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_3" class="studenthdname" href="https://www.tutorsglobe.com/question/calculate-the-firms-total-value-the-value-of-its-debt-plus-51358184.aspx">Calculate the firms total value the value of its debt plus</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_3">schoen industries pays interest of 3 million each year on bonds with an average coupon rate of 75 the firm has 45</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_4" class="studenthdname" href="https://www.tutorsglobe.com/question/tags-and-text-that-do-not-show-directly-on-the-page-are-51358185.aspx">Tags and text that do not show directly on the page are</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_4">part i mcq 45 points 1 point each1tags and text that do not show directly on the page are placed</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_5" class="studenthdname" href="https://www.tutorsglobe.com/question/the-40-ft-long-a-36-steel-rails-on-a-train-track-are-laid-51358186.aspx">The 40-ft-long a-36 steel rails on a train track are laid</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_5">the 40-ft-long a-36 steel rails on a train track are laid with a small gap between them to allow for thermal expansion</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_6" class="studenthdname" href="https://www.tutorsglobe.com/question/models-the-bac-measured-in-mgml-in-a-test-patients-51358187.aspx">Models the bac measured in mgml in a test patients</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_6">after the consumption of an alcoholic beverage the concentration of alcohol in the bloodstream blood alcohol</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_7" class="studenthdname" href="https://www.tutorsglobe.com/question/consider-the-current-asset-accounts-cash-accounts-51358188.aspx">Consider the current asset accounts cash accounts</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_7">consider the current asset accounts cash accounts receivable and inventory individually and as a group what impact will</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <span class="mar_lft5">Q :</span> <a id="dlMaterials_hypermaterial_8" class="studenthdname" href="https://www.tutorsglobe.com/question/produce-a-risk-assessment-of-the-scenario-given-using-the-51358189.aspx">Produce a risk assessment of the scenario given using the</a></h5> <p class="answer"> <span id="dlMaterials_lblQuestion_8">questionproduce a risk assessment of the scenario given using the steps outlined ensure you cover all the steps in the</span></p> </div> <!-- /comment-box --> </li> </td> </tr> </table> </ul> <!-- /user-comments-list --> </div> </div> <div class="col-md-4 col-xs-12 login-area innerpage"> <div class="row"> <div class="details col-md-12"> <div class="col-md-4"> <div class="circle orange"> <i class="fa fa-question"></i> </div> <p> 1939207 </p> <p> Questions<br /> Asked</p> </div> <div class="col-md-4"> <div class="circle yellow"> <i class="fa fa-user-secret"></i> </div> <p> 3,689</p> <p> Active Tutors</p> </div> <div class="col-md-4"> <div class="circle green"> <i class="fa fa-thumbs-o-up"></i> </div> <p> 1422189</p> <p> Questions<br /> Answered</p> </div> <p><b> Start Excelling in your courses, Ask a tutor for help and get answers for your problems !! </b></p> <a href="https://www.tutorsglobe.com/post-your-job-for-free.aspx" class="btn btn-primary btn-lg mar_top10">ask Question</a> </div> </div> <div class="row"> <div class="user-comments-area hidden-xs"> <hr /> <h4 class="text-uppercase mar_btm20"> <i class="fa fa-question-circle"></i> Asked Questions</h4> <hr /> <ul class="user-comments-list"> <table id="dlNewReviews" cellspacing="0" style="width:100%;border-collapse:collapse;"> <tr> <td> <li> <div class="comment-box"> <h5> <a id="dlNewReviews_hyperQues_0" class="studenthdname" href="https://www.tutorsglobe.com/question/recommend-smoking-cessation-programs-53423065.aspx">Recommend smoking cessation programs</a></h5> <p> <span id="dlNewReviews_lblReviews_0">Based on the American Osteopathic Associate Code of Ethics evaluate the following case study, as appropriate. Dr. Baird has been seeing his patient</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <a id="dlNewReviews_hyperQues_1" class="studenthdname" href="https://www.tutorsglobe.com/question/risk-for-infection-related-to-inadequate-primary-defenses-53423062.aspx">Risk for infection related to inadequate primary defenses</a></h5> <p> <span id="dlNewReviews_lblReviews_1">Risk for infection related to inadequate primary defenses (stasis of body fluids, altered per0istalsis, change in pH), multiple organ tissue destruction</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <a id="dlNewReviews_hyperQues_2" class="studenthdname" href="https://www.tutorsglobe.com/question/examining-a-patient-who-may-have-oral-cancer-53423064.aspx">Examining a patient who may have oral cancer</a></h5> <p> <span id="dlNewReviews_lblReviews_2"> The nurse is examining a patient who may have oral cancer. Which sign below makes the nurse believe this patient may have oral cancer? </span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <a id="dlNewReviews_hyperQues_3" class="studenthdname" href="https://www.tutorsglobe.com/question/why-am-i-having-such-a-problem-with-diarrhea-53423070.aspx">Why am i having such a problem with diarrhea</a></h5> <p> <span id="dlNewReviews_lblReviews_3"> The patient asks the nurse practitioner, "Why am I having such a problem with diarrhea? I need something to help me as unpleasant to have</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <a id="dlNewReviews_hyperQues_4" class="studenthdname" href="https://www.tutorsglobe.com/question/what-phrase-hospice-is-a-philosophy-not-a-facility-means-53423048.aspx">What phrase hospice is a philosophy, not a facility means</a></h5> <p> <span id="dlNewReviews_lblReviews_4">The phrase "hospice is a philosophy, not a facility" means Group of answer choices all of these the central consideration </span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <a id="dlNewReviews_hyperQues_5" class="studenthdname" href="https://www.tutorsglobe.com/question/is-patient-be-either-second-time-or-third-time-chemo-patient-53423052.aspx">Is patient be either second time or third time chemo patient</a></h5> <p> <span id="dlNewReviews_lblReviews_5">What is the probability that the patient would be either a second time or third time chemo patient?</span></p> </div> <!-- /comment-box --> </li> </td> </tr><tr> <td> <li> <div class="comment-box"> <h5> <a id="dlNewReviews_hyperQues_6" class="studenthdname" href="https://www.tutorsglobe.com/question/history-of-hypertension-for-which-takes-hydrochlorothiazide-53423047.aspx">History of hypertension for which takes hydrochlorothiazide</a></h5> <p> <span id="dlNewReviews_lblReviews_6">A 45-year-old white man presents to your office complaining of left knee pain that started last night. He says that the pain started suddenly after dinner</span></p> </div> <!-- /comment-box --> </li> </td> </tr> </table> </ul> </div> </div> </div> </div> </div> </div> </div> <script> var url = 'https://www.tutorsglobe.com/include/javascript/watiWidget.js'; var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = url; var options = { "enabled":true, "chatButtonSetting":{ "backgroundColor":"#00e785", "ctaText":"Whatsapp Support!!", "borderRadius":"25", "marginLeft": "0", "marginRight": "20", "marginBottom": "20", "ctaIconWATI":false, "position":"left" }, "brandSetting":{ "brandName":"Tutorsglobe", "brandSubTitle":"Trusted Since 2005", "brandImg":"https://www.tutorsglobe.com/include/images/chat-logo.svg", "welcomeText":"Hi there!\nDo you Need help?", "messageText":"Hello, Tutorsglobe !! I have a question!", "backgroundColor":"#00e785", "ctaText":"Chat with Whatsapp", "borderRadius":"25", "autoShow":false, "phoneNumber":"441416286080" } }; s.onload = function() { CreateWhatsappChatWidget(options); }; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); </script> <footer class="site-footer"> <div class="container"> <div class="footerlinks"> <a href="https://www.tutorsglobe.com/">Home</a> | <a href="https://www.tutorsglobe.com/about-us.aspx">Company Overview</a> | <a href="https://www.tutorsglobe.com/services.aspx">Services</a> | <a href="https://www.tutorsglobe.com/library/">Discover Q&A</a> | <a href="https://www.tutorsglobe.com/sitemap.aspx">Sitemap</a> | <a href="https://www.tutorsglobe.com/contact-us.aspx">Contact Us</a> | <a href="https://www.tutorsglobe.com/terms-and-conditions.aspx">T & C</a> | <a href="https://www.tutorsglobe.com/refundcancelpolicy.aspx">Refund Policy</a> | <a href="https://www.tutorsglobe.com/copyright-infringement-policy.aspx">Copyright Policy</a> | <a href="https://www.tutorsglobe.com/blog/archive/">Blog</a> | <a href="https://www.tutorsglobe.com/library/archive.aspx">Q&A</a> | <a href="https://www.tutorsglobe.com/education-directory.aspx">Directory</a> </div> <p>©TutorsGlobe</a> All rights reserved 2022-2023. </p> <script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "product", "name": "Tutorsglobe", "image": "https://www.tutorsglobe.com/IncludeLib/Images/logo.png", "description": "elearning Platform - Tutor Service", "brand": { "@type": "elearning", "name": "Tutorsglobe" }, "aggregateRating": { "@type": "AggregateRating", "ratingValue": "4.9", "ratingCount": "37128" } } </script> <a href="#" class="settings"><i class="fa fa-angle-up"></i></a> <ul class="social-icons"> <li><a href="https://www.facebook.com/TutorsGlobe" rel="nofollow" target="_blank"><i class="fa fa-facebook-square"></i></a></li> <li><a href="https://twitter.com/Tutorsglobe" rel="nofollow" target="_blank"><i class="fa fa-twitter-square"></i></a></li> <li><a href="#" rel="nofollow"><i class="fa fa-youtube-square"></i></a></li> <li><a href="https://www.linkedin.com/company/tutorsglobe" target="_blank" rel="nofollow"><i class="fa fa-linkedin-square"></i></a></li> </ul> </div> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-32333066-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.tutorsglobe.com/IncludeLib/js/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-5E9QFMFDJR"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-5E9QFMFDJR'); </script> </footer> </div> <!-- /pageWrap --> <div class="overlay"> </div> <!-- JavaScript Files ================================================== --> <script type="text/javascript" src="../IncludeLib/js/jquery-1.11.2.min.js"></script> <script type="text/javascript" src="../IncludeLib/js/bootstrap.min.js"></script> <script type="text/javascript" src="../IncludeLib/js/jquery.mCustomScrollbar.concat.min.js"></script> <script type="text/javascript" src="../IncludeLib/js/script.js"></script> <script type="text/javascript" src="../IncludeLib/js/ie10-viewport-bug-workaround.js"></script> <script type="text/javascript"> //<![CDATA[ var Page_Validators = new Array(document.getElementById("RequiredFieldValidator1")); //]]> </script> <script type="text/javascript"> //<![CDATA[ var RequiredFieldValidator1 = document.all ? document.all["RequiredFieldValidator1"] : document.getElementById("RequiredFieldValidator1"); RequiredFieldValidator1.controltovalidate = "txtcomments"; RequiredFieldValidator1.errormessage = "Write atleast 100 words!!"; RequiredFieldValidator1.validationGroup = "Review"; RequiredFieldValidator1.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; RequiredFieldValidator1.initialvalue = ""; //]]> </script> <script type="text/javascript"> //<![CDATA[ var Page_ValidationActive = false; if (typeof(ValidatorOnLoad) == "function") { ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } else { return true; } } //]]> </script> </form> </body> </html>