Skip to main content

HTML5 Test Upwork Test Answers 2019

130.  Which of the following video file formats are currently supported by the <video> element of HTML 5.0?
a. CCTV
b. MPEG 4***Answer**
c. Ogg***Answer**
d. 3GPP


131.   Which of the following are valid values for the contenteditable attribute of theelement in HTML 5.0?
a.true ***Answer**
b.false ***Answer**
c.0
d.1

132.         How does a button created by the <button> tag differ from the one created by an <input>tag ?
a. An input tag button can be a reset button too.
b. A button tag button can be a reset button too.
c. An input tag button can include images as well.***Answer**
d. A button tag can include images as well.

133.         Which media event is triggered when there is an error in fetching media data in HTML 5.0?
a. onstalled
b. onwaiting
c. onsuspend***Answer**
d.oninvalid

134.         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***Answer**
c.rowspan
d. row


135.         Which of the following is NOT a valid attribute for the element in HTML 5.0?
a.hreflang
b.rel
c.http-equiv***Answer**
d.media

136.         Which of the following HTML 5.0 elements is used to embed Java applets into your HTML 5.0 web page?
a.<applet>
b.<object>
***Answer**
c. <source>
d.<progress>

137. Which of the following are the valid values of the <a> element's target  attribute in HTML5?
Ans: a._blank
          b. _self
   c. _top

138. Which media event is triggered when there is an error in fetching media data in HTML5?

Ans: a.Onstalled

139. What is the internal/wire format of input type=”date” in HTML5?
Ans: a. YYYY-MM-DD

140. How can audio files be played in HTML5? 
var sound = new Audio("file.wav");
Ans: d. Sound.play();

141. True or False:
HTML5 Canvas can be used to create images.
Ans: a. True

142. Which event is fired when an element loses its focus in an HTML5 document?
Ans:c. Onblur

143. Which of the following are sample use cases for HTML5 web workers?
Ans: d. All of these

144. In HTML5, which of the following is not a valid value for the type attribute when used with the <command> tag shown below?  <command type="?">Click Me!</command>

Ans: a.       Button

145. What is the limit to the length of HTML attributes?
Ans: a. There is no limit

146. Which following are valid default values for the <input type="date"> HTML5 element?

Ans: b. 2013-05-30

147. Which is the standard method for clearing a canvas?
Ans: a. context.clearRect ( x, y, w, h);

148. Once an application is offline, it remains cached until the following happens (select all that apply):
Ans: b.       The manifest file is modified

149. How does a button created by the <button> tag differ from the one created by an <input> tag?
Ans: d. A button tag can include images as well.

150. Which HTML5 doctype declarations are correct?
Ans: c. <!DOCTYPE html>

151. Which of the following <link> attributes are not supported in HTML5?
Ans: a. Rev,  d.charset

152. The following are valid use cases of client file/directory access in HTML5, except:
Ans: c.        Use of HTML5 File API

153. Which method of HTMLCanvasElement is used to represent image of Canvas Element?
Ans: a. toDataURL()

154.         What does p2p streaming mean when web applications establish a p2p HTTP connection using HTML?
Ans: a. It means that streaming of a voice/video frame is direct, without using any server between them.
A

155. When does the ondragleave mouse event get fired in HTML5?
Ans:b.  It gets fired when an element leaves a valid drop target

Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. Thanks
    Best Web Site in Chittagong
    www.inctg.com

    ReplyDelete
  4. Topic % Correct
    DICTION & WORD CHOICE 0%
    Pronoun Usage 14%
    Sentence Structure 27%
    PRONOUN-ANTECEDENT AGREEMENT 33%
    SUBJECT-VERB AGREEMENT 33%
    MODIFIERS 50%
    COMPARISONS 50%
    VERB TENSES 50%
    Your Score: 1.65
    Passing Score: 2.50

    ReplyDelete
  5. Great work! Thanks to Admin for Sharing the list of Upwork bootstrap answer Sites.
    This list will Surely help many of us. I Bookmarked and Shared your Link.
    and Bootstrap
    And also good site for Article Writers

    ReplyDelete
  6. Great work! Thanks to Admin for Sharing the list of Upwork bootstrap answer Sites.
    This list will Surely help many of us. I Bookmarked and Shared your Link.
    and Bootstrap
    And also good site for Article Writers

    ReplyDelete
  7. Great work! Thanks to Admin for Sharing the list of Upwork bootstrap answer Sites.
    This list will Surely help many of us. I Bookmarked and Shared your Link.
    and Bootstrap
    And also good site for Article Writers

    ReplyDelete

Post a Comment

Popular posts from this blog

English Spelling Test (U.S. Version) Upwork Answers Test 2019

1 . Complete the following sentence by choosing the correct spelling of the missing word. Their relationship was plagued by _______ problems. Perpetual   —- it means: continuing for ever in the same way, often repeated Perpechual Purpetual Perptual 2.  Complete the following sentence by choosing the correct spelling of the missing word. The crowd _________ me on my acceptance into Mensa Congradulated Congrachulated Congratulated  —- it mean: to praise someone Congratilated English Spelling Test (U.S. Version) Answer;Upwork English test answer; Upwork English test answer 2017; lastest Upwork English test answer; upwork test answer;  3. Choose the correct spelling of the word from the options below. Goverment Governmant Government  — the group of people who officially control a country Govermant 4. Choose the correct spelling of the word from the options below. Temperamental  — (of a person) liable to unreasonable changes of mood Tempermental T

Office Skills Test Upwork Test Answers 2019

Question:* Your computer is not printing and a technician is not available, so you perform the following activities to investigate the problem. In which order should you take these up? 1 See if the printer cartridge is finished 2 See if the printer is switched on 3 Try to print a test page using the printer self-test 4 Try to print a test page from Windows 5 See if the printer is properly attached to the computer Answer: • 2,3,1,5,4 Question:* What is 'flexi-time'? Answer: • The flexible use of personal office hours, such as working an hour earlier one day, in order to leave an hour earlier another day. Question:* Which of the following are proven methods of improving your office skills? Answer: • All of the above Question:* When replying to an e-mail, who do you place in the cc: line and who in the bcc: line? Answer: • A person you wish to openly inform goes in the cc: line, and the person you wish to read the e-mail without the knowledge of the rec

Python Test Answers Upwork 2019

1. Which of the following will disable output buffering in Python? Answers: a. Using the -u command line switch a. 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)  a. Setting the PYTHONUNBUFFERED environment variable a. sys.stdout = os.fdopen(sys.stdout.fileno(), ‘w’, 0) 2. Which of the following members of the object class compare two parameters? Answers: a. object.__eq__(self, other)  a. object.__ne__(self, other)  a. object.__compare__(self, other) a. object.__equals__(self, other) a. object.__co__(self, other) a. None of these 3. Object is the base class of new-style datatypes. Which of the following functions is not a member of the object class? Answers: a. object.__eq__(self, other) a. object.__ne__(self, other) a. object.__nz__(self)  a. object.__repr__(self) a. None of these 4. In Pyth