Odesk HTML5 Test 2014



Question no.1: Which media event is triggered when there is an error in fetching media data in HTML 5.0?

Ans: on stalled.

Question no.2: which of the following video file formats are currently supported by the <video> element of HTML 5.0?

Ans: MPEG 4


Question no.3:   which of the following is an invalid  value for the type attribute of command tag?

Ans: command

Question no.4: which of the following is NOT a valid value for the <i frame> sand box attribute in HTML 5.0?

Ans: url

Question no.5: what is the function of the history traversal task source in HTML 5.0?

Ans: it is used to queue calls to history . back () and similar APIs

Question no.6: what will be the result if you use the following code to your HTML 5.0 document?
  <p>I use <del> MAC </del><ins>Microsoft </ins>!</p> 

Ans: i use MAC microsoft

Question no.7: you want to create a link for your website allowing users to email the webmaster. how will you implement this if the webmaster 's email address is webmaeter@xcompany.com?

Ans: <a href = "mailto.webmaster@xcompany.com">webmaster</a>

Question no.8: in HTML 5.0 how will the script be executed  if you use the script element shown below?
  <script src="script.js"type="text/java script"defer="defer"></script> 

Ans: b. the script will be the executed when the page has finished parsing.

Question no.9: what is the output when you use the HTML 5.0 code snippet shown below?
<body on load=" alert (this)">

Ans: it will be alert saying "[object window]" when the document is loaded.

Question no.10: a computer programming book has to go online. what of the following tags is ideal for displaying the program snippet?

Ans:<code>

Question no.11: how will you bind the details option (shown below) with an <input> element, whose type attribute is set to url to get the result shown in the image?

 Ans: user should define a list attribute to the input element whose type is url.

Question no.12: which of the following are valid a html 5.0 element?

Ans: (check ALL)

Question no.13: how does a button created by the <button> tag differ from the one created by an <input > tag?

Ans: an input tag button can be a reset button too.

Question no.14: which of the following attributes comes in handy when borders have to be put between group of columns instead of every column?

Ans: col group

Question no.15: which of the following is correct with regard to the on can play through event fired by media recourse in the HTML 5.0 document?

Ans: the script will run when the media is played to the end, without stopping for buffering.

Question no.16: what does the icon attribute of the HTML 5.0 command tag define?
<command icon="?">click me!</command>

 Ans:it is used to define the url of an image to display as the command.

Question no.17: while rendering your HTML 5.0 web page, which of the following <link> element files will get skipped by a compliant user agent if you include the link element shown belowin your document?
<link rel ="stylesheet"href="A"type = "text/plain">
<link rel=stylesheet"href="B"type="text/css">

Ans: a link element whose href  is= "A"

Question no.18: which <body> tag event is find when the user leaves the document?

Ans: on unload

Question no.19: how will you change the value of the cookies and items in the storage objects of the local storage attribute in HTML 5.0?

Ans: by invoking the window . navigator. yield For Storage updates()Api mathod

Question no.20: what is the role of the < dfn> element in HTML 5.0?

Ans: it is used to define a definition term.

Question no.21: which of the following is NOT a valid syntax for the <h1>element in HTML 5.0?

Ans: <h1 align="center">this is header 1</h1>

Question no.22: which from event is fired on the click of a button using a button tag with its type attributes value equal to submit?

Ans: on submit

Question no.23: how will you return a reference to the parent of the current window or subframe in an HTML5.0 web application    ?

ans: window parent.

 Question no.24: in HTML 5.0,which of the following is NOT a valid value for the type attribute when used the when  used with the<command>tag shown below?
<command type="?">Click me!</command>

Ans: button.

Question no.25: what is the default background color for the canvas element in HTML 5.0?

 Ans: Transparent

Question no.26: which of the following are valid mouse events in HTML 5.0?

Ans: (check ALL) 


   
Question no.27: which of the following language will you use to print the graphic designed using the HTML 5.0 <canvas> tag?

Ans: java script

Question no.28: consider the following item s of a <select> list: 
<option value = "89">item 1</option>
<option value ="90">item 2</option>
which of the following values would be passed on by clicking the submit button on a selecting item 2 from the list?

Ans: 90

Question no.29: when is the window on stored event triggered in the HTML document?

Ans: it is triggered when a document perform an undo function.

Question no.30: which of the following is NOT a value attributes for the <video> element in HTML 5.0?

Ans: disabled

Question no.31: which of the following represents INVALID syntax for defining as attribute value in a HTML 5.0 document?

Ans: <input name= be evil/>

question no.32: consider the above code. what will be the impact upon the contents element if both the style sheets define the same class?
 the question is based upon the figure shown below:  

Ans: the content of the element will be of blue color and will inherit all the effects of style1.css 

Question no.33: which of the following is NOT a valid attribute for the <link> element in HTML 5.0?

 Ans: href lang

Question no.34: which of the following is an INVALID keyword value for http equiv attribute when used with the <meta> element in HTML 5.0?

Ans: expires , set cookies , keyword, author

  Question no.35: which of the following statements is correct if you allow the user to select only one radio button from a group of the radio buttons? 

Ans: the name of the input tag must be the same for all the radio buttons.

Question no.36: which of the following <iframe> attribute are NOT supported in HTML 5.0?

Ans: margin height, srolling

question no.37: in HTML 5.0 ,what is the function of the sandbox attribute when used with <iframe> as shown below?
<iframe src= " aaa"sandbox=?></iframe>

Ans: it is used to define the restriction to the frame content.

Question no.38: which of the following is NOT a supported attribute of the <ol> element in HTML 5.0?

Ans: compact

Question no.39:which of the following   would give a yellow background to the web page?
 note: the  code used in the "correct" answer below was deprecated in HTML 4.01! use style instead for new code.

 Ans: <body bgcolor= "yellow">

Question no.40: what is the function of on obsolete ,an application cache API method in HTML 5.0?

Ans: it triggers an event when the cache content has been marked as obsolute.

  Question no.41: suppose you add the input code given about your HTML web page. what result will be returned by the java script function when you click the button marked as A in the image?

Ans: text

question no.42: how does a button created by the <button> tag differ from one created by an <input>tag?

Ans: an input tag button can include images as well.

Question no.43: which of the following HTML 5.0 elements is used to embed java applets into your HTML 5.0 web page?

Ans: <object>

Question no.44: which of the following is NOT a valid attribute for the element in HTML 5.0? 

  Ans: http equie.

Question no.45: which of the following are valid values for the content editable attribute of three element in HTML 5.0?

Ans: true,false

Question no.46: you want to display a table listing out customer names and their content information . the heading of the table is shown in the figure . what is the code for creating the first line of the table heading?

  Ans: b <tr>
<th>customer Name</th>
<th col span=3 contact </th>
</tr>

question no.47: which of the following <section> elements have the correct attributes assignment as per HTML 5.0?

 ans: c.<section id="EXAMPLE">...</section>
d. <section id="EXAMPLE">...</section>
<section id="EXAMPLE">...</section>

question no.48: which of the following statements is correct if you invoke the window prompt (message,default) web application API method in HTML 5.0?

Ans: both b and c

Question no.49:which of the following is NOT an attribute of the <meta> element in HTML 5.0?

Ans: scheme 

 Question no.50: which media event will be fired when a media resource element suddenly becomes empty?

 Ans: on emptied

Question no.51: what is the purpose of the <keygen> element in HTML 5.0?

Ans: it is used to generate a public private key pair in an HTML 5.0web page.

Question no.52: which event is fired when an element loses its focus in HTML 5.0 document?

Ans : on blur

Question no.53: a piece of text contains many blank space within it. which of the following tags would be suitable to display the text as it was originally formatted?

Ans: pre

Question no.54: which HTML 5.0 element will you use to group the related options in a drop down list?

 Ans: opt group

Question no.55: you are writing the code for an HTML form and you want the browser to retain the form's input values. that is , if a user submits the form and presses the browser's back button , the fully populated form is displayed instead of a blank form. which of the following HTML 5.0 attributes will you use?

Ans: form target.

Question no.56: which of the following tags would assist in creating named groups within a select list?

Ans: opt group.

   Question no.57: how will you cancel the timeouts that are set with the set Interval() API method identified by the handlers in HTML 5.0?

Ans:a. window. clear Interval(handle)
b. <tr>
<th> customer Name</th>
<th col span= 3> contact</th>
</tr>

Question no.58: what is the default background color for the canvas element in HTML 5.0?

Ans: transparent.

Question no.59: which of the following are valid values for the content editable attribute of the <figure > element in HTML 5.0?

Ans: false 

Question no.60: which media event is triggered when there is triggered when there is an error in fetching media data in HTML 5.0?

Ans: on suspend.

Question no.61: which of the following is NOT a valid attribute for the <link> element in HTML 5.0?

Ans: http equiv.

Question no.62: which of the following HTML 5.0 elements is used to embed java applets into your HTML 5.0 web page?

Ans: <object>

Question no.64: how does a button created by the <button> tag differ from the one created by an <input> tag?

Ans: an input tag button can include images as well.

Question no.65: how will you return a reference to the parent of the current window or sub frame in an HTML 5.0 wed application?

Ans: window.parent

Question no.66: suppose you add the input code given above to your HTML web page. what result will be returned  by the Java script function when you click the button market as A in the image?

ans: text.

Question no.67: which of the following statement is correct if you allow the user to select only one radio button from a group of radio buttons?

Ans: the name of the input tag must be the same for all the radio buttons.

Question no.68: what will be the result if you use the code to your HTML 5.0 document?
 <bdo dir="rtl">
here is the some text that should be written to your document.
</bdo>

Ans: tnemucod ruoy ot enttirw eb dluohs taht txet emos si ereh.

Question no.69: which of the following would give a yellow background to the webpage?
note : the  code used in the "correct" answer below was deprecated in HTML 4.01! use styles instead  for new code.

Ans: <body bgcolor = "Yellow">

Question no.70: how will you change the value of the cookies and items in the storage object  the local Storage attributes in HTML 5.0?

Ans: by invoking the window . navigator .yieldForStorageUpdates() API method.




Question no.71: how will the target URL open when you define the <a> element in your HTML 5.0 document as shown below?

Ans: the target URL will open in the same document in which it was clicked.


Question no.72: what will be the browsing context if the browsing context if the browsing context name is _ top when the HTML 5.0 web page is loading?

Ans: it will load the linked document in the topmost frame.

Question no.73: which of the following is an INVALID value for the type attribute of command tag?

Ans: text


Question no.74: the following link is placed on an HTML webpage.

Ans: it will open the site msdn.com in a new window.  


Question no.75: you have the following directory structure.
webroot->products->ordered->delivered
the product directory has a page called Product. HTML. and the delivered directory has a page called Delivered.html. you want to provide a link to the products page on Delivered.html.the idea code should be:

Ans: <a href= "/..product.html">all product</a>

Question no.76: what will be result if you use the following code to your HTML 5.0 document?

<p>I use<del>MAC</del><ins>Microsoft</ins>!</p>

Ans:i use MAC Microsoft

Question no.77: which of the following is the correct syntax to define  charset in the html 5 <meta> element?

Ans: <meta char set=ISO-8859-1"> 

Question no.78: which of the following is the correct method to load another web page or reload the seme page in HTML 5.0?

Ans: all of the above

Question no.79: which <body> tag event fired when the user leaves the document?

Ans: on unload.

Question no.80: which event is fired when the history of the browser window changes?

Ans: on pop state.

Odesk SEO Test answers 2014

1. Some words, when followed by a colon, have special meanings to yahoo. What is perfermed by the link:Operator?

a. it shows all the outbound links from the url
b. It shows how many pages of the site yahoo is pointing to
c. It shows all the pages that point to that url
d. It show url's with broken links

2. Which blackhat Seo techniques is characterized by a method to decieve search engine, by detecting the search engine bot and "feeding" it with a different HTML code than the HTML actually served to users?

a.Coaling
b.Foisting
c.Slighting
d.Cloaking

3. Why is it bad idea from SEO perspective to host free articles and write ups that are very common on the internet?

a.Because they will not lead to fresh traffic
b.Because you could be penalize by search engine for using duplicate contents
c.Because you will not get the benefits of proper keyword targeting
d.because people could turn up claiming copyright infirigement

4. What will happen if you type the word 'Certification-Networking' in the google search box?

a.Google will find the web pages about "certification" and also containing the word "networking"
b.Google will find ALL the web pages containing the word word "Certification" and "Networking"
c.*Google will find ALL the web pages in which the words "Certification" and "Networking" appear together.
d.Google will find the web pages about Certification that do not contain the word Networking

5. Which of the following factors does google take into account while accessing whether or not a website is an authority website?

a. The frequency with which the contents of the website is updated
b. the number of web pages containing relevant information on the main theme of the website
c.*The number of in-bound natural links related to the website's theme (or keywords)
d. None of the above

6. What is keyword density?

a.The number of times the keyword is used / (divided by) the total word count on page - (minus) the total words in HTML on the page
b.The number of times the keyword is used x (multiply by) the total word count on page.
c.The number of times the keyword is used in the page description
d.The number of times the keyword is used in the page title
e*The number of times the keyword is used / (divided by) the total word count on the page.

7. Which of the following statement about FFA pages are true?

a.They are greatly beneficial to SEO
b.They are also called Link Farms
c.They are Paid Listings
d*They contain numerous inbound links

8. What is the illegal act of copying of a page by unauthorized parties in order to filter off traffic to another site called?

a.Traffic jacking
b.Visitors Jacking
c.View Jacking
d* Page Jacking

9. What is the most likely time period required for getting a google page ranking?

a.1 week
b. 3 weeks
c. 1 month
d.* More than 3 months

10. Which of the following can be termed as a good keyword selection and placement strategies?

a* Targeting synonyms of the main keyword, A & D
b.Targeting the highest searched keywords only
c.Copying competitor keywords
d.Optimizing 5 or more keywords per page (check)

11. Some words, when followed by a colon, have special meanings to yahoo. What is perfermed by the link:Operator?

a. it shows all the outbound links from the url
b. It shows how many pages of the site yahoo is pointing to
c. It shows all the pages that point to that url
d. It show url's with broken links

12. Which blackhat Seo techniques is characterized by a method to decieve search engine, by detecting the search engine bot and "feeding" it with a different HTML code than the HTML actually served to users?

a.Coaling
b.Foisting
c.Slighting
d.Cloaking

13. Why is it bad idea from SEO perspective to host free articles and write ups that are very common on the internet?

a.Because they will not lead to fresh traffic
b.Because you could be penalize by search engine for using duplicate contents
c.Because you will not get the benefits of proper keyword targeting
d.because people could turn up claiming copyright infirigement

14. What will happen if you type the word 'Certification-Networking' in the google search box?

a.Google will find the web pages about "certification" and also containing the word "networking"
b.Google will find ALL the web pages containing the word word "Certification" and "Networking"
c.*Google will find ALL the web pages in which the words "Certification" and "Networking" appear together.
d.Google will find the web pages about Certification that do not contain the word Networking

15. Which of the following factors does google take into account while accessing whether or not a website is an authority website?

a. The frequency with which the contents of the website is updated
b. the number of web pages containing relevant information on the main theme of the website
c.*The number of in-bound natural links related to the website's theme (or keywords)
d. None of the above

16. What is keyword density?

a.The number of times the keyword is used / (divided by) the total word count on page - (minus) the total words in HTML on the page
b.The number of times the keyword is used x (multiply by) the total word count on page.
c.The number of times the keyword is used in the page description
d.The number of times the keyword is used in the page title
e*The number of times the keyword is used / (divided by) the total word count on the page.

17. Which of the following statement about FFA pages are true?

a.They are greatly beneficial to SEO
b.They are also called Link Farms
c.They are Paid Listings
d*They contain numerous inbound links

18. What is the illegal act of copying of a page by unauthorized parties in order to filter off traffic to another site called?

a.Traffic jacking
b.Visitors Jacking
c.View Jacking
d* Page Jacking

19. What is the most likely time period required for getting a google page ranking?

a.1 week
b. 3 weeks
c. 1 month
d.* More than 3 months

20. Which of the following can be termed as a good keyword selection and placement strategies?

a* Targeting synonyms of the main keyword (ans) A & D
b.Targeting the highest searched keywords only
c.Copying competitor keywords
d.Optimizing 5 or more keywords per page (check)

21. Google displays up to ------------------------ characters of a web pages title tag

a.*56
b.60 * B & C
c.66
d.80

22. Which of the following fact about Alexa are correct

a.*Alexa provides free data on relative website visitors traffic
b. Alexa and Quancast provide information on visitors household income
c.Alexa is baised towards US based traffic
d.Quantcast only track people who have installed the quantcast toolbar


23. What is the name of the search engine technology due to which a query for the word "actor" will aslo show search result for related word such as actress, acting or act?

a.Spreading
b.Dilating
c.RSD (real time synonyms detection)
d.Stemming
e.Branching

24.Do search engine such as google detect unnatural linking patterns by checking the class C IP address of the page where the link to the website originates

a* Yes
b No

25. Which of the following conditions will google treat favorably from the "Relevancy" perspective.

a.The website offering product and services to the visitors country
b.*A website that provides Free content for related keywords
c.Hidden keywords on the homepage matching search term
d.Image alt tag on the homepage matching search term

26. Which of the following website design guideline has been recommended by google?

a.Having a clear hierachy and text links
b.*Every page should be reachable from atleast one static text link
c.If the sitemap is larger than 100 or so links, you should break the sitemap into separate pages
d.Keep the links on a given page to a reasonable number (fewer than 100)
e. Use less than 30 images or graphics per page

27. What is the main reason for the effectiveness of Optimizing a web page towards a long tails keyword search? Recheck

a.There are more long tail searches than shorter keyword queries
b.*Search engine often pass on long tail searches to lesser or new website
c.Search engine do not pass on long tail search traffic to website that rank high for shorter keyword searches (check)
d. There are fewer webvsite that have targeted such keyword's


28 Which of the following statement is correct with regard's to the images within a web page?

a.Images can not be spidered by the search engine (check)
b. Important keywords related to the image should be plcaed in the ALT text
c.Images should always be kept close to the top of a web page
d. Image maps should be used while including the images

29. What does the 302 server Response Code signify?

a.* It signifies conflict, too many people wanting the same file at the same time
b.The page has been permanently removed
c.The method you are using to access the file is not allowed
d.The page has temporarily moved
e.What you requested is just too big to process

30. State whether the following statement is true or false. A sitemap provide a list of natural links to user accessible pages on a website

a.*True
b.Fals

Odesk SEO Test answers

1.Question: Which of the following search engines or directories provides the directory search results for Yahoo?

a. Windows Live
b. Yahoo Directory
c. Google
d. Wikipedia
e. DMOZ
Ans:B

2.Question: Which of the following statements regarding website content are correct?                                                             
a. If you have two versions of a document on your website, Google recommends that you only allow the indexing of the better version
b. Linking to a page inconsistently does not affect the way Google views the page/s. Examples of inconsistent linking could be http://www.expertrating.com/page/ and http://www.expertrating.com/page and http://www.expertrating.com/page/index.htm
c. Syndicating your content could lead to Google viewing the material as duplicate
d. Placeholders for pages which do not have content are never viewed as duplicate content by Google
Ana:c
3.Question: What is Keyword Density?
a.The number of times the keyword is used / (DIVIDED BY) the total word count on page - (MINUS)the total words in HTML on the page
b.The number of times the keyword is used X (MULTIPLIED BY) the total word count on page
c.The number of times the keyword is used in the page description
d.The number of times the keyword is used in the page title
e.The number of times the keyword is used / (DIVIDED BY) the total word count on the page
Ans: D
4.Question: Which of the following statements about the Google Sitemap are correct:
a.Repeated submission of the Sitemap to Google could be penalized
b.It is possible to create and submit specialized Sitemaps to Google for Video and Mobile content
c.The Sitemap acceptable to Google follows an XML format
Ans: A
5.Question: Are RSS/Atom feeds returned in Google's search results?
a.Yes
b.No
Ans: B
6.Question: What does the term Keyword Prominence refer to?
a.It refers to the fact that the importance of choosing high traffic keywords leads to the best return on investment
b.It refers to the importance attached to getting the right keyword density
c.It refers to the fact that the keywords placed in important parts of a webpage are given priority by the search engines
d.It refers to the fact that the keywords in bold font are given priority by the search engines
Ans: C
7.Question: Which of the following factors does Google take into account while assessing whether or not a website is an authority website?
a.The frequency with which the content of the website is updated
b.The number of web pages containing relevant information on the main theme of the website
c.The number of in-bound natural links related to the website's theme (or keywords)
d.None of the above
Ans: A,B,C
8.Question:  What is Anchor Text?
a.It is the main body of text on a particular web page
b.It is the text within the left or top panel of a web page
c.It is the visible text that is hyper linked to another page
d.It is the most prominent text on the page that the search engines use to assign a title to the page
Ans: C
9.Question: If you search for the term "iq test" in the Word Tracker keyword suggestion tool, will it return the number of independent searches for the term "iq"?
a.Yes
b.No
Ans:B
10.Question: What is the illegal act of copying of a page by unauthorized parties in order to filter off traffic to another site called?
a.Trafficjacking
b.Visitorjacking
c.Viewjacking
d.Pagejacking
Ans: D
11.Question: Do search engines such as Google detect unnatural linking patterns by checking the Class C IP address of the page where the link to the website originates?
a.Yes
b.No
Ans: A
12.Question: What term is commonly used to describe the shuffling of positions in search engine results in between major updates?
a.Waves
b.Flux
c.Shuffling
d.Swaying
Ans: B
 
13.Question: While grading your website, Google gives credit to outbound links pointing to authority websites?
a.True
b.False
Ans: B
14.Question: Which of the following URLs can the Google search engine spider?
a.http://www.expertrating.com/exams/seo.asp?examnum=243&examtype=244
b.http://www.expertrating.com/exams/seo.asp?examnum=243
c.http://www.expertrating.com/exams/seo.asp
d.http://www.expertrating.com/exams/seo.html
e.All of the above
Ans: E
15.Question: Google displays up to _____ characters of a webpage's Title Tag.
a.56
b.60
c.66
d.80
Ans: b,c
16.Question: What does the 302 server response code signify?
a.It signifies conflict, too many people wanted the same file at the same time
b.The page has been permanently removed
c.The method you are using to access the file is not allowed
d.The page has temporarily moved
e.What you requested is just too big to process
Ans: D
17.Question: Which of the following statements is correct with regard to the description meta tag?
a.It should be about 50 characters in length
b.The description should not contain the keywords
c.If the meta description is not included, the search engines will use the meta keywords for information
d.Google uses the meta description to generate the search engine results pages
Ans: D
18.Question: State whether true or false.
The Yahoo Directory listing is a free service for commercial sites.
a.True
b.False
Ans: A
19.Question: Which of the following statements is correct with regard to the images within a webpage?
a.Images cannot be spidered by the search engines
b.Important keywords related to the image should be placed in the ALT text
c.Images should always be kept close to the top of a webpage
d.Image maps should be used while including the images
Ans: B
20.Question: Cloaking is a controversial SEO technique. What does it involve?
a.Increasing the keyword density on the web pages
b.Offering a different set of web pages to the search engines
c.Hiding the keywords within the webpage
d.Creating multiple pages and hiding them from the website visitors
Ans: B
21.Question: Which of the following facts about Alexa are correct?
a.Alexa provides free data on relative website visitor traffic
b.Alexa and Quantcast provide information on visitor household incomes
c.Alexa is biased towards US based traffic
d.Quantcast only tracks people who have installed the Quantcast toolbar
ANS: A

 
22.Question: Google looks down upon paid links for enhancing page rank. If a website sells links, what action/s does Google recommend to avoid being penalized?
a.The text of the paid links should state the words "paid text link" for Google to identify it as a paid link
b.Only Paid text links to non profit websites should be accepted
c.Paid links should be disclosed through the "rel=nofollow" attribute  in the hyperlink
d.Paid links should be disclosed through the "index=nofollow" attribute  in the hyperlink
Ans: C
23.Question: Which of the following actions could get you banned by Google?
a.Hiding text on the webpage
b.Stuffing keywords on the webpage
c.Linking to sites banned by Google
d.None of the above
Ans:  A
24.Question: Which of the following s about Google's technical and quality guidelines is true?
a. It is advantageous if your web server supports the If-Modified-Since HTTP heade
b. If using dynamic pages, it helps to keep the parameters short and the number of them few
c. Avoid using robots.txt to prevent crawling of search results pages or other auto-generated pages, even if they don't add much value for users coming from search engines
d. Submitting new pages of your website at http://www.google.com/addurl.html as soon as they are online, helps to speed up indexing
Ans: B
25.Question: Which of the following is an ethical SEO Technique?
a.Creating a subdomain with the hottest keyword and creating duplicate copies of existing pages on it
b.Filling your pages with keywords, whether relevant to the page content or not
c.Creating a page which serves a different content to the search engine bots and different to human users
d.None of the above
Ans: D
26.Question: All major search engines are case sensitive.
a.True
b.False
Ans: B
27.Question: While optimizing your website it is important to generate the right type of traffic, how does the Bounce Rate information help in this regard?
a.By letting you know the percentage of users who entered the website and then went on to visit additional pages          
b.By letting you know the percentage of users who entered the website and then left without viewing any other page
c.By letting you know the percentage of users who decided to go back to the source from where they found your website
d.By letting you know the percentage of users who left your website within 10 seconds of viewing the first page
Ans: B
28.Question: Which of the following factors contribute towards link popularity of a website?
a.The number of websites that link to it
b.The number of pages of the website indexed by Google
c.The number of pages in the website
d.The quality of websites that link to it
Ans: A,B,C,D
29.Question: Search engines do not index some common words (such as "or", "and", "when", and "in") within the webpage. What are these common words called?
a.Barrier words
b.Non-indexable words
c.Slow words
d.Stop words
Ans: D
30.Question: Which of the following activities could be looked down upon by Google as per their quality guidelines?
a.Using automated website submission software
b.Loading pages with irrelevant links
c.Intentionally adding keywords to the TITLE tags and ALT attributes
d.Registering misspellings of well-known websites
Ans: B,C
31.Question: Which of the following statements about RSS are correct?
a.It is a form of XML
b.tstands for Realtime streamlined syndication
c.It is a good way of displaying static information
d.It is a Microsoft technology
Ans: A
32.Question:_________ is usually the best web page to get linked to while receiving a themed in-bound link from another website.
a.The sitemap
b.The contact page
c.The home page
d.The page which you would like to improve in the search engine rankings
Ans: D
33.Question: Which of the following can be termed as good keyword selection and placement strategies?
a.Targeting synonyms of the main keyword
b.Targeting the highest searched keywords only
c.Copying competitor keywords
d.ofive or more keywords per page
ANS: A, D
34.Question: If your site is not appearing in Google search results because of some unethical SEO practices in the recent past, _________________.
a.abandon and close your website permanently.
b.modify the page contents, make them useful and relevant to the human users, and request Google to reconsider your site.
c.start a PPC campaign to get your site included in the sponsored results.
d.it is better to discontinue the website and shift your webpages to a fresh website with a new domain name.
Ans:  D
35.Question: Which of the following statements about search engine optimization techniques are correct:
a.Making a keyword bold does not influence the way that the search engine looks at the keyword
b.Websites with deep linking are looked at favorably by search engines
c.search engine robots follow the first link they find to any particular page and they do not follow additional links to the same page
d.It is not a good idea to have the same anchor text for all inbound links as it could look automated to the search engines
Ans: A, B, D
36.Question: A Hallway Page is used to:
a.Attract visitors from the search engines straight onto the Hallway Page
b.Organize the Doorway Pages
c.Help people navigate to different Doorway Pages
d.Enable search engine bots to index the Doorway Pages
Ans: D
37.Question: Which of the following free tools/websites could help you identify which city in the world has the largest search for the keyword - "six sigma"?
a.Yahoo Search Term Suggestion Tool
b.Alexa
c.Google Traffic Estimator
d.Google Trends
e.WordTracker
Ans: D
38.Question: How are site maps important for the search engine optimization process?
a.Site maps help the search engine editorial staff to quickly go through a website, hence ensuring quicker placement
b.Ggives credit to the websites having site maps. The GoogleBot looks for the keyword or title "Site Map" on the home page of a website.
c.Site maps help the search engine spider pick up more pages from the website
d.None of the above
Ans: C
39.Question: State whether the following statement is true or false.
A Sitemap provides a list of internal links to user accessible pages on a website.
a.True
b.False
Ans: A
40.Question: What is the function of "indexer" part of the Google search engine?
a.It helps to retrieve web pages from the world wide web
b.It helps to gather information from other search engines
c.It helps to sort the documents that Google has retrieved
d.It helps to generate meaningful results based upon the user's search term
Ans:  D
41.Question: Which of the following conditions will Google treat favorably from the 'Relevancy' perspective?
a.The website offering products and services to the visitors country
b.A website that provides free content for the related keywords
c.Hidden keywords on the home page matching the search term
d.Image Alt tags on the home page matching the search term
Ans: D
42.Question: Some words, when followed by a colon, have special meanings to Yahoo. What is performed by the link: operator?
a.It shows all the outbound links from the URL
b.It shows how many pages of the site Yahoo is pointing to
c.It shows all the pages that point to that URL
d.It shows URLs with broken links
ANS:  C



43.Question: Which of the following factors have an impact on the Google PageRank?
a.The total number of inbound links to a page of a web site
b.The subject matter of the site providing the inbound link to a page of a web site
c.The text used to describe the inbound link to a page of a web site
d.The number of outbound links on the page that contains the inbound link to a page of a web site
ANS:  A
44.Question: What is the term for Optimization strategies that are in an unknown area of reputability/validity?
a.Red hat techniques
b.Silver hat techniques
c.Grey hat techniques
d.Shady hat techniques
ANS: C
45.Question: Why is it a bad idea from the seo perspective to host free articles and write ups that are very common on the internet.
a.Because they will not lead to fresh traffic
b.Because you could get penalized by search engines for using duplicate content
c.Because you will not get the benefits of proper keyword targeting
d.Because people could turn up claiming copy right infringement
ANS: B
46.Question: The following robots meta tag directs the search engine bots:
<META NAME="robots" CONTENT="noindex,nofollow">
a.Not to index the homepage and not to follow the links in the page
b.Not to index the page and not to follow the links in the page
c.To index the page and not to follow the links in the page
d.Not to index the page but to follow the links in the page
ANS:  B
47.Question:_________________ use both crawlers and directories to generate relevant results.
a.Crawler-based Search Engines
b.Human-Powered Directories
c.Hybrid Search Engines
d.Meta Search Engines
ANS:  D
48.Question: Which of the following statements is correct with regard to natural links?
a.They are two way links (reciprocal links)
b.They are from authority websites
c.They are voluntary in nature
d.They are from .edu or .gov extension websites
ANS: C
49.Question: What will happen if you type the words 'Certification -Networking' in the Google search box?
a.Google will find the web pages about Certification and also containing the word "Networking"
b.Google will find all the web pages containing the words "Certification" and "Networking"
c.Google will find all the web pages in which the words "Certification" and "Networking" appear together
d.Google will find the web pages about Certification that do not contain the word Networking
ANS: D
50.Question: If you enter 'Help site:www.microsoft.com' in the Google search box, what will Google search for?
a.It will open up the Google help pages applicable to www.expertrating.com
b.It will find pages about help within www.expertrating.com
c.It will only find page titles about help within www.expertrating.com
d.It will direct you to the request page for re-indexing of www.expertrating.com
ANS: B
51.Question: Which of the following statements about FFA pages are true?
a.They are greatly beneficial to SEO
b.They are also called link farms
c.They are paid listings
d.They contain numerous inbound links
ANS: B
52.Question: What is the name of the search engine technology due to which a query for the word 'actor' will also show search results for related words such as actress, acting or act?
a.Spreading
b.Dilating
c.RSD (real time synonym detection)
d.Stemming
e.Branching
ANS: D
53.Question: If a website's search engine saturation with respect to a particular search engine is 20%, what does it mean?
a.20% of the webpages of the website have been indexed by the search engine
b.Only 20% of the pages of the website will be indexed by the search engine
c.20% of the websites pages will never be indexed
d.The website ranks in the first 20% of all websites indexed by the search engine for its most important search terms
ANS: A
54.Question: What is the main reason for the effectiveness of optimizing a webpage towards a long tail keyword search?
a.There are more long tail searches than shorter keyword queries
b.Search engines often pass on long tail searches to lesser known and new websites
c.Search engines do not pass on long tail search traffic to websites that rank high for shorter keyword searches
d.There are fewer websites that have targeted such keywords
ANS:A