This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Best Web Design Tutorial

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Networking Tutorial

Beginners can study these key networking concepts and technologies to learn the basics of computer networking fast.

Search Engine Optimization

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Graphics Design Tutorial

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Showing posts with label Odesk. Show all posts
Showing posts with label Odesk. Show all posts

Friday, February 1, 2013

Odesk CSS Test Answare 2013

Question 1:Which of the following is true for a class selector?


a. It uses a hash as the separator symbol
b. It applies the style to only the first element defined with that style
c. It applies the style to only the last element defined with that style
d. It applies the style to all the elements defined with that style
Ans:D


Question 2:
Which of the following does not apply to external styles?

a. Clean separation of design & content
b. Minimal code duplication
c. Highest priority
d. Reduces page download time
Ans: C

Question 3:
Read the following Code:
BODY {
Background: white url(“bar.gif”);
Background-repeat: repeat-y;
Background-position: center;
}
What will be the output of this code?


a. Image bar.gif will be tiled vertically in the background in the center of the page.
b. Image bar.gif will be tiled horizontally in the background in the center of the page
c. Image bar.gif will be displayed in the center of the page
d. Image bar.gif will be stretched in the center of the page
Ans: A


Question 4: Which of the following is not a valid text-decoration option?

a. Text-decoration :line-through
b. Text-decoration :in-line
c. Text-decoration :overline
d. Text-decoration :underline
e. Text-decoration :none
Ans: B


Question 5:
You defined some links as follows:
A:link{color:green}
A:visited{color:blue}
A:hover{color:red)
A:active{color:black}
What will be the color, when the mouse goes over a link?


a. Green
b. Blue
c. Red
d. Black
Ans: B


Question 6:
The following is a style definition:
Td#aln
{text-align:center;
color:blue}


How will you refer to this style in your web page?

 A. by using the class attribute in a td cell
 B. by using the id Attribute in a td cell
 C. by using the class attribute in any html element which supports the class attribute
 D. by using the id attribute in any html element which support the id attribute
Ans: B


Question 7: Which of the following is not a valid property of an aural style sheet?
a. Cue
b. Voice-family
c. Load
d. Speak
Ans: C
Question 8:
Your website displays some articles on java programming. The articles contain blocks of java code as well. If you want to leave ‘1 cm’ space above and below the code blocks, you would use:

a. Code{margin:1cm}
b. Code{margin-top:1cm; margin-bottom:1cm}
c. P{margin:1cm}
d. P{margin-top:1cm; margin-bottom:1cm}
Ans: B
Question 9:


Text text text text
A Text text
Sentence text text
Inside text text
A text ext
Text text text
Text text
Text text text text

You have and article of 100 lines. If for instance, you want to describe the theme with a few lines inside the text highlighted separately as show in the image which of the following property will you use?

a. Outline
b. Display
c. Float
d. Merge

Question 10:
You are fetching customer names from a database. The names in the database are mostly in lowercase. What is the name of the text property which will facilitate capitalization of these names?

a. Text-mode
b. Text-transform
c. Text-decoration
d. Text-shadow
e. Text-case
Ans: B
Question: 11:

Here is one of the styles defined in your webpage:
.redborder
{
border-color:#ff0000;
border-width:thin thick
}

What type of border will be displayed if one of the paragraphs defined in the webpage uses this style?

a. This will display a red border with thin top and bottom
b. This will display a red border with thick top and bottom
c. This will display a red border with thick left and right
d. This will not display any border

Question 12: Which of the following are correct values of the overflow property?
a. Visible
b. Hidden
c. Scroll
d. Auto
Ans: A,B,C,D

Question 13: Which of the following is correct?

a. Blockquote{text-padding:2em 4em 5em}
b. Blockquote{padding-x:2em 4em 5em}
c. Blockquote{padding-y:2em 4em 5em}
d. Blockquote{padding:2em 4em 5em}

Question 14: Which element property is required to define internal styles?

a. Class
b. Style
c. span
d. link
Ans: B

Question 15 Which style property can be used to display only some part of an image?

a. Snap
b. Clip
c. Scroll
d. Visible

Question 16 Which of the following is not true for a style sheet?

a. A style sheet defines how an html element will be displayed
b. Internal and external style sheets can not be used together
c. Multiple style definitions will cascade into one
d. The same style sheet can be used by many html pages
Ans: A

Question 17 Which of the following font properties deals with aspect value?

a. Font-weight
b. Font-variant
c. Font-size-adjust
d. Font-size

Question 18:
Consider this style definition:
P i{color:red}
What do you understand about the contextual selector used above?

a. All the text within a paragraph will be italicized
b. All the italic text in the page will have red color
c. All the page text under
tag and tag will be red
d. All the italic text with in a paragraph will be red

Question 19
Background-position sets the position of the background image what happens if its value is 0% 0%?

a. Image will have zero width and height so it will be hidden.
b. Image will be positioned at the upper left corner.
c. Image will be positioned at the lower right corner
d. None of the above

Question 20: You want to increase the space between the lines in all you paragraphs. What will you use?

a. P{width:1cm}
b. P{height: 1cm}
c. P{line-height:1cm}
d. P{line-width:1cm}
Ans: C

Question 21: The default value for the overflow property is:

a. Scroll
b. Visible
c. Hidden
d. Auto
Ans: C*

Question 22:
Which of the following will set the page size to 8.5 inches x 11 inches with 2cm margin al all sides?
a. @page {width:8.5in;Height:11in; margin:2cm}
b. @page {width:8.5in x 11in; margin:2cm}
c. @page {size:8.5in 11in; margin:2cm}
d. @page {size:8.5in 11in; margin:2cm}

Question 23: Which of the following is not a valid list property?
a. List-style-type
b. List-style-position
c. List-style-image
d. List-style-align

Question 24: Which of the following is not a pseudo class?
a. Link
b. Active
c. Lang
d. Ins

Question 25: Which of the following Statement is correct?

a. When using css, positioning can be absolute, relative or dynamic
b. The float Property for text/images can be left, right or center
c. The values of visibility can be true or False
d. The display Property sets how an element is displayed

Question 26:
The Font “Times New Roman” has an aspect value of 0.46 .What do you understand from this?

a. When font size is set to 46px. The height of the letter ‘x’ will be 100px
b. When font size is set to 100px. The height of the letter ‘x’ will be 46px

Question 27: The font-family property is used to specify a:
a. Family name
b. Generic Family
c. Family name and /or generic Family

Question 28: Paged media differ from continuous media in that the content of the document is divided into one or more pages. When you set the dimensions, which of the following will be applied?

a. The dimensions of the page area are the dimensions of the page box minus the margin area
b. The dimensions of the page area are the dimensions of the page box plus the margin area
c. The dimensions of the page area are the dimensions of the page box and margin area does not affect it.
d. None of the above

Question 29: Which of the following is not a correct keyword value for the display property?

a. Expended
b. Inline-table
c. Table-row
d. Table-column-group

Question 30: Which of the following properties specifies the minimum number of lines of a paragraph that must be left at the bottom of a page?

a. Orphans
b. Widows
c. Bottom
d. Overflow
e. None of the above

Question 31 Which of the following is correct with regard to comments in a style sheet?

a. Comments can appear outside the style definition only
b. Comments start with//
c. Comments end with */
d. Comments are not permitted in a style sheet

Question 32 Which of the following border styles is not correct?
a. Border-style: ridge
b. Border-style : outset
c. Border-style : dotted
d. Border – style : matted

Question 33: How will you display text as a superscript?

a. Vertical-align: super
b. Vertical-align: superscript
c. Vertical-align : top

Question 34
The following is a style definition:

#styl2
{
Color: red;
}

How will you refer to this style in you web pages?
a. By using the class attribute in a td cell
b. By using the id attribute in a td cell
c. By using the class attribute in any html element which supports the class attribute
d. By using the id attribute in any html element which supports the id attribute.

Question 35 Which of the following is true for an ID selector?

a. It uses a dot as the separator symbol
b. It applies the style to only the first element defined with that selector
c. It applies the style to only the last elements defined with that selector
d. It applies the style to all the elements defined with that selector

Question 36: Which of the following values are correct for Font-style?

a. Normal, wider, narrower
b. Normal , italic, oblique
c. Normal, bold, lighter
d. Small , medium , large

oDesk Social Media Marketing Test Answers 2012

Question:1  What methods of social network marketing should a company always use?

Ans: Depends on the company, their product, their audience

Question:2 What is “guerilla marketing”?

Ans: Marketing which relies on time and energy rather than a large dollar budget.

Question:3  What is meant by Brand Management?

Ans: The company executive management team.

Question:4 Which of the following is an important aspect of creating blogs and posting content?

Ans: Posting at least once a month to the blog.

Question:5  What is a “call to action”

Ans: Giving an advertisement’s receiver a specific direction such as “visit the site”.

Question:6  What is a “vlog”?

Ans: New technology to aid in blogging

Question:7 What can a company do on Facebook apart from their page to create a following?

Ans: Use Groups, both company originated and posting to other group.

Question:8  In a company who should own the social marketing plan?

Ans: Head of Marketing.

Question:9 What is meant by “micro-blogging”?

Ans: Blogs with limited individual posts, limited by character count typically.

Question:10  What is meant by A/B testing in marketing?

Ans: Testing 2 versions of an advertisement to see which elicits the best response.

Question:11 What Place does Pricing have in marketing?

Ans: Different Pricing levels can be the pricing level relative to competition is important

Question:12 What would the marketing budget section of a marketing plan detail?

Ans: The expected costs for each ad campaign based on the delivery method

Question:13  How can a company use the same material for both traditional and social network marketing?

Ans: Utilizing a television ad campaign online as well on their site and sites such as YouTube.

Question:14 How often should a marketing plan be revisited?

Ans: As often as needed in order to revisit the plan of action and revise any new actions

Question:15 Which of the following would be leveraging both social network and traditional marketing?

Ans: A print advertisement in a magazine which drives people to a website where there is a free trail offer.

Question:16 How does creating a social network marketing plan differ from a traditional marketing plan?

Ans: There is no need for a social marketing plan, but social marketing plan is required for traditional marketing.

Question:17 What should be the length of an blog post?

Ans: A few sentence mixed with several links to other sites and references.

Question:18 Why is there no specific definition of what is social media marketing?

Ans: The concept is relatively new compared to traditional marketing and is still being defined.

Question:19 What is meant by the “blogosphere”?

Ans: The interconnected community of blogs via linking to each other

Question: 20 How do ebooks represent a from marketing?

Ans: They are often free, include useful information, and direct the reader onto the company which created the ebook for.

Odesk Search Engine Optimization Test Answers 2013

Question1:
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
Answer is: A, B

Question2:
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
Answer: b. It refers to the importance attached to getting the right keyword density

Question3:
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
Answer : d. Stop words

Question4:
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
Answer : a. Yes

Question5:
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
Answer: b. It shows how many pages of the site Yahoo is pointing to

Question6:
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
Answer : b. Flux

Question7:
Google displays up to _____ characters of a webpage’s Title Tag.
a. 56
b. 60
c. 66
d. 80
Answer : c. 66

Question8:
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
Answer : d. By letting you know the percentage of users who left your website within 10 seconds of viewing the first page

Question9:
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
Answer : c. If the meta description is not included, the search engines will use the meta keywords for information

Question10:
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.
Answer : b. modify the page contents, make them useful and relevant to the human users, and request Google to reconsider your site.

Question11:
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
Answer : b. Filling your pages with keywords, whether relevant to the page content or not

Question12:
Are RSS/Atom feeds returned in Google’s search results?
a. Yes
b. No
Answer: b. No

Question13:
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
Answer: a. True

Question14:
All major search engines are case sensitive.
a. True
b. False
Answer: a. True

Question15:
_________________ 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
Answer : c. Hybrid Search Engines

Question16:
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
Answer : b. A website that provides free content for the related keywords

Question17:
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
Answer: b. A website that provides free content for the related keywords

Question18:
While grading your website, Google gives credit to outbound links pointing to authority websites?
a. True
b. False
Answer : b. False

Question19:
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
Answer : d. The number of times the keyword is used in the page title

Question20:
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
Answer: d. The website ranks in the first 20% of all websites indexed by the search engine for its most important search terms

Question21:
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
Answer is: b. Visitorjacking

Question22:
Google gives priority to themed inbound links.
a. True
b. False
Answer: a. True

Question23:
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
Answer : c. It helps to sort the documents that Google has retrieved

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

Question25:
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
Answer: b. Dilating

Question26:
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
Answer: d. They contain numerous inbound links

Question27:
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
Answer : c. Hiding the keywords within the webpage

Question28:
What is the most likely time period required for getting a Google page rank?
a. 1 week
b. 3 weeks
c. 1 month
d. More than 3 months
Answer: d. More than 3 months

Question29:
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
Answer: c. Google Traffic Estimator

Question30:
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
Answer : c. The number of in-bound natural links related to the website’s theme (or keywords)

Question31:
What will the following robots.txt file do?
User-agent:Googlebot
Disallow:/*?
User-agent:Scooter
Disallow:

a. It will allow Google to crawl any of the dynamically generated pages. It will also allow the altavista scooter bot to access every page
b. It will disallow Google from crawling any of the dynamically generated pages. It will also disallow the altavista scooter bot from accessing any page
c. It will disallow Google from crawling any of the dynamically generated pages. It will allow the altavista scooter bot to access every page
d. None of the above
Answer: b. It will disallow Google from crawling any of the dynamically generated pages. It will also disallow the altavista scooter bot from accessing any page

Question32:
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

Answer : 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
Question33:
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
Answer : c. They are voluntary in nature

Question34:
Which of the following statements about Google’s technical and quality guidelines is true?
a. It is advantageous if your web server supports the If-Modified-Since HTTP header
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

Answer : 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

Question35:
Which search engine technology prevents a website from appearing in numerous top positions in the search engine result pages?
a. Clustering
b. Normalizing
c. Sifting
d. Combing
Answer : d. Combing

Question36:
Implementing a 301 Permanent Redirects on the old pages to redirect to the new pages is a good idea from the SEO perspective.
a. True
b. False
Answer is:

Question37:
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
Answer: a. Alexa provides free data on relative website visitor traffic

Question38:
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
Answer : a. Yes

Question39:
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
Answer: c. Grey hat techniques

Question40:
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. Optimizing five or more keywords per page

oDesk Windows XP Tests Answers 2013

QUESTION 1
Which of the following statements is true if you open an existing file, make changes to it, and save it with a new name?

The original file will be deleted.
The original file remains unchanged.
The changes will be saved in the original file
The original file is sent to the Recycle Bin
Answer: The original file remains unchanged.

QUESTION 2
The left side of the Start menu contains two parts, separated by a thin horizontal line. The Windows XP term for manually inserting a shortcut to one of your chosen applications into the top part of the left side (by using the right-context menu of the application in Windows Explorer) is called:

Attaching an application to the Start menu.
Pinning an application to the Start menu
Placing an application into the Start menu.
Porting an application to the Start menu
Answer: Attaching an application to the Start menu.

QUESTION 3
Which of the following features is/are available in Windows XP?

A built-in CD burner
Windows Media Player
Windows antivirus
Internet Connection Firewall
Microsoft Excel
Answer: A built-in CD burner ,Windows Media Player ,Internet Connection Firewall



QUESTION 4
The Microsoft file format that contains the bitmapped graphics and metadata for the skins used in the three preinstalled Windows XP visual themes is:

.msthemes
.msstyles
.msskins
.msluna
Answer: .msthemes

QUESTION 5
Which of the following statements about the Stand By option while shutting down your computer is/are correct?

It waits for 5 minutes before shutting down the computer.
It helps to conserve power by shutting off some hardware, like the hard disk.
It shuts down the computer for a specific time and then restarts it.
Stand By will save your desktop and all open files to a special Windows file called hiberfil.sys. This file usually resides in the computer’s root folder (C:\hiberfil.sys).
Answer: It helps to conserve power by shutting off some hardware, like the hard disk.
QUESTION 6
Which statement(s) about the Recycle Bin is/are correct?

All deleted files except media files are sent to the Recycle Bin
You can restore any selected files from the Recycle Bin folder by right clicking and then selecting Restore.
The Recycle Bin stores files for one month before permanently deleting them.
More than one file at a time cannot be restored from the Recycle Bin.
Answer: You can restore any selected files from the Recycle Bin folder by right clicking and then selecting Restore.
QUESTION 7
Which of the following statements about Windows XP features is/are correct?

Windows XP can automatically download updates.
Windows XP offline files allows you to synchronize your files with your file server.
If Fast User Switching is enabled, you cannot use offline files.
There is a “System Restore” functionality within Windows XP.
Answer: Windows XP can automatically download updates.
Windows XP offline files allows you to synchronize your files with your file server.
There is a “System Restore” functionality within Windows XP.
QUESTION 8
While viewing file names through the Windows Explorer, what happens if you drag and drop a file named letter1.txt on top of another file named letter2.txt lying in the same folder?

The contents of letter2.txt will be replaced by the contents of letter1.txt.
The contents of letter1.txt will be replaced by the contents of letter2.txt.
The contents of letter1.txt will be appended to the contents of letter2.txt.
The contents of letter2.txt will be appended to the contents of letter1.txt.
Nothing will happen.
Answer: Nothing will happen.
QUESTION 9
Which of the following type of objects can you search on your computer and on the network, using Windows XP Search Companion?

People in your contact list
Pictures
Documents
Windows Help
All of the above
Answer: All of the above
QUESTION 10
You can create and edit files using the Windows Notepad. What is the extension of a file that has been created using Notepad?

.doc
.text
.txt
.html
Answer: .txt
QUESTION 11
Microsoft makes available a tool called the _____________________ for checking computers with a Windows operating system. This tool helps remove infections left by third-party software installed on the computer and displays a report describing the outcome in a log file named mrt.log in the %WINDIR%\debug folder.

Microsoft Reliability Tool
Microsoft Windows Malicious Software Removal Tool
Microsoft Windows Antivirus Tool
Microsoft Recovery Tool
Answer: Microsoft Windows Malicious Software Removal Tool
QUESTION 12
Windows XP includes a new type of view for folders that contain graphics files. This folder view is called _________ and displays small images of all the graphics in the folder in the bottom right-hand pane of Windows Explorer and a large image of a selected picture in the top right-hand pane.

Gallery
Images
Pictures
Filmstrip
Answer: Gallery
QUESTION 13
You have created a directory called TEST that includes the files test1.txt, test2.txt, test3.txt, test4.txt, test5.txt, and test6.txt. How can you select test2.txt, text3.txt, and test6.txt from the list of files visible in the Windows Explorer?

Press Ctrl and click on the three required files, one by one.
Press Shift and click on the three required files, one by one.
Press Alt and click on the three required files, one by one.
Right-click each file name, one by one, and choose the Cut option.
Answer: Press Ctrl and click on the three required files, one by one.
QUESTION 14
State whether the following statement is true or false.

With Windows XP, you cannot specify that files with certain file name extensions should always open in the same program.

True
False
Answer: False
QUESTION 15
What should you type on the command prompt to return back to Windows?

Quit
Return
Leave
Exit
Answer: Exit
QUESTION 16
Starting with Windows 95, the File Manager tool for organizing and controlling the files and folders of the computer’s storage systems, such as the hard drive(s) and disk drive(s) has been called:

Windows Manager
Internet Explorer
Windows Explorer
Windows Task Manager
Answer: Windows Explorer
QUESTION 17
Windows XP has several command-line utility tools for troubleshooting the computer. Suppose that your computer seems to have a problem with connecting to the Internet. Before reporting your connectivity problems to your ISP, which tool could you use to display the current TCP/IP network configuration values and to refresh the Dynamic Host Configuration Protocol (DHCP) and Domain Name System (DNS) settings?

Ping
Ipconfig
Tracert
Msconfig
Answer: Ipconfig
QUESTION 18
Which of the following activities can you accomplish with the Remote Desktop feature in Windows XP?

You can get a miniature view of your desktop by clicking on the Desktop icon.
You can automatically clear up unwanted Desktop icons.
You can view files and documents on your computer’s desktop from a coworker’s computer.
You can view files and documents on any computer’s desktop from your computer.
Answer: You can view files and documents on your computer’s desktop from a coworker’s computer.
QUESTION 19
Windows XP tracks whatever files that load during every boot and application launches, and the operating system uses that information to prefetch files into RAM. These prefetch data are parsed into a file named __________ located in the Windows\Prefetch folder on the boot drive. Every three days, a limited defragmentation operation automatically occurs in the background during idle for only those files in that file to further speed up the computer’s file access.

Defrag.sys
Prefetch.sys
Defrag.ini
Layout.ini
Answer: Prefetch.sys
-auto� ’ e n p� p� n style=’font-size:10.0pt;font-family:Arial’>


Which keyboard shortcut could be used to check the spelling of a text file?
Ans: F7


Which among the following is not true regarding the use of a pie chart?
Ans: A pie chart should be used when there are more than seven categories.

This question is based upon the figure shown below


What is the maximum number of columns that can be created in the Columns dialog box as shown in the picture?
Ans: 13


This question is based upon the figure shown below


Refer to the given image. In Picture1, axes appear on the left side. Which setting should you use to make them appear on the right side, as shown in Picture2?
Ans: Select the Axis Options tab in the Format Axis dialog box. Set the Axis labels: field to High.


Which among the following macro settings is meant for developers only?
Ans: Trust access to the VBA project object model.

State whether true or false:
A building block can be added to as many galleries as you want.
Ans: True


Which of the following is/are true about phishing?
Ans: It is an online fraud technique used by criminals to lure users into disclosing their personal information.

Which among the following options is the reason of text deletion at the insertion point when you type a document?
Ans: The “overtype mode” is turned on in Word options.


What is meant by Enhanced ScreenTips?
Ans:  Enhanced ScreenTips are larger windows that display more descriptive text than a ScreenTip and can have a link to a Help topic.


State whether true or false:
Any changes that are saved to “Normal.dotm” will be applied to the documents that you create in the future.
Ans: True


State whether true or false:
Changing the Author property in the Document Information Panel of an existing document has no effect on the User name setting in the Word Options dialog box.
Ans: True

This question is based upon the figure shown below


How will the Message Bar alerts be enabled as shown in the given picture?
Ans: Select Word Options from the Microsoft Office Button. Click on Trust Center, then click Trust Center Settings, and then click Message Bar.


Which among the following is not a Bookmark option to sort the list of bookmarks in the document?
Ans: Author


This question is based upon the figure shown below

 Why is the “Different First Page” option used in the Page Setup dialog box as shown in the given picture?
Ans: This option allows you to remove the Page Number from the first page.

Which among the following is a correct way to make your file “Read-only?”
Ans: Click “Save As” from the Microsoft Office Button. Click on Tools and then click General Options. Select the Read-only recommended check box. Click OK. Click on Save.


Which among the following options should be used to start a bulleted list automatically?
Ans: Type * (asterisk) and then press spacebar or the Tab key.


Which of the following can be the reason for the appearance of the red X, as shown in the picture?
Ans: All of the above

predefined list styles are available when you first create a document in Word 2007.
Ans: False


What steps should be followed to replace a shape with other shape?
Ans: Select the shape to be changed. Select the Format tab; use the “Change Shape” button in the Shape Styles group.


Just as in Word 2003 or prior Word versions, the default standard view for Word 2007 is the Draft view (and is still also called the Normal view in Word 2007):
Ans: False

Which among the following options could be used to turn off the Office Clipboard?
Ans: All of the above


State whether true or false:
ASCII-formatted text contains no formatting information such as bold, italic, or fonts.
Ans: True


State whether true or false:
New text animation effects can be applied in Microsoft Word 2007.
Ans: False

State whether true or false:
Once a bullet is removed from the “Bullet Library” and it is no longer available in the “Document Bullets” area, the bullet cannot be added back to the Bullet Library.
Ans: False


This question is based upon the figure shown below

How will you insert text boxes for a printed form?
Ans: Select the Insert tab, in the Text group, click on Text Box and then select Draw Text Box.

This question is based upon the figure shown below
Refer to the given picture. Which of the following options turns off Enhanced ScreenTips but keeps the ScreenTips still visible?
Ans: B


This question is based upon the figure shown below

 What is the purpose of the “Demote” button as shown in the diagram?
Ans: It increases the level of a selected bullet or a shape.



Question 1:

There is a better method to enable or disable services on your computer than using msconfig and hardware profiles. When using msconfig, you might disable some services that are necessary to boot the system. Which of the following should be used to enable or disable services.     
a.     Device Manager    
b.     Event Viewer    
c.     Microsoft Management Console (MMC)     
d.     Local Security Policy 

the answer is : c.     Microsoft Management Console (MMC)    


Question2:  What is the key combination to Quit a program through Task Manager that is not responding?     a.     Alt + Del     b.     Ctrl + Alt + Del     c.     Ctrl + Del     d.     Shift + Alt + Del the answer is :    d.     Shift + Alt + Del
 
Question3: 
Windows XP tracks whatever files that load during every boot and application launches, and the operating system uses that information to prefetch files into RAM. These prefetch data are parsed into a file named __________ located in the Windows\Prefetch folder on the boot drive. Every three days, a limited defragmentation operation automatically occurs in the background during idle for only those files in that file to further speed up the computer's file access.     a.     Defrag.sys     b.     Prefetch.sys     c.     Defrag.ini     d.     Layout.ini the answer is :     c.     Defrag.ini

Question4:
Accelerator (hot) keys: Several menu commands, such as File, Edit, Table, or Tools, have one underlined letter as shown. The command associated with the underlined character can be Quickly executed if that character is entered on the keyboard immediately after the _____ key is pressed.


    a.     Shift
    b.     Alt
    c.     Ctrl
    d.     Windows
the answer is :
    b.     Alt

Question5:
An icon with an arrow in its lower-left corner, which can be clicked for quick access to the object it represents, is a(n):

    a.     Application icon
    b.     Folder (directory) icon
    c.     Document icon
    d.     Shortcut icon
the answer is :
    b.     Folder (directory) icon

Question6:
A common name given to the bitmapped desktop image (usually a picture) that serves as a background for the entire desktop is:


    a.     Wallpaper
    b.     Theme
    c.     Texture
    d.     Mosaic
the answer is :
    a.     Wallpaper

Question7:
Which of the following statements about Windows XP features is/are correct?


    a.     Windows XP can automatically download updates.
    b.     Windows XP offline files allows you to synchronize your files with your file server.
    c.     If Fast User Switching is enabled, you cannot use offline files.
    d.     There is a "System Restore" functionality within Windows XP.
the answer is :
    b.     Windows XP offline files allows you to synchronize your files with your file server.

Question8:
Which of the following is/are valid Window's file names?


    a.     expert-rating
    b.     expert rating
    c.     expert*rating
    d.     643764736
    e.     expert rating certifications!
the answer is :
    a.     expert-rating

Question9:
Which statement(s) about the Recycle Bin is/are correct?


    a.     All deleted files except media files are sent to the Recycle Bin.
    b.     You can restore any selected files from the Recycle Bin folder by right clicking and then selecting Restore.
    c.     The Recycle Bin stores files for one month before permanently deleting them.
    d.     More than one file at a time cannot be restored from the Recycle Bin.
the answer is :
    c.     The Recycle Bin stores files for one month before permanently deleting them.

Question10:
Which of the following statements about the file security levels while browsing is/are correct?


    a.     Low is designed with the minimum safeguards.
    b.     Under Low security, active content such as scripting, runs without prompting.
    c.     Medium-low is the same as Medium but with less frequent prompts.
    d.     Medium is the default security level for the Internet.
    e.     All of the above
the answer is :
    e.     All of the above

Question11:
Which of the following would be a System Restore feature in Windows XP?


    a.     It allows you to take a quick backup of your important data.
    b.     It helps you recover data that has been lost due to a hard disk crash.
    c.     It allows you to quickly clean up unwanted files, folders, and desktop icons.
    d.     It allows you to restore your computer to a previous state in case of a system problem.
    e.     It allows you to quickly reinstall Windows XP in case of need.
the answer is :
    d.     It allows you to restore your computer to a previous state in case of a system problem.

Question12:
How can you customize Advanced Start menu options in windows XP operating system.


    a.     Right click on the Taskbar and click the Customize button.
    b.     Right click on the Taskbar, choose Properties, click on Start Menu, and click the Customize button.
    c.     Right click on the Taskbar and choose open all users.
    d.     Left click on the Taskbar; choose Properties.
the answer is :
    b.     Right click on the Taskbar, choose Properties, click on Start Menu, and click the Customize button.

Question13:
You can create and edit files using the Windows Notepad. What are the extensions of a file that has been created using Notepad?


    a.     .doc
    b.     .text
    c.     .txt
    d.     .html
the answer is :
    b.     .text

Question14:
What happens when you hold down the Windows button key and press the E key?


    a.     It opens the Windows Explorer.
    b.     It opens the Internet Explorer.
    c.     It opens the default search engine.
    d.     It opens the color settings.
the answer is :
    a.     It opens the Windows Explorer.

Question15:
You are logged in as an administrator to the computers on your small local network and you want to change the names of those computers and the workgroup so that their names are more informative. One way to change the names would be to:


    a.     Open the System control panel. Select the System tab and then click Change. Enter the desired name for the computer and click OK.
    b.     Open the System control panel. Select Change Name from the Edit menu and then click Change Name. Enter the desired name for the computer and click OK.
    c.     Right click the Desktop and select Personalize. Select the Computer Name tab and then click Change. Enter the desired name for the computer and click OK
    d.     Open the Performance and Maintenance control panel. Select the Computer Name tab and then click Change. Enter the desired name for the computer and click OK.
    e.     Right Click on My Computer icon, choose properties and select tab 'Computer Name' or(use run command and put sysdm.cpl) and click on the Change button. Enter the desired name for computer and click OK.
the answer is :
    d.     Open the Performance and Maintenance control panel. Select the Computer Name tab and then click Change. Enter the desired name for the computer and click OK.

Question16:
The _____________ is a large hidden file where Windows XP finds information about all of the hardware, software, and various settings and user options.


    a.     Windows Registry
    b.     Finder
    c.     Preferences
    d.     Windows SysOps
the answer is :
    c.     Preferences

Question17:
Which of the following activities can you accomplish with the Remote Desktop feature in Windows XP?


    a.     You can get a miniature view of your desktop by clicking on the Desktop icon.
    b.     You can automatically clear up unwanted Desktop icons.
    c.     You can view files and documents on your computer's desktop from a coworker's computer.
    d.     You can view files and documents on any computer's desktop from your computer.
the answer is :
    c.     You can view files and documents on your computer's desktop from a coworker's computer.

Question18:
The hard-drive utility tool in Windows XP for automatically fixing file system errors or for searching for and attempted recovery of bad sectors is:


    a.     CheckDisk (CHKDSK)
    b.     SystemCheck (SYSCHK)
    c.     DiskFix (DSKFX)
    d.     DiskScan (DSKSCN)
the answer is :
    a.     CheckDisk (CHKDSK)

Question19:
By hovering the mouse pointer over the clock, what happens?


    a.     It displays the time in a bigger font.
    b.     It will speak out the time through the speaker connected to the computer.
    c.     It will show the time in analog format.
    d.     It will display the current day of the week and the date.
the answer is :
    b.     It will speak out the time through the speaker connected to the computer.

Question20:
The left side of the Start menu contains two parts, separated by a thin horizontal line. The Windows XP term for manually inserting a shortcut to one of your chosen applications into the top part of the left side (by using the right-context menu of the application in Windows Explorer) is called:


    a.     Attaching an application to the Start menu.
    b.     Pinning an application to the Start menu.
    c.     Placing an application into the Start menu.
    d.     Porting an application to the Start menu.
the answer is :
    d.     Porting an application to the Start menu.

Question21:
Which of the following statements about Windows XP Internet Connection Sharing (ICS) is/are true?


    a.     Using ICS, you can connect different computers to the Internet using just one dial-up connection, however you require at least two modems.
    b.     You require a router for using ICS.
    c.     Using ICS, a single computer can connect to more than one dial-up connection.
    d.     Using ICS, a single computer can connect to a dial-up and DSL connection simultaneously.
    e.     Using ICS, multiple computers can connect to the Internet through only one dial-up connection.
the answer is :
    c.     Using ICS, a single computer can connect to more than one dial-up connection.

Question22:
The older version of the Windows XP Desktop is called the "Windows Classic" look. One way to get the Windows Classic Desktop from the new default Windows XP Desktop is to:


    a.     In the System control panel, select Properties from the View menu. Select the Desktop tab and click on the Desktop pull-down list and select Windows Classic. Click OK.
    b.     Right-click on the desktop and choose Properties. Select the Themes tab and click on the Theme pull-down list and select Windows Classic. Click OK.
    c.     In the Display control panel, select Properties. Select the Desktop tab and click on the Theme pull-down list and select Windows Classic. Click OK.
    d.     Right-click on the desktop and choose Themes. Select the Desktops tab and click on the Desktop pull-down list and select Windows Classic. Click OK.
the answer is :
    a.     In the System control panel, select Properties from the View menu. Select the Desktop tab and click on the Desktop pull-down list and select Windows Classic. Click OK.

Question23:
Starting with Windows 95, the File Manager tool for organizing and controlling the files and folders of the computer's storage systems, such as the hard drive(s) and disk drive(s) has been called:


    a.     Windows Manager
    b.     Internet Explorer
    c.     Windows Explorer
    d.     Windows Task Manager
the answer is :
    c.     Windows Explorer

Question24:
Windows XP includes a new type of view for folders that contain graphics files. This folder view is called _________ and displays small images of all the graphics in the folder in the bottom right-hand pane of Windows Explorer and a large image of a selected picture in the top right-hand pane.


    a.     Gallery
    b.     Images
    c.     Pictures
    d.     Filmstrip
the answer is :
    d.     Filmstrip

Question25:
What happens when you choose ClearType for your screen fonts in Windows XP?


    a.     Only the black and white text will be visible.
    b.     Only the text in primary colors will be visible.
    c.     The font resolution is improved.
    d.     The font size will automatically adjust to the screen area of the monitor.
the answer is :
    b.     Only the text in primary colors will be visible.

Question26:
Which of the following statements regarding Windows XP user access is/are correct?


    a.     Multiple users cannot switch between accounts without restarting the computer.
    b.     Multiple users can switch between accounts without restarting the computer.
    c.     Windows XP does not support multiple user access.
    d.     None of the above
the answer is :
    d.     None of the above

Question27:
With Windows XP, the default display resolution is 800x600 in 32-bit true color. With some computers 32-bit video tends to slow down screen redraws. How could you drop the screen depth to 16 bits instead of 32 bits in order to speed up the display in older PCs, especially laptops?


    a.     In the Colors control panel, set the Colors option to Medium (16 bits).
    b.     In the Color Management control panel, set the Color depth to Medium (16 bits).
    c.     In the System control panel, set the Monitor depth to 16 bits.
    d.     In the Display Properties dialog box, on the Settings page, set the Color quality option to Medium (16 bits).
the answer is :
    d.     In the Display Properties dialog box, on the Settings page, set the Color quality option to Medium (16 bits).

Question28:
A new function of Windows XP that allows two or more users in a local network to use only one Internet connection by routing all the Internet traffic through one computer is called __________________.


    a.     Internet Routing
    b.     Windows Internet Sharing (WIS)
    c.     Internet Connection Sharing (ICS)
    d.     Windows Connection Sharing (WCS)
the answer is :
    b.     Windows Internet Sharing (WIS)

Question29:
Which of the following statements is/are correct regarding the grouping of Windows tabs?


    a.     Only Windows of the same program can be grouped into one tab.
    b.     You can group windows of all open programs into one tab.
    c.     You can group windows of only two programs at a time.
    d.     There is no option to group tabs in Windows XP.
the answer is :
    d.     There is no option to group tabs in Windows XP.

Question30:
Microsoft makes available a tool called the _____________________ for checking computers with a Windows operating system. This tool helps remove infections left by third-party software installed on the computer and displays a report describing the outcome in a log file named mrt.log in the %WINDIR%\debug folder.


    a.     Microsoft Reliability Tool
    b.     Microsoft Windows Malicious Software Removal Tool
    c.     Microsoft Windows Antivirus Tool
    d.     Microsoft Recovery Tool
the answer is :

Question31:
Windows XP usually retains copies of old drivers when newer versions of them are installed or upated. If the new drivers have problems, the user can return to the previous version. Does this new Windows XP feature work with printer drivers?


    a.     Yes
    b.     No
the answer is :
    a.     Yes

Question32:
Windows XP has a new user system. Its new user system:


    a.     Was inherited from Windows 98.
    b.     Was inherited from Windows 3.x.
    c.     Was inherited from Windows NT/2000.
    d.     Was not inherited from any prior Windows O/S.
the answer is : a,c,d

Question33:
A new feature introduced in Windows XP that allows another user to log in and use the system without having to log out the previous user and Quit any running applications is known in Windows XP as:


    a.     Multiple user login
    b.     Simulcasting
    c.     Fast user switching
    d.     Multiprocessing
the answer is :
    c.     Fast user switching

Question34:
The Windows XP installs its search function that, by default, has an animated dog character, Rover. Which of the following is/are true?


    a.     Rover could be replaced with another animated character or with no character at all.
    b.     Rover cannot be replaced by another character. It is a permanent feature.
    c.     Rover could be replaced by another character, but another animated character must be used (instead of having no character at all).
the answer is :
    b.     Rover cannot be replaced by another character. It is a permanent feature.

Question35:
What does the Desktop Cleanup Wizard do?


    a.     It removes suspected virus shortcuts from the desktop.
    b.     It removes the desktop wallpaper.
    c.     It removes the desktop shortcuts that have never been used.
    d.     It sends all the desktop icons to the Recycle Bin.
the answer is :
    b.     It removes the desktop wallpaper.

Question36:
Windows XP has several command-line utility tools for troubleshooting the computer. Suppose that your computer seems to have a problem with connecting to the Internet. Before reporting your connectivity problems to your ISP, which tool could you use to display the current TCP/IP network configuration values and to refresh the Dynamic Host Configuration Protocol (DHCP) and Domain Name System (DNS) settings?


    a.     Ping
    b.     Ipconfig
    c.     Tracert
    d.     Msconfig
the answer is :
    b.     Ipconfig

Question37:
Which key combination would you use to flip between open windows?


    a.     Alt + Shift
    b.     Alt + Tab
    c.     Ctrl + Tab
    d.     Ctrl + Alt
the answer is :
    a.     Alt + Shift

Question38:
What type of icons are displayed in the system tray?


    a.     Icons of media-related programs.
    b.     Icons of programs developed by Microsoft.
    c.     Icons of programs that are loaded into memory.
    d.     All of the above
the answer is :
    b.     Icons of programs developed by Microsoft.

Question39:
Which of the following statements about icons on the desktop is correct?


    a.     You can rename an icon by left-clicking the mouse button and selecting Rename.
    b.     You can rename an icon by right-clicking the mouse button and selecting Rename.
    c.     You can delete an icon by left-clicking and selecting Delete.
    d.     You cannot rename an icon.
the answer is :
    b.     You can rename an icon by right-clicking the mouse button and selecting Rename.

Question40:
State whether the following statement is true or false.

With Windows XP, you cannot specify that files with certain file name extensions should always open in the same program.


    a.     True
    b.     False
the answer is :
    a.     True

oDesk English Vocabulary Test (u.s. version) Answers 2012

1. Question: Choose the word or phrase that is most nearly an antonym of the word below.
MITIGATE
c. Intensify

2. Question: Choose the word that best corresponds with the definition given below.
v. To impose with authority; urge strongly
 a. Enjoin

3. Question: Choose the word that best corresponds with the definition given below.
v. To issue a vehement verbal attack; to denounce explosively
c. Fulminate

4. Question: Complete the following sentence by choosing the correct set of words from the options below.
It's a good thing you're so________ at paperwork, because you'll need to fill out hundreds of forms to________ a child.
c. adapt/adopt

5.Question: Choose the word that best corresponds with the definition given below.
n. Flair; style; a flamboyant manner
c. Resonance

6. Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
The mysterious message Claude received could be a HARBINGER of what's in store for him and his family.
b. Omen; forerunner



7.Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
Roger might be more AMENABLE to your ideas if you presented them without sneering.
 b. Willing to accept

8.Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
The coach was absolutely disgusted by his team's INDOLENCE and nasty attitude. wizened
 c. Laziness

9.Question: Choose the word or phrase that is most nearly an antonym of the word below.
REFUTE
b. Support

10.Question: Choose the word or phrase that is most nearly an antonym of the word below. deleterious
INORDINATE
a. Reasonable

11. Question: Complete the following sentence by choosing the correct homophone from the options below.
Oscar, who did not possess a discerning_________ , preferred hot dogs to steak.
b. pallet

12. Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
The journalist denied that he had any PRURIENT interest in the politician's private life, but his titillating articles seemed to indicate otherwise.
 b. Overly curious about the sexual behavior of others

 13.Question: Choose the word that best corresponds with the definition given below.
adj. Tending to create ill will or give offense
 b. Invidious

14. Question: Complete the following sentence by choosing the correct set of words from the options below.
I can_________ all the terms of the apartment lease_________ the one about not allowing pets.
 d. accept/except

15. Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
The recent shenanigans in the town square went against all PRECEPTS of decency.
 a. Rules for action or behavior

16. Question: Choose the word or phrase that is most nearly an antonym of the word below. adverse
ITINERANT
 a. Permanent

 17.Question: Complete the following sentence by choosing the correct homophone from the options below.
The company is__________ committed to developing educational television programs for children.
 c. wholly

18.Question: Complete the following sentence by choosing the correct set of homophones from the options below.
The_________ poet, knowing his death was__________ , struggled to finish his final ode.
d. eminent/imminent

19.Question: Complete the following sentence by choosing the correct set of homophones from the options below.
Rachel knew that she'd soon be living in______________ circumstances unless she got her financial problems________________ out
immediately.
 b. straitened/straightened

20.Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
The plots of all her novels just seem to MEANDER along, to the point where I can't follow the storyline or figure out who's who.
 a. Purposely confuse

21. Question: Complete the following sentence by choosing the correct word from the options below.
The only________________ difference between the twins is the shape of their noses.
 b. distinguished

22.Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
Now that the festivities have ended, perhaps we can return to some SEMBLANCE of normality.
 c. Outward appearance

23.Question: Choose the word that best corresponds with the definition given below.
adj. Narrow-minded; limited in scop
 d. Sectarian

24.Question: Complete the following sentence by choosing the correct homophone from the options below.
That grueling competition really tested the____________ of the gymnastics team.
 b. metal

25.Question: Choose the word that best corresponds with the definition given below.
Capacity for producing a desired result; effectiveness
 d. Efficacy

26.Question: Complete the following sentence by choosing the correct set of words from the options below.
Although_________ wanted to keep the boat all to_________ , I knew it would be used extensively by both Susan and________________ .
 d. I/myself/me

 27.Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
Poverty is RIFE in the rural areas of our county, where one in three families receives some state assistance. RIFE
a. Prevalent

28.Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
The exchange student was disheartened by the rather BRUSQUE welcome she received from her host family.
c. Blunt or rude in manner of speech

29.Question: Complete the following sentence by choosing the correct set of words from the options below.
The workers were allowed to___________ down once they'd________ the brick, but the foreman himself has not yet_________
down.
 d. lay/laid/laid

 30.Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
Alec has always been CONTEMPTUOUS of his fellow writers.
 a. Disdainful

31.Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
Maude managed to sweep up the broken dishes without a word of REPROOF to her children.

 a. Expression of disapproval or blame
Expression of apology or regret

32.Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
The despot's MINIONS were only too eager to tout his edicts and report any unrest among his subjects.
 a- Sycophants; servile followers

 33.Question: Choose the word or phrase that is most nearly an antonym of the word below.
AVARICE
d. Generosity

34.Question: Complete the following sentence by choosing the correct word from the options below.
The crafty spy gave a___________ name to the hotel clerk.
 c. fictitious

 35.Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
The soldier's EXEMPLARY conduct did not go unnoticed by his sergeant.
Admirable

 36.Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
She always got a VICARIOUS thrill from watching her father skydive.
 d. Sickening

Question: Complete the following sentence by choosing the correct word from the options below.
The proposed after-school tutoring program promises_____________ benefits to the students and the community.
 a. innumerable

Question: Complete the following sentence by choosing the correct word from the options below.
I screamed as the monstrous presence snaked toward me on the dark and_________ path.
 b. tortuous

Question: Complete the following sentence by choosing the correct homophone from the options below.
We all remarked on how well the spray of begonias____________ her hair color.
 a. complimented

 Question: Complete the following sentence by choosing the correct set of words from the options below.
She hastened to_________ me that she intends to pay the bill, and that she will_________ that the check is mailed today.
 a. assure/ensure

Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
The soldier's EXEMPLARY conduct did not go unnoticed by his sergeant.
 c. Admirable

 Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
His son's group of friends had a DELETERIOUS effect on his schoolwork.
d. Harmful

Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
It would BEHOOVE you to show a little more respect to the judge and jury who are deciding your case.
c. Be worthwhile or proper for; be incumbent upon

Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
Running around barefoot in the snow will only EXACERBATE your flu symptoms.
 b. Aggravate; worsen

 Question: Choose the word that best corresponds with the definition given below.
n. A mass or crowd; multitude
 c. Horde

Question: Choose the definition that best reflects the meaning of the word in CAPITAL LETTERS as it is used in the sentence below.
Dan was a nice guy, but he was far too GARRULOUS and tended to monopolize people at parties.
 c. Excessively talkative about trivial topics

Question: Choose the word that best corresponds with the definition given below.
adj. Similar to something else in certain respects, as in form, function, or meaning
c. Analogous

 Question: Choose the word that best corresponds with the definition given below.
adj. Hardhearted; unmoved by pity
 b. Parsimonious

 Question: Choose the word or phrase that is most nearly an antonym of the word below.
ADVERSE
 d. Twisted

 Question: Complete the following sentence by choosing the correct homophone from the options below.
Who has the power to_________ out justice to the citizens of this country?
 a. meet

Question: Choose the word that best corresponds with the definition given below.
adj. Easily provoked to anger; irritable
a. Sapid

52. Question: Choose the word that best corresponds with the definition given below.
n. Flair; style; a flamboyant manner
 c. Resonance

53. Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
Agatha RUMINATED for weeks about the consequences of telling Arthur about the affair.
a. Pondered

Question: Complete the following sentence by choosing the correct homophone from the options below.
This experiment was designed to __________ certain behaviors from the test subjects.
  a. illicit

Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
It seems we've reached an IMPASSE in our negotiations.
d. Stalemate

Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
The WIZENED old woman gave Jack a handful of beans and some good advice.
 b. Shriveled

Question: Choose the word that best corresponds with the definition given below.
n. A position that entails little work but provides a salary
d. Sinecure
Question: Complete the following sentence by choosing the correct set of words from the options below.
Mr. Winkle was dismayed to discover that his willful young wife________ her wealth and__________ the law at every
opportunity.
  c. flaunted/flouted

Question: Complete the following sentence by choosing the correct word from the options below.
She launched her new line of handbags________ a fanfare of publicity.
c. among

 Question: Choose the word that best corresponds with the definition given below.
n. Local or provincial dialect
b. Patois

Question: Choose the word or phrase that is most nearly a synonym for the word in CAPITAL LETTERS in the following sentence.
She entered the ballroom on the arm of a DEBONAIR young man.
  d. Charming and elegant

 Question: Complete the following sentence by choosing the correct word from the options below.
We expected the waiter to show us out of that snooty restaurant in a hurry, but he turned out to be quite jolly and ____
  c. complaisant

ODESK TEST ANSWERS 2013 HTML 4.01

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

Question No 2.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
Answer:e

Question No 3.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
Answer:c

Question No 4.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
Answer:a,c,d

Question No 5.Which of the following is not correct for an action attribute for a form tag?
a.The action attribute can be defined at runtime.
b. If the value for action is null (action=”"), then the form submits user data to itself.
c. If the URL is not provided to the action attribute, the form will not submit user data anywhere.
d. None of the above
Answer:d

Question No 6.Which of the following values is/are valid for the align attribute of a tag?
a.left
b.right
c.center
d. offset
Answer:a,b,c

Question No 7.The following link is placed on an HTML webpage.
<a href=”http://msdn.com/&#8221; 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.
Answer:b

Question No 8.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.
Answer:a

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

Question No 10.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″
Answer:b

Question No 11.What is meant by the cellspacing attribute?
a. It makes the cell span more than one column.
b. It specifies the space between the cell wall and the contents of the cell.
c. It specifies the space between two cells.
d. It makes the cell span more than one row.
Answer:c

Question No 12.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
Answer:b

Question No 13.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
Answer:b

Question No 14.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>
Answer:b

Question No 15.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.
Answer:a

Question No 16.You specified a base tag and anchors as follows:
1. <base target=”_blank”>
2. <a href=”http://www.yahoo.com”>Yahoo</a&gt;
3. <a href=”http://www.google.com&#8221; target=”_top”>Google</a>
Which of the following is true for the above code?
a. Only the Yahoo link will open in a new window.
b. Only the Google link will open in a new window.
c. Both links will open in a new window.
d. Both links will open in the same window.
Answer:c

Question No 17.On one of your Web pages named Listing.html, you specified a target like this:
<a name=”target4″>Old Listing</a>
How will you make a link to the above target?
a. <a url=”#target4″>Check Old Listing as well</a>
b. <a href=”#target4″>Check Old Listing as well</a>
c. <link url=”target4″>Check Old Listing as well</link>
d. <a href=”Listing.target4″>Check Old Listing as well</a>
Answer:b

Question No 18.Which attribute specifies the submit URL in a form tag?
a. method
b. action
c. name
d. id
Answer:b

Question No 19.How will you specify a comment in an HTML document?
a. <!!- Here is a comment… -!>
b. <-Here is a comment.. ->
c. <!– Here is a comment.. –>
d. <! Here is a comment… -!>
Answer:c

Question No 20.Which of the following is correct regarding the frame attribute in the <table> tag?
a. It is used to add a frame to the table.
b. A hsides value for the frame attribute will show the border lines for horizontal sides only.
c. A hsides value for the frame attribute will not show the border lines for horizontal sides only.
d. A hsides value for the frame attribute will add a scrollable frame on the horizontal sides.
Answer:b

Question No 21.What is meant by cellpadding?
a. It makes the cell span more than one column.
b. It specifies the space between the cell wall and the contents of the cell.
c. It specifies the space between two cells.
d. It makes the cell span more than one row.
Answer:b

Question No 22.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
Answer:b

Question No 23.You have to add a list of products in a drop-down list. What will you use to group the identical products under a category name?
a. optgroup
b. option
c. menu
d. var
e. There is no way to do this
Answer:a

Question No 24.Which of the following shows the basic tag structure of an HTML document?
a. <html><head><body></body></html>
b. <html><body></body></html>
c. <html><head></head><body></body></html>
d. <html><head></head></html>
Answer:c

Question No 25.Within a table cell <td>:
a. <p></p> tags cannot be used.
b. <ol></ol> tags cannot be used
c. <table></table> tags cannot be used.
d. <form></form> tags cannot be used.
e. All the above tags could be used.
Answer:e

Question No 26.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>
Answer:a

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

Question No 28.The tag that is used to pass the parameters to anapplet is:
a. appletpar
b. applet
c. param
d. val
Answer:c

Question No 29.Which of the following attributes is/are valid for a select tag contained within a form tag?
a.name
b.size
c.multiple
d. All of the above
Answer:d

Question No 30.You want to provide a form field to the users for writing lengthy comments on the quality of the services provided by you. Which of the following tags will you use?
a. <textarea rows=”8″ cols=”20″> Your Comments…. </textarea>
b. <textarea row=”8″ col=”20″> Your Comments…. </textarea>
c. <textarea rowcount=”8″ colcount=”20″> Your Comments…. </textarea>
d. <input type=”text” maxlength=”100″/>
Answer:d

Question No 31.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 forformatting the various <td> table cells?
a.External style sheet
b.Inline style
c.Internal style sheet
d. Browser default
a. External style sheet
Answer:a

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

Question No 33.Which of the following is/are not correct for a <meta> tag in HTML 4.01?
a. It is more useful if it is placed in a head element.
b. It can be used to specify the keywords for the searchengines.
c. It can be used to redirect users to other URLs.
d. It is mandatory to specify its name or scheme attributes.
Answer:d

Question No 34.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.
 Ans: b

Question No 35.Which of the following is incorrect about the relation between HTML and XHTML?
a. XHTML is a stricter and cleaner version of HTML.
b. XHTML is almost identical to HTML 4.01.
c. XHTML and HTML both are used to generate dynamic content.
d. XHTML brings together the elements of HTML and the syntax of XML.
Answer:b

Question No 36.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.
Answer:d

Question No 37.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.
Answer:b,c

Question No 38.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
Answer:d

Question No 39.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.
Answer:b

Question No 40.What do you infer from the following code? <a href = “http://www.expertrating.com”&gt; Expert Rating
a.This href is using absolute path for linking.
b. This href is an example of relative path linking.
Answer:a