a) Text input b) Text area c) Password input d) Submit button Answer: d Explanation: There are ...
View QuestionFor clearing all the settings which function should be called?
a) localStorage.remove(key) b) localStorage.clear() c) localStorage.remove() d) localStorage.clearAll() Answer: b Explanation: If we want to delete all ...
View QuestionWhich of the following is not the storageEvent interface?
a) event.newValue b) event.url c) event.key d) event.clear Answer: d Explanation: There are many storgeEvent interfaces like ...
View QuestionWhich of the following is invoked when it is not fired on window object?
a) removeItem() b) clear() c) setItem() d) getItem() Answer: d Explanation: When removeItem(), clear() and setItem() are ...
View QuestionWhich of the following returns a number of value pairs?
a) storage.key(n) b) storage.length c) storage.setItem(key,value) d) storage.clear() Answer: b Explanation: storage.length returns number of value pairs ...
View QuestionWhich of the following is not a web storage interface?
a) storage b) window c) storageEvent d) privacy Answer: d Explanation: There is only three web storage ...
View QuestionWhat is the limit of character storage for chrome 23.0 in sessionStorage?
a) 510 k b) unlimited c) 1021 k d) 2.49 M Answer: a Explanation: We can store ...
View QuestionWhat is the limit of character storage for chrome 23.0 in localStorage?
a) unlimited b) none c) 1021 k d) 4.98 M Answer: b Explanation: We can’t store any ...
View QuestionIn sessionStorage object data __________
a) is not deleted after the browser has been closed b) can be seen but can’t edit c) ...
View QuestionIn localStorage object data ________
a) is deleted after the browser has been closed b) is not deleted after the browser has been ...
View Question