Become a successful freelancer and crack all exams in first attempt.

Saturday, 7 May 2016

Friday, 22 April 2016

Freelancer SEO Level 1 Exam Questions Answers

Q1 Select the answer that best completes this sentence. SEO is the activity of optimising web pages or sites.
Ans: to increase traffic from directories

Q2 Search engines ______ the web looking at text items on web pages in order to determine what they are about.
Ans: Crawl

Q3 Select the answer that best completes this sentence. All major search engine algorithms
Ans: are only changed when a new algorithm is published

Q4 SEO helps give a web site ________
Ans: web presence

Q5 HTML stands for _______
Ans: Hyper Text markup Language

Q6 Word like "or","and","when" and "in" that are not indexed by search engines are called
Ans: Stop words

Q7 What does 10% search engine saturation mean with respect to a website?
Ans: Only 10% of the web pages of the website will be indexed by the search engine

Q8 What is the main purpose of search engine spiders?
Ans: indexing web sites

Q9 Which of the following links are most undesirable for crawlers ?
Ans: none of these

Q10 Where do search engines look for content inside an iframe ?
Ans: on the source page of the iframe

Q11 Google pagerank is commonly represented on a scale from _______
Ans: 0 to 10

Q12 SEO is a branch of ___________
Ans: Search Engine orientation

Q13 How is rel="canonical" used?
Ans: in the link tag, to copy with duplicate content problems

Q14 Indexing of which of the following sites is guaranteed by Google?
Ans: none of these

Q15 Which of the following search engines uses the Hilltop algorithm?
Ans: Google

Q16 What is meant by LSI?
Ans: Latest semantic indexing

Q17 __________ list sites that are relevant to a given topic.
Ans: search directories

Q18 _______ market products or services that are actually sold by others in exchange for fees and/or commission.
Ans: shopping carts

Q19 which of the following is the least important area in which to include your keywords?
Ans: meta keywords

Q20 For a page to rank high for a particular keyword, which of the following is LEAST important?
Ans: W3C Validation of a page

Q21 Which of the following are examples of Black Hat techniques?
Ans: all of these

Q22 Which of the following statements are valid as per the google's quality guidelines?
Ans: all of these

Q23 Which of the following URLs is search engine friendly?
Ans: none of these

Q24 SEO stands for __________
Ans: Search Engine optimization

Q25 Spiders follow links from one page to another and _____ pages they find on their way
Ans: index

Q26 Which of the following content types is most easily crawled by the major web search engines?
Ans: XHTML

Q27 What could cause multiple pages of a website to be listed with the but no snippet?
Ans: any of these

Q28 Which of the following factors is LEAST likely to affect a link value negatively?
Ans: The link contains the rel="nofollow" attribute

Q29 Besides Google, which of the following search engines use page rank?
Ans: none of these

Q30 Which of the following more crawler friendly?
Ans: All of these are crawler friendly

Q31 If the name of your domain is abc.com, where should robots.txt be located?
Ans: http://abc.com/robots.txt

Q32 What is meant by LSI?
Ans: Latent Semantic Analysis - Indexing

Q33 What is the name of the Google Spider?
Ans: googlebot

Q34 ________ is another name for black hat SEO
Ans: spamdexing

Q35 Which of the following is the LEAST EFFECTIVE way to create high quality title tags?
Ans: writing relevant keywords that compel the user to click your listings

Q36 What is the importance of a sitemap?
Ans: it can help search engine crawlers/spiders access the pages of your site easily

Q37 Which domain extensions are often associated with greater trust and authority in the search engines?
Ans: .com

Q38 For text based user agents which of the following is used to display alternate text for images,etc.?
Ans: ALT

Q39 which of the following actions is not considered unethical?
Ans: Redirection of users based on their location

Q40 Which one of the following step is the most important in a search engine optimization process?
Ans: Keyword research

Q41 Which of the following links help aquire a good PR
Ans: Links on a page don't afftect PR

Q42 Which of the following techniques is NOT generally considered favourable as per search engine guidelines?
Ans: Using the META refresh tag to redirect visitors to another page

Q43 Spiders follow links from one page to another and _______ pages they find on their way.
Ans: index

Q45 The next step after a page is crawled is to __________ its content
Ans: index

Q46 Indexing assigns particular _______ to a page
Ans: search engine

Q47 Various search engines place different relative weights on common factors like ______
Ans: all of these

Q48 All search engines operate ______
Ans: similar in principle but with minor differences.

Q49 PageRank and hyperlink analysis are examples of ______ factors
Ans:off-page

Q50 Most users find a search result they like within the top ____ results presented
Ans: 10

Q51 Most search engines return two types of results:_____ and _____
Ans: natural, paid

Q52 The search string a user submits to a search engine is known as a ______
Ans: blog

Q56 What does SERP stand for?
Ans: Search Engine Results Pages

Q57 Good website content can be offered via _______-
Ans: spamdexing

Q58 Optimizing a website primarily involves editing its content _____ and associated coding
Ans: HTML

Q59 Which of the following statements are valid as per the Google's quality guidelines?
Ans: all of these

Q60 __________ hat techniques are most recommended for SEO
Ans: White

Q61 Which of the following files needs a alternate text description?
Ans: all of these

Q62 Which of the following is a bad practice in creating title tags?
Ans: all of these

Q63 Which of the following linking methods is the most search engine UNFRIENDLY?
Ans: none of these

Q64 Which of the following best describes LSI -indexing?
Ans: none of these

Q65 The keyword  and description attributes belong to which of the following tags?
Ans: Meta

Q66 __________ is the clickable text that users will see as a result of a link.
Ans: anchor text

Q67 In which part of the HTML of a page is the least important area to have keywords?
Ans: Meta Description

Q68 __________ is a measure of the value of a site based upon the number and quality of site that link to it.
Ans: link popularity
Share:

Freelancer PHP Level 1 Exam Questions Answers

1) Which function returns (and caches) the owner ID number?
Answer: fileowner()

2) Which of the following is the correct way to implement a do-while loop?
Answer: $j=0; do { print "$j"; } while ($j > 0);

3)Which statement will skip the rest of the current loop iteration and continue execution at the beginning of next iteration.
Answer: continue

4) Which of the following is correct to show a message for an exception?
Answer: throw new Exception ("Invalid data");

5) What term refers to the ability to shorten Extra_Long_Names improving readability of source code?
Answer: Aliasing

6) Which operator performs the same function as x=x%y?
Answer: %=

7)The control error operator is:
Answer: @

8)Which of the following is the not equal operator?
Answer: !=

9) What are the levels of visibility possible for a variable or method?
Answer: Public, Private and Protected

10) Which Perl Compatible Regex function takes a regex pattern as first argument, a string to match against as second argument, and an optional array variable for returned matches?
Answer: preg_grep

11) Which Perl Compatible Regex function inserts escape characters into strings that are intended for use as regex patterns.
Answer: preg_quote

12)Which of the following shifts the bits of $a $b steps to the left?
Answer: $a << $b

13) What PHP function returns the arctangent in radians of a numerical argument?
Answer: atan()

14) Which function is used to start tracking a user?
Answer: session_start();

15) What statement will delete session files?
Answer: session_destroy();

16) How are sessions tracked on PHP
Answer: With code rewriting using the PHP Session reference variable

17) Which function changes server parameters and status at runtime?
Answer: Memcache::setServerParams

18) Which function forces a write of all buffered output to the resource pointed to by the file handle?
Answer: fflush

19) Single-line comments in PHP use the following:
Answer: //

20) The ability of a class to protect access to its internal member variables is called:
Answer: encapsulation

21) You can use what function in order to check if a constant is set?
Answer: defined();

22) Which of these will perform integer rather than floating point division?
Answer: intval(x/y);

23) ______________ is a mechanism for storing data in the remote browser and thus tracking or identifying return users.
Answer: Cookies

24) Using the Zip Archive Class, which of the following will include a file to a ZIP archive from a given path?
Answer: zipArchive::addFile

25) Which of the following is an example of predefined cURL constant?
Answer: All of these

CURLAUTH_ANYSAFE
CURLFTPSSL_NONE
CURLOPT_FILE
CURLOPT_VERBOSE

26) Which of the following refers to a set of functions that allows you have access to multiple supported databases without writing your own wrapper functions?
Answer: PHP DBX

27) Which of the following is the correct syntax to retrieve an object from the memcache module?
Answer: $result = $memcache->get('key');

28) _____________ attempts to establish an FTP connection to a remote server by emulating an FTP client.
Answer: FTP ftp_connect()

29) Which of the following will open the file "time.txt" as readable?
Answer: fopen("time.txt","r");

30) Which character must be set in the $mode argument for fopen($file, $mode) to open a file for reading and writing?
Answer: r+;

31) Which of the following is the correct way to implement a "for" control structure?
Answer: for($i=0; $i<10; $i++){ // do something }

32) Which of the following is the only keyword that can be written before the namespace at the top of the file?
Answer: declare

33) What is the correct way to access the property of a PHP object?
Answer: $obj->property

34) Select the convention sign used to indicate private variables and functions:
Answer: _ for $_name

35) Arrays can be sorted with which of the following functions?
Answer: arsort(), ksort() and uksort();

36) Private members are accessible to:
Answer: The class itself and the classes that inherit from it

37) Which function returns the square root of its argument, with number of decimal places set by the optional scale factor?
Answer: bcsqrt()

38) What 2 types of parsers are used in PHP?
Answer: T_ABSTRACT & T_ARRAY_CAST

39) What does MIME stand for?
Answer: Multipurpose Internet Mail Extensions

40) Which configuration directive defines a comma separated list of server urls to use for session storage?
Answer: session.save_path

41) Which function gets permissions for the given file?
Answer: fileperms

42) Which function checks whether a file or directory exists?
Answer: file_exists

43) PHP constants:
Answer: All of these

Do not have a dollar sign ($) before them.
May be defined and accessed anywhere without regard to variable scoping rules
May not be redefined or undefined once they have been set.
May only evaluate to scalar values.

44) Which PHP operator type allows evaluation and manipulation of specific bits within an integer?
Answer: Bitwise operators

45) At compile time static values are bound with
Answer: a name

46) Which Perl Compatible Regex character will cause any special character to be treated as a simple matching character?
Answer: \

47) Session files should not be stored on a directory viewable from the Web server because:
Answer: Malicious users may access other users' login details

48) Which API reads in an XML file and creates a "walkable" object tree in memory, so it can be used in large documents?
Answer: DOM

49) What APIs are used for handling XML documents?
Answer: Document Object Model (DOM) and Simple API for XML (SAX)

50) ________________ tests for the end of file on a file pointer.
Answer: feof()

51) Include files must have the file extension:
Answer: none of these

52) What is the term for using a class to create an object?
Answer: Instantiation

53) PHP constants:
Answer: All of these apply

Can be accessed anywhere in the script regardless of the scope.
Can be used as default argument values.
Cannot change during the execution of the script.
Follow the same rules as labels in PHP.

54) Which statement can replace several else Statements?
Answer: switch

55) To retrieve information from a form that is submitted using the "get" method, use ___________.
Answer: $_GET[];

56) Which POSIX function takes the following two string arguments and an optional third-array argument: A POSIX-style regular expression pattern, and the target string to be matched?
Answer: ereg()

57) Which PHP operator will attempt to execute its contents as a shell command?
Answer: (` `)

58) What function takes any number of numerical arguments and returns the largest of the arguments?
Answer: max()

59) To unregister a session variable STRING use:
Answer: session_unregister(STRING);

60) Which of the following is correct to select a database in MS SQL?
Answer: mssql_select_db(STRING)

61) Select the variable used to set the php.ini file to send emails containing the address of the default PHP mail sender.
Answer: sendmail_from

62) Which configuration directive is used to transparently failover to other servers on errors?
Answer: memcache.allow_failover

63) Which PHP function is identical to the C fwrite() function?
Answer: fputs()

64) Which function writes a string to a file?
Answer: file_put_contents

65) To denote strings in PHP, you can use both double quotes " " and which other characters?
Answer: single quotes ' '

66) What kind of elements can be contained in constants?
Answer: All of these

Boolean
Float
String
integer

67) Which PHP operator type allows you to execute its contents as a shell command?
Answer: Execution operator

68) PHP variables start with the following symbol:
Answer: $

69) Which POSIX function takes a pattern, a target string, and an optional limit on the number of portions to split the string into.
Answer: split

70) What function raises the first argument to the power of the second argument, with decimal places to be specified by the scale factor?
Answer: bcpow

71) Instead of a single new line character some clients require which characters?
Answer: "\r\n"

72) Which function parses input from a file according to a format?
Answer: fscanf

73) Which file should be edited to set configuration directives?
Answer: php.ini

74) Which of the following is correct in PHP?
Answer: Zero is interpreted as false

75) Which parameter of setcookie() defines the amount of time for which a cookie is valid?
Answer: expire

76) Which control structure allows you to quickly traverse through an array?
Answer: foreach loops

77) Which types of code can be affected by namespaces?
Answer: Classes, functions and constants.

Although any valid PHP code can be contained within a namespace, only four types of code are affected by namespaces: classes, interfaces, functions and constants.

78) Which cURL function returns the last error number?
Answer: curl_errno

79) Which of the following is an invalid constant name?
Answer: 2DAY

80) Which PHP operator allows you to assign values to variables and arrays?
Answer: "="

81) What is the term for breaking the binding between a variable name and variable content?
Answer: Unsetting references.

82) Which is the operator for the integer remainder from the division of two values?
Answer: %

83) Which predefined Memcache function turns on data compression?
Answer: MEMCACHE_COMPRESSED

84) Which compressed file type can be decompressed without specifying the extension?
Answer: zip

85) Which configuration directive, in conjunction with memcache.allow_failover, defines how many servers to try when setting and getting data?
Answer: memcache.max_failover_attempts

86) The correct way to create a numeric variable "v" that might have any real number is:
Answer: $v;

87) Which of the following databases are supported by PHP?
Answer: All of these

MySQL abd MS SQL
Oracle and Informix
PostgreSQL and Frontbase
mSQL and Interbase

88) Which of the following is the line to enable in the php.ini file for Windows in order to be able to use DBX?
Answer: extension=php_dbx.dll

89) Which of the following is the correct way to connect to a mySQL Server?
Answer: mysql_connect(SERVER, USER, PASSWORD);

90) Which of the following will return variables from a form sent by the HTTP POST method in PHP?
Answer: $_POST

91) Which version of PHP introduced object oriented programming?
Answer: PHP III

92) Which of the following will correctly create a constant "const"?
Answer: const const;

93) What variable is used by session cookies as a user ID?
Answer: $PHPSESSID

94) Functions that represent a behavior of a class are called _________.
Answer: Methods

95) Which zip function retrieves the compressed size of a directory entry?
Answer: zip_entry_compressedsize

96) What does cURL stand for?
Answer: Client URL

97) Which function clears the cache of file status info?
Answer: clearstatcache

98) Which method defines HTTP Authentication using Apache Server?
Answer: .htaccess files

99) What is the most widely accepted meaning of the acronym "PHP" today?
Answer: PHP: Hypertext Preprocessor

100) _______________ defines a cookie to be sent along with the rest of the HTTP headers.
Answer: setcookie()

101) The file handle argument in fread() allows you to specify ___________.
Answer: the number of bytes you wish to read

102) $count = $count + 8; can be written as:
Answer: $count += 8;

103) Which of the following is a special PHP variable that is used under HTTP Authentication?
Answer: $_PHP_AUTH_USER

104) XML is used for:
Answer: All of these
Data manipulation and storage
Display formatted data in a browser using style sheets.
transfer data between organizations
transfer data between software applications

105) Which kind of reference action allows you to have two variables referring to the same content?
Answer: Assign by reference.

106) ____________ describes the structure of a class of XML documents, specifying how elements are related and allowed.
Answer: Document Type Definition

107) Which parameter of setcookie() indicates that the cookie should only be transmitted over a secure HTTPS connection from the client?
Answer: secure

108) Which of the following can be included in a phar file?
Answer: All of these
a manifest describing the contents
a signature for verifying integrity
a stub
the file contents

109) Which of the following will encrypt a password?
Answer: crypt($password);

110) Which of the following will connect to a data base using PEAR?
Answer: DB::connect(data_source_name);

111) Which of the following will return 1 if the Memcache session handler is available and 0 if not?
Answer: MEMCACHE_HAVE_SESSION

112) Which bz library function returns bzip2 encoded data after compressing a given string?
Answer: bzcompress()

113) Which function opens a memcached server persistent connection?
Answer: Memcache::pconnect

114) On the additional header that PHP allows you to include on an email you can add:
Answer: All of these

Content-transfer-encoding
Content-type
MIME version
X-mailer and version number

115) __________ is the same as setcookie() but the cookie value will not be automatically urlencoded when sent to the browser.
Answer: setrawcookie()

116) Which function enables automatic compression of large values?
Answer: Memcache::setCompressThreshold

117) Which of the following will send queries to a database using PEAR?
Answer: none of these

$dbconn=query(QUERY)
$dbconn=query->(QUERY)
DB::query(QUERY)
DB::query->(QUERY)

118) Which PHP library allows you to connect to and communicate with different types of servers using many different types of protocol?
Answer: cURL

119) Which configuration directive sets the size of data chunks for transfers?
Answer: memcache.chunk_size

120) What does PEAR stand for?
Answer: PHP Extension and Application Repository

121) Which of the following functions are used to encrypt passwords?
Answer: md5() and crypt()

122) Which cURL function sets an option on the given cURL session handle?
Answer: curl_setopt

123) Which of the following are examples of resource types in cURL?
Answer: cURL handle and a cURL multi handle

124) Which API treats XML as flow-through string data?
Answer: CAX

125) What does XML mean?
Answer: eXtensible Markup Language

126) singleton design pattern
Answer: Sometimes it's important to have only one instance for a class. For example, in a system there should be only one window manager (or only a file system or only a print spooler). Usually singletons are used for centralized management of internal or external resources and they provide a global point of access to themselves.

127) PHP magic constant
Answer: __LINE__

128) When a small window pops up in front of the browser asking your username and a password, what kind of Authentication is being used?
Answer: HTTP

129) In session management cookies are usually not used for:
Answer: logging the user in for the first time

130) Which function returns the version of the server?
Answer: Memcache::getVersion

131) Which character must be set in the $mode argument for fopen($file, $mode) to open a file for reading and writing?
Answer: r+;

132) Which of the following will open the file "time.txt" as readable?
Answer: fopen("time.txt","r");

133) _____________ attempts to establish an FTP connection to a remote server by emulating an FTP client.
Answer: FTP ftp_connect()

134) Which of the following is the correct syntax to retrieve an object from the memcache module?
Answer: $result = $memcache->get('key');

135) Which of these will perform integer rather than floating point division?
Answer: intval(x/y)

136) $count = $count * 3; can be written as:
Answer: $count *= 3;

137) What is the correct way to add 1 to the $counter variable?
Answer: $counter++;

138) Which operator appends the argument on the right side to the argument on the left side?
Answer: .=

139) With the ________ bitwise operator, the bits set in $a are not set, and the not set bits are then set.
Answer: ~

140) Which bitwise operator will set the bits that are set in either $a or $b.
Answer: " | "

141) Which of the following allows you to set a user-defined exception handler function?
Answer: set_exception_handler

142) In an object method, which of the following is always a reference to the caller object?
Answer: $this

143) Which kind of reference is used by creating a local variable in a function and a variable in the calling scope referencing the same content?
Answer: Assign by reference.

144) Which of the following returns the remainder of $a divided by $b?
Answer: $a % $b

145) What PHP operator is used to access methods and properties of objects?
Answer: " -> "

146) Which interface type allows you to chain methods of an object together?
Answer: Fluent Interfaces

147) Interfaces define a "contract" specifying that an object is capable of implementing a method ____________.
Answer: Specifying exactly how is to be done.

148) What is the correct way to create a function in PHP?
Answer: function yourFunction()

149) Which of the following will print "Hi " followed a name argument passed to the function?
Answer: function sayHi ($name){ print "Hi $name"; }

150) A special method to perform any activity required to instantiate an object is called a(n) __________.
Answer: Constructor

151) Which POSIX character matches zero or more instances of the previous regular expression?
Answer: *

152) Which POSIX character matches any character?
Answer: .

153) If an exception is not caught, a PHP Fatal Error will be issued with what message?
Answer: "Uncaught Exception ..."

154) Which statement retrieves the value of a function after it is called?
Answer: return

155) Which "magic" constant implemented inside an include, returns the directory of the included file.
Answer: _DIR_

156) Which function returns a string containing a byte-stream representation of any value that can be stored in PHP?
Answer: serialize()

157) How do you write "Hello World 2010" in PHP?
Answer: echo "Hello World 2010";

158) Which command returns the filename component of a path?
Answer: string basename ( string $path [, string $suffix ] )

159) Which file mode will read and write to the end of an existing file or create a new file?
Answer: "a+"

160) Which server verifies the name password and mail spool location?
Answer: SMTP Server

161) What does MTA stand for?
Answer: Mail Transfer Agent

162) The agent used to collect and access the mail spool is called:
Answer: Mail Transfer Agent - not sure

163) __________ is an extension that provides a way to put entire PHP applications into a single file called PHP Archive for easy distribution and installation.
Answer: phar

164) Which function is used to connect to a database using Authentication by SQL Database Query?
Answer: @mysql_connect("localhost","databaseuser","password")

165) Which function takes a single argument and returns the largest integer that is less or equal to that argument?
Answer: floor()

166) Which function takes a single argument and returns the smallest integer that is greater than or equal to that argument?
Answer: ceil()

167) What is the expression for returning the square root of 2?
Answer: sqrt(2)

168) Which Perl Compatible Regex function takes a regex pattern and an array and returns an array of the elements of the input array that matched the pattern?
Answer: preg_grep

169) Protected members are available to:
Answer: The class itself and the classes that inherit from it

170) Which of these variables has an illegal name?
Answer: $your-Var

171) A(n) _____________ is an ordered map that assigns values to keys:
Answer: array

172) What PHP type represents a series of characters?
Answer: string

173) Which of the following is NOT a correct way to specify a string?
Answer: alfanum syntax

Strings in PHP can be specified in four different ways: single quoted, double quoted, heredoc syntax and (since PHP 5.3.0) nowdoc syntax

174) Which of the following allows you to express any real number?
Answer: double

175) Which of the following is the correct way to create a reference to a global variable?
Answer: $var =& $GLOBALS["var"];

176) Which of the following provides a means to access the same content on PHP variables by different names?
Answer: References

177) Which PHP operator is used to concatenate strings?
Answer: "."

178) What PHP token that allows access to static, constant, and overridden properties or methods of a class?
Answer: ::

179) Which PHP operator type returns the result of string arguments?)
Answer: String operators

180) Which of these restrictions applies to namespace implementation?
Answer: Nested namespaces are prohibited.

181) What term applies to an identifier with a namespace separator that begins with a namespace separator, such as \Foo\Bar?
Answer: Fully qualified name.

182) Which of the following objects lets you create code which specifies which methods a class must implement, without specifying how the objects are handled?
Answer: Interfaces

183) Which Interface allows you to use a design pattern that is characteristically changed with the instantiation of objects?
Answer: Instantation Design Interface

184) Which POSIX character matches the beginning of a string only?
Answer: ^

185) Which of the following are two broad classes of regular expressions that PHP works with?
Answer: POSIX and PHP-compatible regex

186) Which statement allows you to end a loop?
Answer: break

187) This "magic" constant refers to the name of the current namespace and it is defined in compile-time
Answer: _NAMESPACE_

188) What is the name for instances of a class that contain all the internal data and state information need for the application to run
Answer: Objects

189) ___________ allows a class to be defined as being a member of more than one category of classes
Answer: Polymorphism

190) The ability to define a class of one kind as being a subtype of a different kind of class is called:
Answer: Inheritance

191) Instantiate an object Demo: require_once('class.Demo.php');
Answer: $objDemo = new Demo();

192) Which of the following is correct for adding a comment in a PHP script?
Answer: /* comment */

193) Which function returns (and caches) file permissions level?
Answer: fileperms(file)

194) Which PHP function sets file modification time or creates a file if it does not exist?
Answer: touch(file, [time])

195) Which of these PHP file open modes are valid for the specified conditions?
Answer: All of these

196) The ____________ function can be used in combination with the PHP header() construct to assemble and send file downloads.
Answer: fpassthru

197) Which function returns (and caches) the time a file was last accessed?
Answer: fileatime(file)

198) How do you modify the php.ini file to have sessions work correctly on windows?
Answer: change session.save_path = /tmp to session.save_path=C:/temp

199) Which function gets statistics from all servers in a pool?
Answer: Memcache::getExtendedStats

200) Which of the following functions returns a Boolean value after attempting to send a message?
Answer: mail()

201) Which of the following is the correct way to connect to a MySQL database?
Answer: mysql_connect("localhost");

202) Which files should be used to install cURL in an include directory?
Answer: easy.h and curl.h files

203) Which function returns the largest number that may be returned by rand()?
Answer: getrandmax()
Share:

Freelancer Orientation Exam Questions Answers

1. Where Can I Find a list of projects i’m Currently working on?
Answer: On the freelancer View of my Dashboard

2. Question: How Much Does it Cost To Register as a Freelancer On Freelancer.com
Answer: There is No Cost To Register

3. How can a freelancer increase his/her chances of winning bids?
Answer: All of these

4. Multiple Freelancer.com accounts are required in order to both bid on jobs as a freelancer and hire freelancer as an employer
Answer: False

5. Question : How can A Freelancer stay up to date on new projects
Answer: BY any of these Methods

6. Question: What is the Mountly Bid limit for a Premium member?
Answer: 500 Bids Limit

7. Question: How can a Freelancer Increase his/her Chances of Winning bids?
Answer: All Of These

8. Which of the following is the Correct way for a freelancer to use the project Clairification Board?
Answer: TO Ask Questions about a project after Bidding

9. Question: how can A freelancer Avoid being Cheated on a project
Answer: All of these

10. Question: Where can a Freelancer see how many bid He/she has Left?
Answer: in the Welcome Section of the Dashboard

11. What Would pervient a freelancer from bidding on a project?
Answer: Any of these

12. How can a freelancer contact an employer before being setected for a project?
Answer: Send a private message to the employer’s inbox

13. How much does it cost to bid on a project?
Answer: It Depends on the project budget

14. What advantages does standard membershio offer a freelancer?
Answer: All of these are correct.

15. Question : Which of the Following methods is Recommended for a freelancer to draw extra Attention to his/her Bid on a project?
Answer : Choose the Highlight my bid opton.

16. Can a freelancer bid on a project that’s posted as private?
Answer: Yes,but there is a $3.00 fee to bid

17. What the Mountly bid limit for a basic member?
Answer: 50

18. How many job types can a premium member have selected the qualification section of his/her profile?
Answer: 100

19. What Should a freelancer do if he/she suspects an employer of fraud after bidding a project
Answer: Report the activity to freelancer.com Support

20. What Would prevent a freelancer from bidding on a project?
Answer: Any of these

21. Besides doing employer projects, how else can a freelancer make money on freelancer.com?
Answer: Any of these

22. I have Submitted feedback for an employer.But it doesn’t show on the employer’s profile ,why not?
Answer: The employer doesn’t allow feedback

23. What advantage does the Milestone Payment system Offer freelancers over other payment method?
Answer:All of these are correct

24.If a freelancer prefers not to start a project until a Milestone Payment has been created, how can he/she let prospective employers know that when placing a bid?
Answer:Enter an amount in the “Initial milestone percentage required (0-100%)?” box on the bid form.

24.I was awarded a project several days ago, but the Milestone Payment I requested hasn’t been created. What should I do?
Answer:Contact the employer with a polite reminder or issue a milestone payment request.

25.I’ve noticed a project that violates Freelancer.com’s policies. What should I do?
Answer:Submit a ticket to the “Report Violations” department of Online Support.

26.What action should a freelancer take if an employer cancels a Milestone Payment before the project deadline?
Answer:Launch a dispute as soon as possible

27.What advantage does the Milestone Payment system offer freelancers over other payment methods?
Answer: All of these are correct

28.How can Freelancers earn back their bids?
Answer:By accepting a project that has been awarded to them.

29.Besides doing employer projects, how else can a freelancer make money on Freelancer.com
Answer:Freelancer Affiliate Program

30.I’ve completed a project, but the employer hasn’t made the PayPal payment promised. What should I do?
Answer:There is no recourse available on Freelancer.com for projects paid outside the Milestone Payment system

31.When does a freelancer pay a commission on a fixed-price project?
Answer:When the freelancer accepts the project

32.I was awarded a project several days ago, but the Milestone Payment I requested hasn’t been created. What should I do?
Answer:Contact the employer with a polite reminder or issue a milestone payment request

33.What should a freelancer do if an employer asks for his/her contact information before awarding him/her a project?
Answer:Send his/her email address

34.Which of the following is NOT a good way for a freelancer to ensure good feedback for a project?
Answer:Offer a lower price in exchange for good feedback

35.Where can a freelancer see how many bids he/she has left?
Answer:In the “Welcome” section of the Dashboard

36.Which of the following can be posted in a private message immediately after bidding on a project?
Answer:work samples

37.How can a freelancer increase his/her chances of winning bids?
Answer:All of these

38.What is the monthly bid limit for a Premium member?
Answer:500

39.How much does it cost to register as a freelancer on Freelancer.com?
Answer:There is no cost to register.

40.What advantage does the Milestone Payment system offer freelancers over other payment methods?
Answer:All of these are correct

41.How can a freelancer contact an employer before being selected for a project?
Answer:There is no way to contact an employer

42.How can a freelancer contact an employer before being selected for a project?
Answer:Send a private message to the employer’s Inbox.

43.Can a freelancer change a bid placed on a project?
Answer:Yes, if the project is still open for bidding.

44.I’ve noticed a project that violates Freelancer.com’s policies. What should I do?
Answer:Submit a ticket to the “Report Violations” department of Online Support.

45.I have submitted feedback for an employer, but it doesn’t show on the employer’s profile. Why not?
Answer:The employer hasn’t yet submitted feedback for you.

46.How can a freelancer stay up to date on new projects?
Answer:By any of these methods

47.What action should a freelancer take if an employer cancels a Milestone Payment before the project deadline?
Answer:Launch a dispute as soon as possible.
Share:

Freelancer Basic Numeracy Level 1 Exam Questions Answers

Ques: How many mg (milligrams) are in 0.8 g?
Ans: There are 1000 mg in 1 g. So in 0.8 g there are 1000 x 0.8 = 800 mg

Ques: How many ml (milliltres) are in 2,500 µl (microlitres)?
Ans: 1000 µl = 1 ml, so 2,500 µl = 2,500/1000 ml = 2.5 ml

Ques: How many mg (milligrams) are in 5250 µg (micrograms)?
Ans: 1000 µg = 1 mg, so 5,250 µg = 5,250/1000 mg = 5.25 mg

Ques: How many ng (nanograms) are in 5250 µg (micrograms)?
Ans: 1 µg = 1000 ng, so 5,250 µg = 5,250 x 1000 ng = 5,250,000 ng

Ques: Which of the following is a CONCENTRATION and not an AMOUNT?
Ans: 2ml is a volume (amount) and 10g and 100µg are masses (amount); 100mM = 100 mmol/l and is a concentration.

Ques: Which of the following is an AMOUNT and not a CONCENTRATION?
Ans: 10%(w/v), 35 µM (micromolar) and 20 mmol/l (millimolar) are all concentrations. 8 mmol (millimoles) is an amount.

Ques: The molecular weight of the amino acid alanine is 89. How many mg are in 30 mmol (millimoles) of alanine?
Ans: 1 mol alanine = 89 g, so 1 mmol = 89 mg, so 30 mmol = 30 x 89 mg = 2670 mg

Ques: The molecular weight of the amino acid alanine is 89. How many g are in 45 µmol (micromoles) of alanine?
Ans: 1 mol alanine = 89 g, so 1 µmol = 89 µg = 89 x 10-6 g = 0.000089 g, so 45 µmol = 0.000089 x 45 g = 0.004005 g.

Ques: How many µmol (micromoles) are dissolved in 1 l of a 30 µM (micromolar) solution?
Ans: 30 µM = 30 µmol/l, so in 1 litre there are 30 µmol.

Ques: How many µmoles are in 1 ml of a 1 M solution?
Ans: 1 litre of a 1 M solution contains 1 mol, so 1 ml contains 1 mmol = 1000 µmol.

Ques: A solution was made by dissolving 7.687g of substance X in 720ml of water. Calculate the concentration of X in g/litre.
Ans: If 720 ml contains 7.687 g, then 1000 ml (1 l) contains 7.687 x 1000/720 g = 10.68g. Concentration is 10.68 g/l.

Ques: If the molecular weight of substance X is 212 what is the molarity of the previous solution, given that it had a concentration of 10.68 g/l?
Ans: 212 g/l = 1 M, so 10.68 g/l = (1/212) x 10.68 M = 0.05 M

Ques: The molecular weight of the amino acid alanine is 89. How many mg are in 250 ml of a 10 µM solution of alanine?
Ans: 1 l of a 1M solution contains 89 g, so 250 ml of a 1 M solution contains 89 x 250/1000 = 22.25 g, so 250 ml of a 1 µM solution contains 22.25 µg, so 250 ml of a 10 µM solution contains 222.5 µg = 0.2225 mg.

Ques: The molecular weight of the amino acid alanine is 89. How many µg are in 200 ml of a 0.02% (w/v) solution of alanine?
Ans: A 0.02% (w/v) solution contains 0.02 g/100ml, so 200 ml contains 0.04 g = 0.04 x 106 µg = 40,000 µg. The molecular weight is not required for the calculation.

Ques: The molecular weight of the amino acid alanine is 89. How many g are in 1.0 kg of a 50 ppm solid mixture of alanine in salt ?
Ans: 50 ppm (parts per million) = 50 g per 106 g = 50 g per 103 kg = 50 x 10-3 g per kg = 0.05 g/kg. The molecular weight is not required.

Ques: The molecular weight of glucose is 180. Express a blood glucose concentration of 80 mg per 100 ml as a molarity.
Ans: 80 mg/100ml = 800 mg/l = 0.8 g/l. 180 g/l = 1 M, so 0.8 g/l = 0.8/180 M = 0.0044 M = 4.4 mM.

Ques: The molecular weight of haemoglobin is 64,000. What is the concentration of a 5 µM solution of haemoglobin expressed in mg/ml?
Ans: 1M Hb = 64,000 g/l, so 1 µM Hb = 64,000 µg/l, so 5 µM Hb = 320,000 µg/l = 320 mg/l = 0.32 mg/ml.

Ques: The molecular weight of glucose is 180. 500 ml of a 10% (w/v) solution is made and 100 ml of this is removed. What is the molar concentration of glucose in the remaining 400 ml?
Ans: 10% (w/v) glucose contains 10 g/100 ml = 100 g/l. 180 g/l is 1 M, so 100 g/l = 100/180 M = 0.555M. The fact that 500 ml were made and 100 ml removed does not affect the concentration. It is the same i.e. 10% (w/v), or 0.555 M, in the 500ml, the 400 ml and the 100ml.

Ques: The labelling on a tube of toothpaste states that it contains 0.1% (w/w) sodium fluoride (NaF). The content is also expressed as "x" ppm fluoride ion. What is "x"? (The molecular weight of NaF is 42 and the atomic weight of F is 19).
Ans: 0.1% (w/w) is 0.1 g NaF per 100g toothpaste, so 106 g toothpaste would contain 0.1 x 106/100 g = 1000 g NaF. This is 1000 ppm NaF, so fluoride ion (F-) is 1000 x 19/42 = 450 ppm.

Ques: The molecular weight of urea is 60. 5 g were dissolved in 50 ml water. 10 ml of this solution was added to 50 ml water. What was the molarity of this final diluted solution?
Ans: 5 g in 50 ml = 100g/l. 60 g/l = 1M, so 100 g/l = 100/60 M = 1.67 M. 10 ml of 1.67 M urea added to 50 ml water, so final volume = 60 ml. This is a 10/60 or 1 in 6 dilution, so molarity of diluted solution = 1.67/6 = 0.278 M.
Share:

Thursday, 21 April 2016

Freelancer US English Level 1 Test Answers

Freelancer US English Level 1 exams questions and answers to get 100% success. Every freelancer have to take this test. Be an expert freelancer.

1. They were __________ tall for the doorway.
Ans. too

2. I drive Sherry to the park, where ________ plays softball.
Ans. she

3. My life is ______________ organized than before.
Ans. more

4. You got yourself _________ this mess; get yourself out.
Ans. into

5. If I had practiced it more, I __________ won the game
Ans. would have

6. The teacher screamed __________ agony.
Ans. in

7. He will meet you ___________ the station at seven o’clock sharp.
Ans. in front of

8. We need to discuss this _____________.
Ans. further

9. They had hats on ___________ heads.
Ans. their

10. Why ____________ the chicken cross the road?
Ans. did
Share:

Need an EXPERT!!!