Html miscellaneous
- Which is not the section of manifest?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
If the files are not in cache they come from a list of the files in the network. Cache is the default section. The files those are listed under this header are explicitly cached after downloading for the first time. If the resource is inaccessible then this section will be in use. There is no any rule to list these section, can be listed in any order.
- Which line is mandatory in cache manifest file?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
For offline access, there is a text file named cache manifest. It lists the resources of the browser. For enabling application cache for any app we must include manifest attribute inside an html tag of the document like <html manifest=”text.appcache”> this manifest should be included on every page that we want cached.
- Which of the following is not the benefit of cache application?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Application cache can be helpful in so many ways like we can browse offline, as the cached resources are at local level hence they load at faster speed, it also reduces the load of the server. Asynchronous is one of the problems with the use of application cache due to this the resources which are not required like JavaScript or images will also be downloaded.
- _____________ and elements in a document may be dragged using the application/x-moz-node type.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Dragging Nodes and elements in a document may be dragged using the application/x-moz-node type.
- A listener for the dragenter and dragover events are used to indicate valid drop targets, that is, places where dragged items may be dropped.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The dragover event is fired as the mouse is moving over an element when a drag is occurring. Much of the time, the operation that occurs during a listener will be the same as the dragenter event. When draggable element enters a drop target then dragenter event is occurred.