Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

For duplex communication we can’t use ____________(a) Long Polling(b) HTML5(c) JavaScript(d) StreamingThe question was asked during an interview.My question comes from Web Socket Communications topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct ANSWER is (c) JavaScript

For explanation I would say: There are some existing techniques for the communication between client and server known as DUPLEX techniques. They are Streaming, HTML5, POSTBACK and AJAX, Long Polling, Polling. For real-time transferring of data, Streaming is the BEST option. Polling performs periodic requests.

2.

Which attribute is not used on new forms?(a) size(b) text(c) name(d) maxlengthThe question was posed to me in examination.This interesting question is from Input Types for Forms topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right option is (a) size

The BEST explanation: size attribute DENOTES the width of text input i.e measured by the number of characters INPUTTED. E.g. If we input value 3 then it will create a box of width enough to display three characters. The user can enter more characters if they want. Syntax is

3.

MP3 format is not supported by ____________(a) Firefox(b) Chrome(c) Safari(d) OperaI have been asked this question in an interview for internship.The origin of the question is Audio and its MIME Types topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct choice is (d) Opera

For explanation I would say: MP3 audio format is SUPPORTED by FIREFOX, Firefox for android as well as for iOs, Internet Explorer, Safari, and Chrome. The MIME TYPE for audio is audio/mpeg, .mp3. USUALLY used with

4.

Which browser supports mozCurrentSampleOffset?(a) Chrome(b) Internet Explorer(c) Opera(d) FirefoxThis question was addressed to me in an interview for job.This intriguing question originated from Audio and its MIME Types topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct option is (d) Firefox

To elaborate: mozCurrentSampleOffset ATTRIBUTE is not SUPPORTED by Chrome, Edge, Internet Explorer, Opera or Safari. It is only supported by Firefox. This is an offset which specifies the number of samples from the beginning of audio to the place where audio is CURRENTLY PLAYING.

5.

Which format is not supported in Internet Explorer?(a) WebM(b) Ogg Theora Vorbis(c) MP4 H.264(d) MP3The question was posed to me in an interview.My doubt is from Audio and its MIME Types topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct OPTION is (b) OGG THEORA Vorbis

To elaborate: Ogg format is supported in mobile, desktop, CHROME, safari, opera. WebM is preferable over Ogg Theora Vorbis due to the better ratio of compression and quality and most of the browsers support WebM. Ogg format can be used to support old browsers. The MIME type of Ogg file that has audio is audio/ogg.

6.

For writing chemical formula of water which tag will be used?(a) (b) (c) (d) The question was posed to me at a job interview.Asked question is from HTML5: Beyond Markup in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The CORRECT answer is (b)

The explanation: The element is used to contain characters that should be SUBSCRIPT. It is commonly used with foot notes or chemical formulas. E.g. H20, is use for SUPERSCRIPT,
is for HORIZONTAL BREAK,

    is for unordered list.

7.

What is the work of src?(a) audio starts playing automatically(b) play again after finishing the audio(c) specify the path to an audio file(d) insert more than one audioThis question was addressed to me in an interview for job.This intriguing question originated from Audio and its MIME Types topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» CORRECT option is (c) SPECIFY the path to an audio FILE

The explanation is: src attribute basically SPECIFIES a path to the audio file. It is also used by element which indicates where the audio file is located. Autoplay attribute starts playing audio automatically, loop plays audio again after it FINISHES.
8.

For grouping form controls we can use ___________(a) (b) (c) (d) The question was posed to me in an online interview.The question is from Working with Forms & Minification topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The CORRECT option is (b)



Easy EXPLANATION: For grouping form controls together we USE
element. Fieldset is shown with a line AROUND EDGE. Appearance can be adjusted by CSS.
9.

CSSMin is written in ___________(a) C++(b) Java(c) PHP(d) CI have been asked this question at a job interview.I would like to ask this question from Working with Forms & Minification in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right option is (b) Java

To ELABORATE: CSSMin is written in Java. It preforms CONVERSION of lowercase, ordering of PROPERTIES, replacement of names with numeric or hex equivalents. E.g. font-weight:BOLD can be written as font-weight: 600, color: black to color: #000.

10.

Which of the following is not the storageEvent interface?(a) event.newValue(b) event.url(c) event.key(d) event.clearI got this question in final exam.This intriguing question originated from Web Storage topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct choice is (d) event.clear

For EXPLANATION I WOULD say: There are many storgeEvent interfaces like event.key, event.newValue, event.url, event.oldValue, event.storageArea. Event.key RETURNS the key if the storage ITEM is changed, event.oldValue and event.newValue returns old VALUE and the new value of the key whose value has been changed. Event.url returns the URL of a document which has been changed.

11.

In sessionStorage object data __________(a) is not deleted after the browser has been closed(b) can be seen but can’t edit(c) can be seen as well as edit(d) is deleted after the browser has been closedI have been asked this question in an online interview.The above asked question is from Web Storage in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct option is (d) is DELETED after the browser has been closed

To EXPLAIN: sessionStorage object works same as localStorage object EXCEPT the data is stored for one session only. When the USE closes the browser the data is deleted. SYNTAX is

12.

Which attribute is used with element?(a) multiple(b) selected(c) name(d) valueI had been asked this question in unit test.Question is from Input Types for Forms topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct option is (a) multiple

The best I can explain:

13.

Which attribute defines the file-select field?(a) file(b) checkbox(c) button(d) textThe question was asked during an interview.I would like to ask this question from Input Types for Forms topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right OPTION is (a) FILE

Explanation: file input type defines a file-SELECT field, also gives a “Browse” button for file UPLOADS. Syntax is . Checkbox gives the facility to select one or more than one options from the given choices. The button activates JavaScript code. The TEXT defines a single-line text field.

14.

YUI compressor is written in ____________(a) HTML(b) C++(c) C(d) JavaI got this question in a national level competition.This question is from Working with Forms & Minification in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» CORRECT OPTION is (d) Java

To explain I would SAY: YUI compressor is one of the best compressor. It is a command-line minifier which is written in Java. It can PROCESS CSS as well as JavaScript. It is simple to run it like-
15.

Which of the following is not the event of WebSocket API?(a) Close(b) Message(c) Send(d) ErrorThis question was addressed to me during an online exam.My question comes from Web Socket Communications topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct choice is (c) Send

The EXPLANATION: There are four WebSocket API, Close, Message, Error and OPEN. We can implement these events by using functions like ONMESSAGE, onopen, ONERROR, addEventListener and onclose. When there is an end of communication between client and server then onclose method is called.

16.

Form validation traditionally was performed by ___________(a) PHP(b) HTML(c) JavaScript(d) jQueryThe question was asked in an interview for internship.The question is from Working with Forms & Minification topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct answer is (C) JavaScript

Easy EXPLANATION: Form validation is checking if the form has been filled CORRECTLY. Traditionally it has been performed by JavaScript but now HTML5 is introducing validation. HENCE browser does all the work of validation. Validation reduces the amount of work for the server.

17.

Which of the following is not used with password attribute?(a) name(b) size(c) maxlength(d) minI have been asked this question at a job interview.My query is from Input Types for Forms in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct option is (d) min

The BEST I can explain: password is the attribute that creates a TEXT box which is similar to the single line text input, but the characters are blocked out. They are hidden due to the privacy of the user. The NAME attribute with a password set the name of the password input, size and maxlength attributes define the size and maximum length of the text box which is to be USED for the password.

18.

month attribute defines ___________(a) the only month(b) month and year(c) date(d) date and timeThis question was addressed to me by my school principal while I was bunking the class.My question is taken from Input Types for Forms topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right choice is (b) MONTH and year

Best explanation: month and year are defined by month attribute. It does not DEFINE the time zone. The SYNTAX is Anniversary (month and year) ., DATE attribute DEFINES the date, datetime-local defines date and time but no time zone.

19.

Which of the following is not the attribute for element?(a) controls(b) src(c) preload(d) widthThis question was posed to me in final exam.Question is from Audio and its MIME Types topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right choice is (d) WIDTH

For explanation I would say:

20.

What is the work of async attribute?(a) It influences script loading(b) It gives a label to the menu(c) It validates form data(d) Enables a set of extra restrictions on any contentI have been asked this question during an online exam.This intriguing question comes from Elements and Attributes to Support Web Applications in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct answer is (a) It INFLUENCES script loading

The EXPLANATION: Async is the new ATTRIBUTE of the

21.

Which one is not a very good developer support?(a) Opera(b) Internet Explorer(c) Firefox(d) ChromeI have been asked this question in an internship interview.My question is from Web Socket Communications in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct ANSWER is (b) INTERNET Explorer

Easiest explanation: FIREFOX, CHROME and Opera are the very good browser in terms of developer support. They have various built-in TOOLS for the interaction of client-side and resources. It is also very helpful for security purposes.

22.

Which one has the most potential for minification?(a) JavaScript(b) CSS(c) HTML(d) PHPI had been asked this question in examination.My question is based upon Working with Forms & Minification topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right choice is (a) JAVASCRIPT

The explanation: Among the four languages JavaScript, PHP, HTML and CSS, JavaScript has the most potential for MINIFICATION. In JavaScript whitespaces and comments are REMOVED. Windows-style line breaks (CRLF) is converted to UNIX-style breaks (LF). Moreover, VARIABLE names can ALSO be shortened.

23.

How does the color attribute work?(a) Changes color of the text(b) Changes background color(c) The color picker is defined by it(d) Changes color of the text as well as backgroundI got this question in exam.Question is taken from Input Types for Forms in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The CORRECT CHOICE is (c) The color picker is defined by it

The explanation: color is the attribute of element introduce by HTML5. It DEFINES the color picker i.e we can SELECT a color of our choice from the color picker. SYNTAX is Select the color that you want:

24.

Which property of SVG restricts the region to which paint can be applied?(a) animateTransform(b) clip-Path(c) linearGradient(d) radialGradientI had been asked this question during an interview.The question is from Scalable Vector Graphics in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» CORRECT choice is (b) clip-Path

Easy EXPLANATION: Allowing animation to control translation, scaling or rotation is done by animateTransform element. A CLIPPING path is defined by clip-path element. A clipping path is defined with a clipPath element. A clipping path is used/referenced using the clip-path property. A radialGradient lets AUTHORS define radial gradients to fill or stroke GRAPHICAL elements.
25.

Which element(s) represents a section of a document that links to other documents?(a) navigation(b) anchor tag(c) nav(d) optionThis question was posed to me by my college professor while I was bunking the class.The doubt is from Major HTML5 Themes topic in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct CHOICE is (c) nav

Easy explanation: The nav element REPRESENTS a section of a page that links to other PAGES or to parts WITHIN the page: a section with navigation links.

26.

Which element represents marked or highlighted text for reference purposes?(a) highlight(b) mark(c) strong(d) blinkThe question was asked during an online exam.I want to ask this question from Major HTML5 Themes topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct choice is (b) mark

The explanation is: Highlight element is used to highlight a particular text when used in a document. STRONG element specifies the importance of text. The mark element represents a run of text in one document marked or HIGHLIGHTED for reference purposes, DUE to its relevance in another context. An ENCLOSED text which FLASHES later on is created by blink element.

27.

The World Wide Web’s markup language has always been HTML.(a) True(b) FalseThe question was asked by my college director while I was bunking the class.Origin of the question is Major HTML5 Themes in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» CORRECT answer is (a) True

To explain I would say: The World Wide Web’s markup language has ALWAYS been HTML. HTML was primarily designed as a language for semantically describing scientific documents, although its general design and adaptations over the years have enabled it to be USED to describe a NUMBER of other TYPES of documents.
28.

Which compressor gives maximum GZIPPED compression?(a) YUI(b) JSMin(c) Packer(d) Closure(advanced)I have been asked this question in an international level competition.I'd like to ask this question from Working with Forms & Minification in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right option is (a) YUI

Explanation: YUI compressor gives maximum GZIPPED compression i.e. 21 out of 122. JSMin gives 23 out of 122, Closure(SIMPLE) gives 21 out of 122, Closure(advanced) gives 18 out of 122, PACKER gives 23 out of 122. There is also REDUNDANCY DUE to GZIP compression.

29.

Which of the following is not associated with web socket communication?(a) https(b) wss(c) ws(d) httpI have been asked this question in quiz.This intriguing question comes from Web Socket Communications topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» CORRECT choice is (d) http

Explanation: For OPENING WebSocket we CALL WebSocket constructor. The syntax is
30.

Which attribute is not used for the radio type?(a) name(b) value(c) checked(d) selectedThis question was posed to me in an interview for job.My enquiry is from Input Types for Forms topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct option is (d) SELECTED

For explanation: When we want to pick ONE option from the given many OPTIONS we use radio TYPE. NAME attribute sent the value of the option selected to the server. Value attribute indicates the value that has been sent to the server for the selected option. The checked attribute indicates that which value should be selected on the loading of the page.

31.

How image attribute works?(a) Sets an image background(b) Set an image as submit button(c) Set an image anywhere on the page(d) Bring default image to the pageThe question was posed to me in unit test.Question is taken from Input Types for Forms topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct OPTION is (b) Set an image as SUBMIT button

To explain: the image input type set an image as submit button. The syntax is this sets the image provided by url as the submit button. Input type image sends the X and Y COORDINATES of click and HENCE the image is activated by CLICKING the submit button.

32.

_______ drawings can be dynamic and interactive.(a) Canvas based(b) SVG(c) CSS3(d) JavaScriptI got this question in a national level competition.My query is from Scalable Vector Graphics topic in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct choice is (b) SVG

Explanation: Scalable Vector Graphics (SVG) is an XML-based vector IMAGE FORMAT for two-dimensional graphics with SUPPORT for INTERACTIVITY and animation. The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. SVG images and their behaviors are defined in XML text files.

33.

How many levels of headings HTML has?(a) 6(b) 3(c) 7(d) 2I have been asked this question by my school teacher while I was bunking the class.Query is from HTML5: Beyond Markup in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» RIGHT OPTION is (a) 6

Explanation: HTML has six “LEVELS ” of headings.

is USED for main headings,

is used for SUBHEADINGS. There is no other levels other than

,

,

,

,

,
34.

Which is the new attribute of element that is used to change the appearance of checkbox?(a) Indeterminate(b) Media(c) EI(d) TargetThe question was asked in unit test.The doubt is from Elements and Attributes to Support Web Applications topic in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct ANSWER is (a) INDETERMINATE

Easy explanation: The indeterminate is ACTUALLY not an attribute, it is the PROPERTY of checkbox which can be change via JAVASCRIPT, e.g. Var checkbox=document.getElementById(“any-checkbox”); Checkbox.indeterminate=true;

35.

Which of the following returns a number of value pairs?(a) storage.key(n)(b) storage.length(c) storage.setItem(key,value)(d) storage.clear()I had been asked this question in class test.This intriguing question originated from Web Storage in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct option is (b) storage.length

Explanation: storage.length returns number of value PAIRS that are CURRENTLY present in the LIST, storage.key(n) returns name of NTH key from the list, storagesetItem(key,value) sets the value which is identified by key to value, storage.clear() empties the list which is associated with VALUES.

36.

Which of the following is the wire protocol for WebScoket?(a) RFC6455(b) RFC6477(c) RFC6567(d) RFC8967This question was posed to me in homework.I'm obligated to ask this question of Web Socket Communications topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct answer is (a) RFC6455

For explanation: Wire protocol is HANDSHAKING and DATA TRANSFERRING between server and client. It is the RFC6455. Chrome for ANDROID and Chrome are compatible with RFC6455. It includes binary messaging also. Firefox version 11 and Internet Explorer 10 is also compatible with this.

37.

What can not be done by controls attribute?(a) playback(b) resume playback(c) pause playback(d) loopingI have been asked this question by my school principal while I was bunking the class.I'm obligated to ask this question of Audio and its MIME Types in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct choice is (d) looping

To explain I would say: Controls attribute of

38.

SVG also stands for Scalar Vector Graphics.(a) True(b) FalseThis question was addressed to me during an interview for a job.The question is from Scalable Vector Graphics topic in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct answer is (b) False

To explain I would say: SVG STANDS for Scalable VECTOR GRAPHICS.

39.

Subtitle tracks and caption tracks to be specified for audio and video elements can be added using which of the following element?(a) sink(b) track(c) stable(d) captionI have been asked this question in an online interview.The origin of the question is Major HTML5 Themes topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct OPTION is (b) track

To elaborate: The track element ENABLES SUPPLEMENTARY MEDIA TRACKS such as subtitle tracks and caption tracks to be specified for audio and video elements.

40.

A ____________ element must have a start tag but must not have an end tag.(a) details(b) command(c) code(d) both details and commandThe question was asked by my college professor while I was bunking the class.Query is from Major HTML5 Themes in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right ANSWER is (B) command

For explanation: The command TAG is NEW in HTML5 and specifies a normal command with an action. Details has END tag.

41.

Which of the following type attributes of input element defines control for entering a telephone number?(a) mob(b) tel(c) mobile(d) telephoneThis question was addressed to me by my school principal while I was bunking the class.My query is from Major HTML5 Themes in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct choice is (b) tel

For explanation: The input element with a type attribute WHOSE VALUE is “tel” REPRESENTS a one-line plain-text edit control for ENTERING a TELEPHONE number.

42.

Which of the following is not an empty element.(a) (b) (c) (d) I got this question during an online interview.I'd like to ask this question from HTML5: Beyond Markup in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» CORRECT ANSWER is (c)

Easiest explanation: There are a few elements that do not have any words between an opening and closing tag. They are known as empty elements. An empty element usually has only ONE tag. Before the closing ANGLED BRACKET of an empty element, there will often be a space and a forward slash.
43.

All elements are identified by their __________ and are marked up using either start tags and end tags or self-closing tags.(a) attribute name(b) tag name(c) class name(d) none of the mentionedThe question was asked by my college director while I was bunking the class.This intriguing question comes from Major HTML5 Themes topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct option is (b) TAG name

The explanation: The ATTRIBUTE name DESCRIBES name of element. The tagName property returns the tag name of the element. In HTML, the returned VALUE of the tagName property is always in UPPERCASE. Name of CLASS is returned by class name.

44.

What is the use of tag?(a) To create horizontal rule between sections(b) To create a line break(c) To create vertical rule between sections(d) For making content appearance italicsThe question was posed to me in unit test.Origin of the question is HTML5: Beyond Markup topic in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer» RIGHT choice is (a) To CREATE horizontal rule between SECTIONS

To elaborate: To create a break between themes-such as CHANGE of topic in a book or a new scene in a play-you can add a horizontal rule between sections using
tag
45.

Which is not a new global attribute in HTML5?(a) Contenteditable(b) Contextmenu(c) Title(d) DraggableThis question was posed to me in quiz.My doubt is from Elements and Attributes to Support Web Applications topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct option is (c) Title

For explanation: Contenteditable, contextmenu, data, draggable, hidden, role, ARIA, spellcheck all are new global attributes INTRODUCED in HTML5. Class, dir, id, lang, STYLE, TABINDEX, title are the attributes of HTML4 and now specified as global in HTML5.

46.

Which element is used for inserting more than one audio file?(a) (b) (c) (d) This question was addressed to me in a national level competition.Query is from Audio and its MIME Types in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct choice is (a)

Easy explanation: <SRC> provides or states location i.e URL of audio file. For INSERTING more than one audio file, USE instead of src attribute between . This can be important because many browser SUPPORT different formats for audio. For example MP3 is supported by Chrome6+, Safari 5+.

47.

What does semantic markup not define?(a) provides extra information(b) where an emphasis is placed in a sentence(c) meaning of an acronym(d) that describes paragraphsI had been asked this question in an interview for job.This interesting question is from HTML5: Beyond Markup topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct choice is (d) that describes paragraphs

Easiest explanation: < Semantic MARKUP> which provides EXTRA information, such as where emphasis is placed in a sentence, that something you have written is a quotation, the MEANING of acronyms etc.

48.

Which of the following is not a web storage interface?(a) storage(b) window(c) storageEvent(d) privacyThis question was posed to me in an online quiz.My enquiry is from Web Storage topic in portion HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Correct choice is (d) privacy

Easiest explanation: There is only three web storage interface window, storage, and StorageEvent. Window OBJECT provides access to the LOCAL storage objects. Storage retrieves, set and REMOVE DATA from the domain. Storage event is fired when the storage area on a document’s window changes.

49.

What is the limit of character storage for chrome 23.0 in localStorage?(a) unlimited(b) none(c) 1021 k(d) 4.98 MI had been asked this question during an interview.My doubt stems from Web Storage topic in division HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

Right CHOICE is (B) none

Best explanation: We can’t STORE any character in localStorage in chrome 23.0, for chrome 18.0 it is unlimited i.e. can store any NUMBER of characters, for chrome 19.77 it is 1021 k, for chrome 22.0 it is 2.49 M, for chrome 24.0, 25.0, 27.0 it is 2.49 M, for chrome 28.0, 30.0, 31.0 and 31.1 it is 4.98 M.

50.

Which of the following file extension is not used for audio MIME?(a) .ogv(b) .aac(c) .wav(d) .webmI got this question in unit test.I'm obligated to ask this question of Audio and its MIME Types topic in section HTML Markup, Forms, Video, Audio & Other Multimedia of HTML

Answer»

The correct answer is (a) .OGV

Easiest explanation: For accessing audios in different browsers we can use various extensions like .aac, .mp1, .mp1, .m4a, .mp2, .mpg, .mp3, .mpeg, .oga, .ogg, .WAV, .webm. For video we have file extensions like .mp4, .ogv, .m4v, .webm. It is noticeable that some extensions are COMMON both in audio and video. So user should pay attention where to PUT these as PER the need.