Sunday 30 June 2013

oDesk HTML 4.01 Test Questions and Answers.(Part-01)



Question no. 41
The tag which is used to show monospaced text is:
a. <td>
b. <th>
c. <tt>
d. <b>


Question no. 42
What would you infer from the following code in an HTML 4.01 Web site? <body topmargin=2 leftmargin=2>
a. The top margin and left margin of the webpage is 2 pixels.
b. The bottom margin and right margin of the web page is 2 pixels.
c. Both of the above.
d. None of the above. The topmargin and leftmargin attributes are not valid HTML 4.01 body attributes.


Question no. 43
You want to display a table listing out customer names and their contact information. The heading of the table is shown in the figure. What is the code for creating the first line of the table heading?
a. <tr>
<th>Customer Name</th>
<th colspan=3>Contact</th>
</tr>
 
b. <tr>
<th>Customer Name</th>
<th cellpadding=3>Contact</th>
</tr>
c. <tr>
<th>Customer Name</th>
<th rowspan=3>Contact</th>
</tr>
d. <tr>
<th>Customer Name</th>
<th cellspacing=3>Contact</th>
</tr>
<tr> <th>Customer Name</th> <th cellpadding=3>Contact</th> </tr>


Question no. 44
A developer wrote this image tag:
<img src ="states.gif" width ="330" height ="406" alt="States"
usemap ="#statemap" />
What code should follow this?
a. <map id ="statemap" name="statemap">
<area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" />
</map>

b. <map id ="statemap" name="statemap"> </map>
<area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" />
c. <map id ="statemap" name="statemap">
<img area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" /> </map>
d. <map id ="statemap" name="statemap">
<img area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" /> </map>


Question no: 45
A few lines in an HTML paragraph are to be formatted differently from the rest of the lines. Which tag will assist in this?
a. div
b. p
c. span
d. format



Question no. 46
Which of the following attributes comes in handy when borders have to be put between groups of columns instead of every column?
a. col
b. colgroup 
c. rowspan
d. row


Question no. 47
Which of the following set of coordinate values refers to an image defined by the area tag with the value of poly for its shape attribute?
a.coords="150,217,190,257,150,297,110,257"
b.coords="150,190,150,110"
c.coords="150,217,190,257,150"
d. coords="150,110,190,220,150,150,120"


Question no. 48
For the following items 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 selecting Item 2 from the list?
a. 89
b. 90
c. Item 1
d. Item 2



Question no. 49
The tag that is used to pass the parameters to an applet is:
a. appletpar
b. applet
c. param 
d. val



Question no. 50
Which of the following values for the scrolling attribute for the frame tag is not valid?
a.yes
b.default
c.auto
d. no


Question no. 51
Is the following code valid in HTML 4.01 Strict?
<ul><li><ol><li>A</li><li>B</li><ul><li>Item1</li><li>Item 2</li></ul><li>C</li></ol></li></ul>
a. Perfectly valid.
b. Invalid because you should not have three levels of nesting in the lists.
c. Invalid because you should not have an unordered list within an ordered list.
d. Invalid because a <ul> tag should not conflict with an <ol> tag at the same list level.



Question no. 52
The following link is placed on an HTML webpage.
<a href="http://msdn.com/" target="_blank"> MSDN </a>
What do you infer from it?
a. It will open the site msdn.com in the same window.
b. It will open the site msdn.com in a new window.
c. It will open the site msdn.com in a frame below.
d. It will not be clickable as it is not formed correctly.


Question no. 53
Which of the following attributes is/are related to the <img> tag?
a. height
b. alt
c. src
d. All of the above



Question no. 54
You are creating several web pages for a website that contain several rather large data tables, many of which are somewhat similar in the number of columns, rows, and in other common table formatting. In addition, CSS will be employed for formatting the tables. Which one of the following types of CSS has the highest priority over the others and typically requires the greatest total amount of code space for the entire website for formatting the various <td> table cells?
a.External style sheet
b.Inline style 
c.Internal style sheet
d. Browser default



Question no. 55
A piece of text contains many blank spaces within it. Which of the following tags would be suitable to display the text as it was originally formatted?
a.td
b.p
c.ls
d. pre



Question no. 56
Which of the following is/are not true for a paragraph tag in HTML 4.01?
a. The text must be enclosed in <p> and </p> tags.
b. It creates an empty line above its starting line.
c. It cannot be used within a <td> tag.
d. It creates an empty line after its ending line.


Question no. 57
Which of the following statements is correct for the tag?
a. The text under block quote must be enclosed in a block level element in a strict DTD document.
b. The attribute named cite must be specified.
c. Closing the tag is optional.
d. It places an empty line after the text.


Question no. 58
What do you infer from the following code? <a href = "http://www.expertrating.com"> Expert Rating
a.This href is using absolute path for linking. 
b. This href is an example of relative path linking.



Question no. 59
Which of the following values is/are valid for the align attribute of a tag?
a.left
b.right
c.center
d. offset


Question no. 60
Which of the following is/are a valid value for the type attribute of the input tag?
a. text
b. icon
c. reset
d. password


Question no. 61
It is not necessary to give the coordinates for an image or object defined within an area tag, if the value of its shape attribute is:
a.circle
b.poly
c.default
d. rect


Question no. 62
Which of the following is not a valid input type of the form tag?
a. checkbox
b. image
c. hidden
d. button
e. All are valid


Question no. 63
Which of the following tags can be used in place of a button tag?
a. legend
b. ol
c. input
d. dl


Question no. 64
Choose the incorrect statement(s):
a. An HTML attribute is additional information included inside a tag.
b. HTML is case sensitive.
c. All the HTML4.01 tags must be paired.
d. Your browser may appear to correctly use newly deprecated code for the present, but its support for deprecated code could be
halted at any time after the browser is updated.



Question no. 65
Which of the following statements is correct for a blockquote?
a. It make the text a bit bigger for emphasizing.
b. It defines the start of a long quote.
c. It makes the text slightly bolder.
b. It defines the start of a long quote.


Question no. 64
Choose the incorrect statement(s):
a. An HTML attribute is additional information included inside a tag.
b. HTML is case sensitive.
c. All the HTML4.01 tags must be paired.
d. Your browser may appear to correctly use newly deprecated code for the present, but its support for deprecated code could be
halted at any time after the browser is updated.



Question no. 65
Which of the following values is/are valid for the align attribute of a tag?
a.left
b.right
c.center
d. offset



Question no. 66
What would you infer from the following code in an HTML 4.01 Web site? <body topmargin=2 leftmargin=2>
a. The top margin and left margin of the webpage is 2 pixels.
b. The bottom margin and right margin of the web page is 2 pixels.
c. Both of the above.
d. None of the above. The topmargin and leftmargin attributes are not valid HTML 4.01 body attributes.


Question no. 67
You do not want to resize the frame. The code should be:
a. <frame src = “MyPage.html” name=”HomePage” scrolling=Yes resize = “false”>
b. <frame src = “MyPage.html” name=”HomePage” scrolling=Yes resize = “true”>
c. <frame src = “MyPage.html” name=”HomePage” scrolling=Yes noresize = “true”>
d.<frame src = “MyPage.html” name=”HomePage” scrolling=Yes noresize = “noresize “>


Question no. 68
Which of the following is not an atribute of meta tag?
a. name
b. content
c. type
d. http-equiv


Question no. 69
Choose the incorrect statment.
a. The <em> tag emphasizes the given text by italiczing.

b. The <code> tag indicates that the text inside is an example of typed code.
c. The <var> tag indicates that the text inside the tag has been revised 
d. The <strong> tag strongly emphasizing the text

Question no. 70
The tag is used to pass the parametrs to an applet is:
a. appletpar
b. applet
c. param
d. var


Question no. 71
Which form event is fired on the click of a button tag with its type atribute value equal to submit.
a. onload
b. onsubmit 
c. onload
d. onreset

For more oDesk HTML 4.01 Test Questions and  Answers:

Tuesday 18 June 2013

ODESK TEST ANSWER(SEO) FROM GRAPHIC DUNIA




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

Ans:   a. targeting synonyms of the main keyword
d. Optimizing five or more keywords per page

 2.   What will happen if you type the words Certification-Networking in the Google search box?

Ans: Google will find all the web pages in which the words certification and networking  appear together

 3.   Google display up to _______ characters of a webpages Title Tag.

Ans: 66
    
 4.   Which is the function of indexer part of the Google search Engine?

Ans: It helps to retrieve web pages from the world wide wed

 5.   Which of the following statements about google techinical and quality guidlines is true?

Ans: Avoid using robot.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 the search engines.

 6.   What is the most likely time period required for getting a Google page rank?

Ans: More Than 3 months.

 7.   Which of the following is an ethical SEO Technique?

Ans: Non of the above.

 8.   What is Anchor Text?

Ans: it is the visible text that is hyper linked to another page

 9.   Google looks down upon paid links for enhancing page rank. If a website sells a links, what actions does Google recommend to avoid being penalized?

Ans: Paid links should be disclosed through index-nofollow attribute in the hyperlink

10.   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?

Ans: RSD (real time synonym detection)

11.   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” Yes or no?

Ans: no

12.   Which search engine technology prevents a website from appearing in numerous top positions in the search engine result pages?

Ans: clustering

13.   If a websites search engine saturation with respect to a particular search engine is 20%. What does it mean?

Ans: only 20% of the pages of the website will be indexed by the search engine

14.   Implementing a 301 permanent Redirects on the old pages to redirect to the new pages is a good idea from the SEO perspective. True or False?

Ans: True

15.   Which black hat SEO Technique is characterized by a method to deceive search engines, by detecting the search engine boot and “feeding” it with a different HTML actually served to users?

Ans: Cloaking

16.   Are Rss/Atom feeds returned in Google search results?

Ans: No

17.   All major search engines are case sensitive.

Ans: False

18.   Cloaking is a controversial SEO technique. What does it involve?

Ans: Offering a different set of web pages to the search engines.

19.   Which of the following statements is correct with regard to the description Meta tag?

Ans: Google uses the Meta description to generate the search engine results pages.

20.   Which of the following statements about the search engine optimization techniques are correct?

Ans: Websites with deep linking are looked at the favorably by search engines.

21.   Which of the following factors have an impact on the Google page rank?

Ans: the subject matter of the site providing the inbound link to a page of a web site

22.   If you enter “help site: http://www.arsbd.blogspot.com/” in the Google search box, what will Google search for?

Ans: It will find pages about help with-in http://arsbd.blogspot.com/.


23.   Which of the following website design guidelines have been recommended by Google?

Ans: Every page should be reachable from at least one static text link.

24.   Which of the following statements regarding website content are correct?

Ans: If you have two versions of a document on your website, Google recommends that you only allow the indexing of the better version.

25.   Which of the following statements about the RSS are correct?

Ans: It is a form of XML

26.   What is the main reason for the effectiveness of optimizing a WebPages towards a long tail keyword search?

Ans: there are fewer websites that have targeted such keywords.

27.   How are the site maps important for the search engine optimization process?

Ans: Site maps help the search engine spider pick up more pages from the website.

28.   Which of the following actions could get you banned by Google?

Ans: None of the above.

29.   Do search engines such as Google detect in natural linking patterns by checking the Class C ip address of the page where the link to the websites originates? Yes or no?

Ans: yes

30.   What is the term for optimization strategies that are in an unknown area of reputability/validity?

Ans: Silver hat techniques.

31.   What does the term keyword prominence refer to?

Ans: It refers to the fact that the keywords placed in important parts of a webpage are given priority by the search engines.

32.   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 (Ans)
d.   It show url’s with broken links

33.   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 (Ans)

34.   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 (Ans)
c.    Because you will not get the benefits of proper keyword targeting
d.   Because people could turn up claiming copyright infringement

35.   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. (Ans)
d.   Google will find the web pages about Certification that do not contain the word Networking
36.   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)(Ans)
d.   None of the above

37.   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. (Ans)

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

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

39.   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 (Ans)

40.   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 (Ans)

41.   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) (Ans)




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*False

31.  State whether true or false. 
The Yahoo Directory listing is a free service for commercial site?

a*True
b.False

v



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

Question: 2
Which of the following statements regarding website content are correct?
Ans: A
Question: 3
What is Keyword Density?
Ans: D

Question: 4


Which of the following statements about the Google Sitemap are correct:
Ans: A

Question: 5
Are RSS/Atom feeds returned in Google’s search results?
Ans: B

Question: 6
What does the term Keyword Prominence refer to?
Ans: C

Question: 7
Which of the following factors does Google take into account 
while assessing whether or not a website is an authority website?
Ans: A,B,C

Question:  8
What is Anchor Text?
Ans: C

Question: 9
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”?
Ans: B

Question: 10
What is the illegal act of copying of a page by unauthorized parties 
in order to filter off traffic to another site called?
Ans: D

Question:  11
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?
Ans: A

Question:  12
What term is commonly used to describe the shuffling of positions in search 
engine results in between major updates?
Ans: B

Question: 13
While grading your website, Google gives credit to outbound links pointing 
to authority websites?
Ans: B

Question:  14
Which of the following URLs can the Google search engine spider?
Ans: E

Question: 16
What does the 302 server response code signify?
Ans: D

Question: 17
Which of the following statements is correct with regard to the description meta tag?
Ans: D

Question: 18
State whether true or false.The Yahoo Directory listing is a free service for commercial sites.
Ans: A

Question: 19
Which of the following statements is correct with regard to the images within a webpage?
Ans: B

Question: 20
Cloaking is a controversial SEO technique. What does it involve?
Ans: B

Question:  21
Which of the following facts about Alexa are correct?
ANS: A

Question: 22
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?
Ans: C

Question:  23
Which of the following actions could get you banned by Google?
Ans:  A

Question:  24
Which of the following statements about Google’s technical and quality guidelines is true?
Ans: B

Question: 25
Which of the following is an ethical SEO Technique?
Ans: D

Question:  26
All major search engines are case sensitive.
Ans: B

Question:  27
While optimizing your website it is important to generate the right type of traffic, how does the Bounce Rate information help in this regard?
Ans: B

Question:  28
Which of the following factors contribute towards link popularity of a website?
Ans: A,B,C,D

 Question:  29
Search engines do not index some common words (such as “or”, “and”, “when”, and “in”) within the webpage. What are these common words called?
Ans: D

Question:  30
Which of the following activities could be looked down upon by Google as per their quality guidelines?
Ans: B,C

Question:  31
Which of the following statements about RSS are correct?
Ans: A

Question:  32
_________ is usually the best web page to get linked to while receiving a themed in-bound link from another website.
Ans: D

Question: 33
Which of the following can be termed as good keyword selection and placement strategies?
ANS: A, D

Question:  34
If your site is not appearing in Google search results because of some unethical SEO practices in the recent past, _________________.
Ans:  D

 Question:  35
Which of the following statements about search engine optimization techniques are correct:
Ans: A, B, D

Question:  36
A Hallway Page is used to:
Ans: D

 Question:  37
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”?
Ans: D

 Question:  38
How are site maps important for the search engine optimization process?
Ans: C

Question:  39
State whether the following statement is true or false.A Sitemap provides a list of internal links to user accessible pages on a website.
Ans: A

Question:  40
What is the function of “indexer” part of the Google search engine?
Ans:  D

Question:  41
Which of the following conditions will Google treat favorably from the ‘Relevancy’ perspective?
Ans: D

Question:  42
Some words, when followed by a colon, have special meanings to Yahoo. What is performed by the link: operator?
ANS:  C

Question:  43
Which of the following factors have an impact on the Google Page Rank?
ANS:  A

Question:  44
What is the term for Optimization strategies that are in an unknown area of reputability/validity?
ANS: C

Question:  45
Why is it a bad idea from the seo perspective to host free articles and write ups that are very common on the internet.
ANS: B

Question:  46
The following robots meta tag directs the search engine bots:
ANS:  B

Question:  47
_________________ use both crawlers and directories to generate relevant results.
ANS:  D

 Question:  48
Which of the following statements is correct with regard to natural links?
ANS: C

Question:  49
What will happen if you type the words ‘Certification -Networking’ in the Google search box?
ANS: D

Question:   50
If you enter ‘Help site:www.microsoft.com’ in the Google search box, what will Google search for?
ANS: B

Question: 51
Which of the following statements about FFA pages are true?
ANS: B

Question:  52
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?
ANS: D

Question:  53
If a website’s search engine saturation with respect to a particular search engine is 20%, what does it mean?
NS: A

 Question: 54
What is the main reason for the effectiveness of optimizing a webpage towards a long tail keyword search?
ANS:   A



Odesk Seo Test Questions And Answers 2013
oDesk Search Engine Optimization Test Questions and Answers
Question: Which of the following search engines or directories provides the directory search results for Yahoo? 
 b. Yahoo Directory 

Question: Which of the following statements regarding website content are correct?                                                             
c. Syndicating your content could lead to Google viewing the material as duplicate

Question: What is Keyword Density?
d.The number of times the keyword is used in the page title

Question: Which of the following statements about the Google Sitemap are correct:
a.Repeated submission of the Sitemap to Google could be penalized

Question: Are RSS/Atom feeds returned in Google's search results?
b.No

Question: What does the term Keyword Prominence refer to?
c.It refers to the fact that the keywords placed in important parts of a webpage are given priority by the search engines

Question: Which of the following factors does Google take into account while assessing whether or not a website is an authority website?
Ans: A,B,C

Question:  What is Anchor Text?
c.It is the visible text that is hyper linked to another page

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"?
b.No

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

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

Question: What term is commonly used to describe the shuffling of positions in search engine results in between major updates?
 b.Flux

Question: While grading your website, Google gives credit to outbound links pointing to authority websites?
b.False

Question: Which of the following URLs can the Google search engine spider?
e.All of the above

Question: Google displays up to _____ characters of a webpage's Title Tag.
c.66

Question: What does the 302 server response code signify?
 d.The page has temporarily moved

Question: Which of the following statements is correct with regard to the description meta tag?
d.Google uses the meta description to generate the search engine results pages

Question: State whether true or false.
The Yahoo Directory listing is a free service for commercial sites.
a.True

Question: Which of the following statements is correct with regard to the images within a webpage?
b.Important keywords related to the image should be placed in the ALT text

Question: Cloaking is a controversial SEO technique. What does it involve?
b.Offering a different set of web pages to the search engines

Question: Which of the following facts about Alexa are correct?
a.Alexa provides free data on relative website visitor traffic

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?
 c.Paid links should be disclosed through the "rel=nofollow" attribute  in the hyperlink

Question: Which of the following actions could get you banned by Google?
a.Hiding text on the webpage

Question: Which of the following statements about Google's technical and quality guidelines is true?
b. If using dynamic pages, it helps to keep the parameters short and the number of them few

Question: Which of the following is an ethical SEO Technique?
d.None of the above

Question: All major search engines are case sensitive.
b.False

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?
b.By letting you know the percentage of users who entered the website and then left without viewing any other page

Question: Which of the following factors contribute towards link popularity of a website?
Ans: A,B,C,D

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?
d.Stop words

Question: Which of the following activities could be looked down upon by Google as per their quality guidelines?
Ans: B,C
Question: Which of the following statements about RSS are correct?
a.It is a form of XML

Question:_________ is usually the best web page to get linked to while receiving a themed in-bound link from another website.
d.The page which you would like to improve in the search engine rankings

Question: Which of the following can be termed as good keyword selection and placement strategies?
Ans: A,D

Question: If your site is not appearing in Google search results because of some unethical SEO practices in the recent past, _________________.
d.it is better to discontinue the website and shift your webpages to a fresh website with a new domain name.

Question: Which of the following statements about search engine optimization techniques are correct:
Ans: A, B, D

Question: A Hallway Page is used to:
d.Enable search engine bots to index the Doorway Pages

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"?
d.Google Trends

Question: How are site maps important for the search engine optimization process?
c.Site maps help the search engine spider pick up more pages from the website

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

Question: What is the function of "indexer" part of the Google search engine?
d.It helps to generate meaningful results based upon the user's search term

Question: Which of the following conditions will Google treat favorably from the 'Relevancy' perspective?
d.Image Alt tags on the home page matching the search term

Question: Some words, when followed by a colon, have special meanings to Yahoo. What is performed by the link: operator?
c.It shows all the pages that point to that URL

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

Question: What is the term for Optimization strategies that are in an unknown area of reputability/validity?
c.Grey hat techniques

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.
b.Because you could get penalized by search engines for using duplicate content

Question: The following robots meta tag directs the search engine bots:
<META NAME="robots" CONTENT="noindex,nofollow">
b.Not to index the page and not to follow the links in the page

Question:_________________ use both crawlers and directories to generate relevant results.
d.Meta Search Engines

Question: Which of the following statements is correct with regard to natural links?
c.They are voluntary in nature

Question: What will happen if you type the words 'Certification -Networking' in the Google search box?
d.Google will find the web pages about Certification that do not contain the word Networking

Question: If you enter 'Help site:www.microsoft.com' in the Google search box, what will Google search for?
b.It will find pages about help within www.expertrating.com

Question: Which of the following statements about FFA pages are true?
b.They are also called link farms

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?
d.Stemming

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

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

Question:10 people do a web search. In response, they see links to a variety of web pages. Three of the 10 people choose one particular link. That link then has a __________ clickthrough rate.
 b. 30 percent 

 See also more....
ODESK TEST ANSWER FROM GRAPHIC DUNIA