Wednesday, July 4, 2012

Getting started on Elance


           

ATTENTION:
To find the answer press CTRL+F in your keyboard and type the word(s) you want to find.

 Please leave comment below if you find it useful. Start your test.



Q .  As a provider, what is the benefit of maintaining paid plan?

1.            Providers with paid accounts receive more Connects initially, and the ability to purchase additional Connects and service categories, allowing them to submit more proposals.
2.            Providers with paid accounts are eligible for the Premier Provider Program, Elance chat, and Elance call.
3.            Providers with paid accounts at the Small Business or Large Business level have the ability to create teams.
4.            Providers with paid accounts can add more keywords and skills test results to their profile.
 5.            All of the above. 

Q.  Elance offers both skills tests and code tests to help providers standout. Through these assessments, providers are able to display their passing scores for the potential employers to review. What are some guidelines to keep in mind related to skills and code tests?

1.            If you score higher than 30% of all test takers, you will receive a special indicator next to your score.
2.            All tests are timed.
3.            60% is considered a passing score on the skills and code tests.
4.            You must wait 7 days to re-test the same skill.
5.            All of these are true except d.


Q. Why is it important for providers to build an effective profile?

1.            It provides employers with information about your knowledge and skills.
2.            It allows providers to promote their marketing messages.
3.            It gives the provider an opportunity to showcase samples of their work.
4.            All of above.

             Topic: Finding Job Opportunities
Q.  What tools does Elance provide to enable you to track the time spent weekly on a job and          updating an employer on the status of a job?

1.            Status Reports
2.            Timesheets
3.            Tracker
4.            Customer Support Contact Information
5.            All of these except d

Q. Which of the following statements is NOT true about the Workroom messages?

1.            Public messages are different than Workroom messages.
2.            It is acceptable to market your services in Workroom messages but not in Public messages.
3.            Providers may only use the Workroom messages after submitting a Prebid or a proposal.
4.            Workroom messages are viewable by anyone.

Q. In order for your provider account to become active on Elance, which step is NOT required?

1.            Create your profile
2.            Pass the Elance Admission Test
3.            Enter a credit card
4.            Verify your phone number

Topic: Managing Your Work
Q. Which of these provider actions would be considered a violation?

1.            Offering to accept payment outside of the Elance system.
2.            Offering to complete a job for an amount below the stated Elance minimums.
3.            Posting a work sample in the provider portfolio of which the provider does not have legal rights or ownership.
4.            Placing contact details (e.g. a non-Elance website URL, e-mail address, etc.) outside of the designated area on the provider profile.
5.            All of these are violations.

Q. If a conflict arises between an employer and a provider, which of the following steps is NOT part of the Elance dispute process?

1.            Member resolution: Members first attempt to resolve the dispute on their own.
2.            Elance Dispute Assistance: Elance holds a conference call to facilitate a mutually-agreeable resolution between the employer and provider.
3.            Arbitration: A binding judgment is made by the 3rd party arbitration service offered through Elance.
4.            Elance management makes the decision about whether the employer or the provider is right.

Topic: Getting Paid
Q.
 How does Elance Escrow protect providers?

1.            Elance Escrow only protects the employer.
2.            It shows that the client has set aside the funds to pay for the provider’s work.
3.            It enables providers to defer income without paying taxes.
4.            It eliminates the Elance service fee.

Q. How can providers view a list of all payment activity?

1.            In the “Search” option under the “Find Work” tab.
2.            On the Skills Central page.
3.            In the Get Paid < Account Activity menu.
4.            All of these will let providers view their payments.

Topic: Advanced Tips for Elance Success
Q. Which of the following are Elance features that are designed to provide resources and information to employers and providers?

1.            Elance University
2.            The Water Cooler
3.            The Elance Blog
4.            All of these.

oDESK TEST HTML 4.01




ODESK TEST ANSWERS HTML 4.01



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

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

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


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

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

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

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.

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.

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

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"

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.

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

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

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>


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.

You specified a base tag and anchors as follows:
1. <base target="_blank">
2. <a href="http://www.yahoo.com">Yahoo</a>
3. <a href="http://www.google.com" 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.

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>

Which attribute specifies the submit URL in a form tag?
a. method
b. action
c. name
d. id

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... -!>

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.

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.

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

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

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>

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.

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>
  
The tag which is used to show monospaced text is:
a. <td>
b. <th>
c. <tt>
d. <b>

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

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 

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"/>

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

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


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.

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.

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.

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.

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.

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

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.


 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.