Showing posts with label ODESK TEST. Show all posts
Showing posts with label ODESK TEST. Show all posts

ODesk HTML 5 Test Answer 2014

1 Comments

ODesk HTML 5 Test Answer 2014

Question no.1: Which media event is triggered when there is an error in fetching media data in HTML 5.0?

Ans: on stalled.

Question no.2: which of the following video file formats are currently supported by the <video> element of HTML 5.0?

Ans: MPEG 4


Question no.3:   which of the following is an invalid  value for the type attribute of command tag?

Ans: command

Question no.4: which of the following is NOT a valid value for the <i frame> sand box attribute in HTML 5.0?

Ans: url

Question no.5: what is the function of the history traversal task source in HTML 5.0?

Ans: it is used to queue calls to history . back () and similar APIs

Question no.6: what will be the result if you use the following code to your HTML 5.0 document?
  <p>I use <del> MAC </del><ins>Microsoft </ins>!</p>

Ans: i use MAC microsoft

Question no.7: you want to create a link for your website allowing users to email the webmaster. how will you implement this if the webmaster 's email address is webmaeter@xcompany.com?

Ans: <a href = "mailto.webmaster@xcompany.com">webmaster</a>

Question no.8: in HTML 5.0 how will the script be executed  if you use the script element shown below?
  <script src="script.js"type="text/java script"defer="defer"></script>

Ans: b. the script will be the executed when the page has finished parsing.

Question no.9: what is the output when you use the HTML 5.0 code snippet shown below?
<body on load=" alert (this)">

Ans: it will be alert saying "[object window]" when the document is loaded.

Question no.10: a computer programming book has to go online. what of the following tags is ideal for displaying the program snippet?

Ans:<code>

Question no.11: how will you bind the details option (shown below) with an <input> element, whose type attribute is set to url to get the result shown in the image?

 Ans: user should define a list attribute to the input element whose type is url.

Question no.12: which of the following are valid a html 5.0 element?

Ans: (check ALL)

Question no.13: how does a button created by the <button> tag differ from the one created by an <input > tag?

Ans: an input tag button can be a reset button too.

Question no.14: which of the following attributes comes in handy when borders have to be put between group of columns instead of every column?

Ans: col group

Question no.15: which of the following is correct with regard to the on can play through event fired by media recourse in the HTML 5.0 document?

Ans: the script will run when the media is played to the end, without stopping for buffering.

Question no.16: what does the icon attribute of the HTML 5.0 command tag define?
<command icon="?">click me!</command>

 Ans:it is used to define the url of an image to display as the command.

Question no.17: while rendering your HTML 5.0 web page, which of the following <link> element files will get skipped by a compliant user agent if you include the link element shown belowin your document?
<link rel ="stylesheet"href="A"type = "text/plain">
<link rel=stylesheet"href="B"type="text/css">

Ans: a link element whose href  is= "A"

Question no.18: which <body> tag event is find when the user leaves the document?

Ans: on unload

Question no.19: how will you change the value of the cookies and items in the storage objects of the local storage attribute in HTML 5.0?

Ans: by invoking the window . navigator. yield For Storage updates()Api mathod

Question no.20: what is the role of the < dfn> element in HTML 5.0?

Ans: it is used to define a definition term.

Question no.21: which of the following is NOT a valid syntax for the <h1>element in HTML 5.0?

Ans: <h1 align="center">this is header 1</h1>

Question no.22: which from event is fired on the click of a button using a button tag with its type attributes value equal to submit?

Ans: on submit

Question no.23: how will you return a reference to the parent of the current window or subframe in an HTML5.0 web application    ?

ans: window parent.

 Question no.24: in HTML 5.0,which of the following is NOT a valid value for the type attribute when used the when  used with the<command>tag shown below?
<command type="?">Click me!</command>

Ans: button.

Question no.25: what is the default background color for the canvas element in HTML 5.0?

 Ans: Transparent

Question no.26: which of the following are valid mouse events in HTML 5.0?

Ans: (check ALL)



Question no.27: which of the following language will you use to print the graphic designed using the HTML 5.0 <canvas> tag?

Ans: java script

Question no.28: consider the following item s 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 a selecting item 2 from the list?

Ans: 90

Question no.29: when is the window on stored event triggered in the HTML document?

Ans: it is triggered when a document perform an undo function.

Question no.30: which of the following is NOT a value attributes for the <video> element in HTML 5.0?

Ans: disabled

Question no.31: which of the following represents INVALID syntax for defining as attribute value in a HTML 5.0 document?

Ans: <input name= be evil/>

question no.32: consider the above code. what will be the impact upon the contents element if both the style sheets define the same class?
 the question is based upon the figure shown below:

Ans: the content of the element will be of blue color and will inherit all the effects of style1.css

Question no.33: which of the following is NOT a valid attribute for the <link> element in HTML 5.0?

 Ans: href lang

Question no.34: which of the following is an INVALID keyword value for http equiv attribute when used with the <meta> element in HTML 5.0?

Ans: expires , set cookies , keyword, author

  Question no.35: which of the following statements is correct if you allow the user to select only one radio button from a group of the radio buttons?

Ans: the name of the input tag must be the same for all the radio buttons.

Question no.36: which of the following <iframe> attribute are NOT supported in HTML 5.0?

Ans: margin height, srolling

question no.37: in HTML 5.0 ,what is the function of the sandbox attribute when used with <iframe> as shown below?
<iframe src= " aaa"sandbox=?></iframe>

Ans: it is used to define the restriction to the frame content.

Question no.38: which of the following is NOT a supported attribute of the <ol> element in HTML 5.0?

Ans: compact

Question no.39:which of the following   would give a yellow background to the web page?
 note: the  code used in the "correct" answer below was deprecated in HTML 4.01! use style instead for new code.

 Ans: <body bgcolor= "yellow">

Question no.40: what is the function of on obsolete ,an application cache API method in HTML 5.0?

Ans: it triggers an event when the cache content has been marked as obsolute.

  Question no.41: suppose you add the input code given about your HTML web page. what result will be returned by the java script function when you click the button marked as A in the image?

Ans: text

question no.42: how does a button created by the <button> tag differ from one created by an <input>tag?

Ans: an input tag button can include images as well.

Question no.43: which of the following HTML 5.0 elements is used to embed java applets into your HTML 5.0 web page?

Ans: <object>

Question no.44: which of the following is NOT a valid attribute for the element in HTML 5.0?

  Ans: http equie.

Question no.45: which of the following are valid values for the content editable attribute of three element in HTML 5.0?

Ans: true,false

Question no.46: you want to display a table listing out customer names and their content information . the heading of the table is shown in the figure . what is the code for creating the first line of the table heading?

  Ans: b <tr>
<th>customer Name</th>
<th col span=3 contact </th>
</tr>

question no.47: which of the following <section> elements have the correct attributes assignment as per HTML 5.0?

 ans: c.<section id="EXAMPLE">...</section>
d. <section id="EXAMPLE">...</section>
<section id="EXAMPLE">...</section>

question no.48: which of the following statements is correct if you invoke the window prompt (message,default) web application API method in HTML 5.0?

Ans: both b and c

Question no.49:which of the following is NOT an attribute of the <meta> element in HTML 5.0?

Ans: scheme

 Question no.50: which media event will be fired when a media resource element suddenly becomes empty?

 Ans: on emptied

Question no.51: what is the purpose of the <keygen> element in HTML 5.0?

Ans: it is used to generate a public private key pair in an HTML 5.0web page.

Question no.52: which event is fired when an element loses its focus in HTML 5.0 document?

Ans : on blur

Question no.53: a piece of text contains many blank space within it. which of the following tags would be suitable to display the text as it was originally formatted?

Ans: pre

Question no.54: which HTML 5.0 element will you use to group the related options in a drop down list?

 Ans: opt group

Question no.55: you are writing the code for an HTML form and you want the browser to retain the form's input values. that is , if a user submits the form and presses the browser's back button , the fully populated form is displayed instead of a blank form. which of the following HTML 5.0 attributes will you use?

Ans: form target.

Question no.56: which of the following tags would assist in creating named groups within a select list?

Ans: opt group.

   Question no.57: how will you cancel the timeouts that are set with the set Interval() API method identified by the handlers in HTML 5.0?

Ans:a. window. clear Interval(handle)
b. <tr>
<th> customer Name</th>
<th col span= 3> contact</th>
</tr>

Question no.58: what is the default background color for the canvas element in HTML 5.0?

Ans: transparent.

Question no.59: which of the following are valid values for the content editable attribute of the <figure > element in HTML 5.0?

Ans: false

Question no.60: which media event is triggered when there is triggered when there is an error in fetching media data in HTML 5.0?

Ans: on suspend.

Question no.61: which of the following is NOT a valid attribute for the <link> element in HTML 5.0?

Ans: http equiv.

Question no.62: which of the following HTML 5.0 elements is used to embed java applets into your HTML 5.0 web page?

Ans: <object>

Question no.64: how does a button created by the <button> tag differ from the one created by an <input> tag?

Ans: an input tag button can include images as well.

Question no.65: how will you return a reference to the parent of the current window or sub frame in an HTML 5.0 wed application?

Ans: window.parent

Question no.66: suppose you add the input code given above to your HTML web page. what result will be returned  by the Java script function when you click the button market as A in the image?

ans: text.

Question no.67: which of the following statement is correct if you allow the user to select only one radio button from a group of radio buttons?

Ans: the name of the input tag must be the same for all the radio buttons.

Question no.68: what will be the result if you use the code to your HTML 5.0 document?
 <bdo dir="rtl">
here is the some text that should be written to your document.
</bdo>

Ans: tnemucod ruoy ot enttirw eb dluohs taht txet emos si ereh.

Question no.69: which of the following would give a yellow background to the webpage?
note : the  code used in the "correct" answer below was deprecated in HTML 4.01! use styles instead  for new code.

Ans: <body bgcolor = "Yellow">

Question no.70: how will you change the value of the cookies and items in the storage object  the local Storage attributes in HTML 5.0?

Ans: by invoking the window . navigator .yieldForStorageUpdates() API method.




Question no.71: how will the target URL open when you define the <a> element in your HTML 5.0 document as shown below?

Ans: the target URL will open in the same document in which it was clicked.


Question no.72: what will be the browsing context if the browsing context if the browsing context name is _ top when the HTML 5.0 web page is loading?

Ans: it will load the linked document in the topmost frame.

Question no.73: which of the following is an INVALID value for the type attribute of command tag?

Ans: text


Question no.74: the following link is placed on an HTML webpage.

Ans: it will open the site msdn.com in a new window.


Question no.75: you have the following directory structure.
webroot->products->ordered->delivered
the product directory has a page called Product. HTML. and the delivered directory has a page called Delivered.html. you want to provide a link to the products page on Delivered.html.the idea code should be:

Ans: <a href= "/..product.html">all product</a>

Question no.76: what will be result if you use the following code to your HTML 5.0 document?
<p>I use<del>MAC</del><ins>Microsoft</ins>!</p>

Ans:i use MAC Microsoft

Question no.77: which of the following is the correct syntax to define  charset in the html 5 <meta> element?

Ans: <meta char set=ISO-8859-1">

Question no.78: which of the following is the correct method to load another web page or reload the seme page in HTML 5.0?

Ans: all of the above

Question no.79: which <body> tag event fired when the user leaves the document?

Ans: on unload.

Question no.80: which event is fired when the history of the browser window changes?

Ans: on pop state. 

 

Previously Posted My Another Site: http://www.odeskskilltestanswer.us 

Read more

Adobe Photoshop CS3 Test when Answer

0 Comments
Adobe Photoshop CS3 Test when Answer

 1.Changing units once suggestion to the subject of the Info Palette automatically changes the units roughly Rulers.

TRUE
 2.Which of the along in the midst of Filters cannot be applied to a Smart Object?

Pattern Maker
 3.With which of the unmodified options does the Signal Strength Meter appear?

It appears taking into account you pick 'join to hdr command'
4.Which along between the when Modes does not preserve layers?
All of the above
5.Which of the associated to is not genuine approximately Filters?
None of the above
 6.Which of the back is not legitimate approximately the Curves dialog crate?

The Curves dialog crate lets you explain yourself occurring to 14 oscillate points throughout an image's tonal range
 7.Which of the when Slices is created once the Slice Tool?

User slices
8.Which of the furthermore features is supported by the EPS file format?
It supports the Grayscale and Bitmap color modes
9.Which together in the midst of the like blending modes is easily reached lonely for the Apply Image and Calculations commands?
Both a and b
10.What is the use of the Make Work Path command in the Paths palette ?
It can fine-manner the have emotional impact of a selection
11.Which type of have the funds for an opinion is not displayed by the Info Palette?
It does not display the opacity of the current tally together together
12.Which together in the midst of the taking into account is not a right option for selecting a web-safe color from the Color Palette?

Choose Current Color from the Color Palette Menu

13. Which keyboard shortcut (windows) will you pick to unventilated a Path?

None of the above

14. Anti-aliasing substitute is handy for which of the all-powerful Tools?

All of the above

15. Which of the by now options displays the Spot Channels in the Channels palette?

B

16. What happens behind Use Legacy is fixed as shown in the resolution describe?

It is used to apply proportionate (nonlinear) adjustments to image pixels

17. Which substitute will you choose to get into the Levels dialog box?

Choose Image > Adjustments > Levels

18. Which type of images are real-dependent?

Vector images

19.Which Liquify Tool is used to reconstruct a share of a misrepresented image?

A

20. In which Format will you save your file to retain the Alpha channels?

All of the above

21.Which of the in imitation of is not a approachable of text type?

Line type

22. Which out of the unspecified will you pick to convert Types to Shapes?

Both b and c

23. The mask created by the Replace Color command is long-lasting.

FALSE

 24. Which of the furthermore Layer properties can be enthusiastic?

All of the above

 25. Which View will you choose to display a Histogram subsequently than no controls or statistics?

All of the above

 26. Which of the unchangeable options displays left indent in the Paragraph palette?

B

27. Which keyboard shortcut (windows) will you select to society Layers?

Control + G

28. The Rotate Canvas command does not pretense concerning which of the behind

All of the above

29. Which of the Saving commands is reachable for an image that is managed by a Version Cue Workspace?

Check In

30. When will the Dynamic shortcuts dispute the Character Palette Menu as shown in the describe?

All of the above

31. Hanging Punctuation controls the alignment of the punctuation marks for a specific paragraph.

TRUE

32.  Which unconventional will you choose to pick all layers of a similar type?

All of the above

  33.Which of the taking into account is not a Color Adjustment command?

Adjustment command

34.  By default, Masks applied to Smart objects are associated to Smart strive for layers. .

FALSE

 35. A responsive space is an intermediate color look used to define and admission color in Adobe applications.

FALSE

 36. Which choice will you choose to sever the existing profile from the document in the unmodified image?

C

37. You cannot move the order of the Vector masks or full of beans paths in the Paths palette.

FALSE

38  The Color Replacement Tool does not take steps in which of the bearing in mind Image modes?

All of the above

 39. In which of the gone Modes can you pull even though operating taking into account the Shape or Pen tools?

All of the above

40.  The Out Of Gamut substitute works isolated upon RGB and Lab images

TRUE

41. Which together along together along with the once QuickTime Video formats is supported by Photoshop outstretched?

MOV

42. Channels can not be subsidiary to which of the subsequently than image modes?

Bitmap
 
 
Previously Posted My Another Site: http://www.odeskskilltestanswer.us
Read more

U.S. English Basic Skills Test. (2013)

0 Comments

Test ID no: 511


Question 1:

Choose the series of prepositions that best completes the following sentence.

Charlotte knew ________the secret investigation _________her past, but she closed her eyes to it and pretended it wasn’t happening.

Answer: a. of, about



Question 2:

Choose the series of adjectives and adverbs that best completes the following sentence.

I think Pamela deserves to be punished for her________ stupid and________ behavior.

Answer: b. totally, irresponsible


Question 3:

Which of the following sentences punctuated correctly?

a. Tracy bought three suits; seven scarves; and ten pairs of shoes.

Answer: b. We are expecting a hurricane this afternoon, therefore we have closed the school early.


Question 4:

Choose the series of adjectives and adverbs that best completes the following sentence.

While_________ of our relatives live on the __________hill in the county, _________of our friends live in the _________areas of the valley.

Answer: c. many, windiest, most, more, protected


Question 5:

Complete the following sentence by choosing the phrase with the best word order from the options given.

Those who are not wise_____________.

Answer: d. does not need to be necessarily stupid.


Question 6:

Choose the series of pronouns that best completes the following sentence.

Don’t _________think Larry should call __________wife if ______________is going to be late for dinner?

Answer: a. you, his, he


Question 7:

Rearrange the following words to create most logical and grammatically correct sentence.

days for last has good weather few The been the not

Answer:d. The weather has not been good for the last few days


Question 8:

Choose the series of adjectives and adverbs that best completes the following sentence.

Knowing that February was the ___________ month of the year, Cheryl planned her vacation ____________.

Answer: b. shortest, accordingly


Question 9:

Rearrange the following words to create most logical and grammatically correct sentence.

Answer: e. Whenever I can’t spend time with my friend, I always speak to him on the phone.


Question 10:

Read the following question and choose the response that uses the correct corresponding verb tense.

Does Jack wear that furry hat often?

Answer: d. No, he only wears it when his ears are cold.


Question 11:

Which of the following sentence illustrates correct pronoun usage?

a. is those the set of plates the bride wanted, or did she want this set?

d.Whose book is that-his or our?

Answer: e. None of the above


Question 12:

Which of the sentence illustrates proper sentence structure?

a. Everyone knows that a mango is much sweeter to an orange

Answer: d. The queen had hardly finished her speech when the people began to disperse.


Question 13:

Change the following sentence from a quotation to indirect speech.

It may snow tomorrow.” he said.

Answer: d. He said it might snow tomorrow.


Question 14:

Which of the following sentence punctuated correctly?

Answer: d. “Come here.” she said, “and let me get a good look at you.”


Question 15:

Change the following sentence from a quotation to indirect speech.

Sharon must go to the bank today.” said Albert.

Answer: d. Albert said Sharon had to go to the bank today.


Question 16:

Choose the option that correctly changes original sentence from active to passive.

ORIGINAL SENTENCE: That tall man is carrying a lot of lumber.

REWRITTEN SENTENCES: 

Answer: d. A lot of lumber is being carried by that tall man.


Question 17:

Choose the series of prepositions that best completes the following sentence.

I placed my notes__________my desk and referred to them____________ the meeting.

Answer: b. beside, during


Question 18:

Rearrange the following words to create most logical and grammatically correct sentence.

Sleeping likes the . midday Katie until on weekends

Answers: Katie likes sleeping until midday on the weekends.


Question 19:

Choose the series of verbs that best completes  the following sentence.

Everyone ____________too busy cooking and __________ the campsite ____________ the family _________ from the woods.

Answers: d. was, setting up, to notice, watching


Question 20:

Choose the series of verbs that best completes  the following sentence.

I find it very hard to remember ______________ letters that are entrusted to me. In fact, I remember _____________to do so dozens of times!

Answer: d. mailing, forgetting


Question 21:

Choose the series of articles and conjunctions that best completes  the following sentence.

Lilacs ___________ violets are usually purple, I have seen some _________ are white.

Answer: c. and, although, that


Questions 22:

Complete the following sentence by choosing the phrase with the best word order from the options given.

Only after they had an exhaustive study__________ how to adapt the technology to the needs of our company.

Answer: c. they did begin to understand


Question 23:

Which of the following sentence illustrates proper use of comma?

a. Randy wanted to end the meeting, but Amy wanted to prolong it.

e. a and b

answer: f. All of the above


Question 24:

Which of the following sentence does NOT illustrates correct verb and tense usage?

Answer: b. Clarabelle’s mother absolutely hated nicknames and always calls her daughter by her full name.


Question 25:

Choose the series of prepositions that best completes the following sentence.

Victor, who stole ____________ ideas and used them  to make _________ a millionaire, never once offered ______________ a world of thanks.

Answer: d. our, himself, us


Question 26:

Choose the series of prepositions that best completes the following sentence.

______________ is the name of the opera, and ___________ role did you say Maria would play?

Answer: c. What, which


Question 27:

Choose the verbs and phrases that best completes the following sentence.

This dish _____________ too spicy. Why ___________ so pepper?

Answer: e. a and c


Question 28:

Change the following sentence from a quotation to indirect speech.

Carol has said, “I am responsible for this project.”

Answer: a. Carol has said that she is responsible for this.


Question 29:

Choose the series of prepositions that best completes the following sentence.

Although Marvin said he had the keys___________ the flower pot, we were unable to find them___________ the dark. In the end, we waited for him at the coffee shop ____________the corner.

Answer: a. under, in. around


Question 30:

Complete the following sentence by choosing the phrase with the best word order from the options given.

The excited children who had run toward the loud _______________.

Answer:d. music, told the others about the ice cream truck outside.


Question 31:

Rearrange the following words to create most logical and grammatically correct sentence.

your company name? of what the is

Answer: c. What is the name of your company?


Question 32:

Which of the following sentences NOT punctuated correctly?

a. All of the apple’s at the grocers were rotten so I bought oranges instead.

Answer: b. “Seven canteens full of water should enough for the hike,” said Tabitha.


Question 33:

Choose the series of prepositions that best completes the following sentence.

After realizing that our hosts hadn’t actually invested _________ to ____________ party. ____________ excused ____________ from the table and slipped out the back door.

Answer: a. us, their, we, ourselves.


Question 34:

Which of the following sentences illustrates the proper use of parallel construction?

Answer: b. We painted the conference room yellow, hung a poster on the wall, and are rearranging the chairs.


Question 35:

Which of the following sentence uses correct pronoun usage?

a. to whom are your employees going to report while you’re gone?

Answer: e. All of the above


Question 36:

Choose the series of adjectives and adverbs that best completes the following sentence.

The archeologists were_____________ to discover such a __________ and__________ ____________ artifact at that mostly uncovered site.

Answer: b. amazed, rare, incredibly, beautiful


Question 37:

Change the following sentence from a quotation to indirect speech.

I’m not feeling well,” Agatha said.

Answer: a. Agatha has said that she doesn’t feel well.


Read more