Wednesday 1 April 2015

22 oDesk Cover Letter Samples


22 oDesk Cover Letter Samples


SAMPLE #1  DATA ENTRY
Hello Sir,
I am writing in response to your advertisement for a “Data Entry Assistant & SEO Good English”.  After carefully reviewing the experience requirements of the job description, I feel that I am a suitable match for the job. I’ve held several data entry positions that entail inputting customer requests, inquire, and tracking codes of products I also perform administrative duties including copying and faxing documents, answering telephones, transferring data, web research and reports to immediate supervisor.
I feel that I can add professionalism and accuracy to your current team of professionals. With extensive experience supporting all levels of a department and working directly with external vendors, I take direction well and can complete a heavy workload and complete projects under minimal supervision. If you feel there is a mutual interest, I would welcome the opportunity to meet with you to learn more about your company, the requirements of the position, and how my qualifications would be a good fit. 
Thank you in advance for your time and consideration.

Tuesday 31 March 2015

Test answers for Python 2015 Elance


Test answers for Python 2015

Elance • IT & Programming

1. What is a correct term for the following piece of Python syntax: 3 + 4
Answers:
• A suite.
• A lambda.
• A closure.
• An expression.
• A statement.

2. What will the following print?  a = [1,2,3] b = a a[-2] = 0 print(b)
Answers:
• [1,2,3]
• [1,0,3]
• [1,2,0]
• [0,2,3]

Test answers for Python 2015 oDesk


Test answers for Python Test 2015

oDesk • General Programming


1. Which of the following will disable output buffering in Python?
Answers:
• Using the -u command line switch
• class Unbuffered: def __init__(self, stream): self.stream = stream def write(self, data): self.stream.write(data) self.stream.flush() def __getattr__(self, attr): return getattr(self.stream, attr) import sys sys.stdout=Unbuffered(sys.stdout)
• Setting the PYTHONUNBUFFERED environment variable
• sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

2. Which of the following members of the object class compare two parameters?
Answers:
• object.__eq__(self, other)
• object.__ne__(self, other)
• object.__compare__(self, other)
• object.__equals__(self, other)
• object.__co__(self, other)
• None of these

Test answers for Android (Developer) 2015 Elance


Test answers for Android (Developer) 2015

Elance • IT & Programming


1. Android layouts are read from which type of file?
Answers:
• txt
• res
• xml
• xaml

2. In order to be notified of a device switching from landscape to portrait view, you should:
Answers:
• Override the onConfigurationChanged event
• Both of these
• Request changes via the android:configChanges="orientation" attribute for activities in your manifest file

How to withdraw earned cash from oDesk?


The most effective method to withdrawal earned cash from oDesk.

oDesk offers distinctive approaches to withdrawal cash. The best one is Payoneer.

How it functions

The American organization makes a dollar card in an American bank for you. It is free!!! You don't possess a record, in light of the fact that you are just a card holder appended to a joint Payoneer account. This is ideal for nations where natives can't have accounts in outside banks!!!

Complete a structure

Everything you need is to enter your data in the structure (name and address) and in a month you will get an envelope with a card inside.

You must give just substantial genuine data, on the grounds that it will be confirmed with your international ID.

Compose all information in English (use translation for your location, First and Last names take from visa). Your nation may have an exceptional record interpretation of names in the Latin letter set.

Administration expenses

Yearly administration expenses are $30. This sum is naturally withdrawal once a year and ONLY if there is cash on your record.

Withdrawal focuses

It is simple and helpful to get cash from any ATM.

Actuate your card

Before utilizing the card you must actuate it on the site and set a PIN code. Preceding the actuation of the card it can not be utilized.

Join the card with oDesk

Presently you need to connection the card to your oDesk account. You can do it for 1 moment by means of oDesk settings.

Payoneer has a decent bolster, any inquiry can be asked on the gathering.

Get extra $25 on your Payoneer account

By enrolling utilizing the connection beneath you will consequently get $25 on your card when gain $100, which is decent, concur:

Step by step instructions to find right clients


Unfortunately you can confronted with circumstances on oDesk when clients don't pay by any stretch of the imagination. There are some regulation tenets for such circumstances, yet at any rate it is ideal to pick right individuals from the first endeavor.

Clients classifications:

Best one. Client has long history, his paid rate is high, he paid much cash, his normal rating is just about 5 stars;

New client - black box. Concurring oDesk data you can't educate anything regarding him. This is your obligation to achieve a work with him;

The most exceedingly awful choice. Normal rating is low - less then 4 stars, paid rate is low $2-3/hr.

The most vital thing which you must do before beginning any association with a client - read outsources' criticism. You can take in more around a client.

Anyhow in any case, in the event that you have positive desires then when in doubt even awful clients will be gold for you.

Rate expanding on oDesk



The accompanying inquiries raise instantly in the wake of opening oDesk account:

What are the normal rate on oDesk?

What rate to use in profile?

What is the best rate for fledglings?

At the point when to raise/decrease rate?

What expense/rate to utilize when seeking an occupation?

The notes underneath requested developers

What are the normal rate on oDesk? 


The normal oDesk rate is from $3 - $50/hr.

Experts use $20/hr. Most IT authorities who are simply graduated and does not have much experience as guideline utilization $5/hr.

Rate in profile? 


You make utilize your current pay + 30-half.

You generally can arrange the rate when seeking work.

Than littler venture expense is then when in doubt a client is less sufficient. Such clients need to make immense measure of work for 5 pennies.

Vast undertaking plans when in doubt have insightful clients.

Huge rate in your profile pull in clients consideration, no questions.

What is the best rate for amateurs? 


You can start from $7-15 to gain first appraising and criticism.

In the event that you put the rate less $7/hr, then you might lost among less qualified pros.

What rate to use for requesting a job?

Sometimes bode well to propose a lower expense to demonstrate your reliability to a client and clarify why: with respect to sample, you may not completely compare the occupation necessities.

Test answers for PrototypeJS Javascript Framework 2015 - Elance


Test answers for PrototypeJS Javascript Framework 2015

Elance • IT & Programming

1. What is the correct syntax for a string of key-value pairs?
Answers:
• company=example&limit=12
• example&limit=12company=
• company=limit=12
• &limit=12

2. Method "on()" of Event class can be used to set up event handlers, with or without event delegation. What is not true about Event.on?
Answers:
• It works just like Event.observe
• It calls Event.Handler#start
• Has inner iterator
• Creates an instance of Event.Handler

Test answers for JavaScript 2015 Elance


Test answers for JavaScript 2015
Elance • IT & Programming
1. Which of the following is a JavaScript comment?
Answers:
• \\ comment
• // comment
• # comment
• <!-- comment -->
• -- comment

2. var foo  = 'Global'; function fun() {     log( foo );     var foo = 'Local';     log( foo ); } fun();  What the output of the above to log()?
Answers:
• Global Local
• undefined Local
• Global Global
• Local Local

Test answers for Javascript Test 2015


Test answers for Javascript Test 2015

oDesk • Web Development


1. Which of the following is true about setTimeOut()?
Answers:
• The statement(s) it executes run(s) only once.
• It pauses the script in which it is called.
• clearTimeOut() won't stop its execution.
• The delay is measured in hundredths of a second.
• It is required in every JavaScript function.

2. How can the operating system of the client machine be detected?
Answers:
• It is not possible using JavaScript.
• Using the navigator object
• Using the window object
• Using the document object
• None of these.