NEW
Font size
WorksheetsEOPA Review
Total questions: 10
Worksheet time: 20mins
When running an app created with HTML5 in the Windows Metro Style UI, which process hosts the application?
explorer.exe
WWAHost.exe
What is the primary difference between localStorage and sessionStorage in HTML5?
localStorage is stored without a time limit, whereas sessionStorage is only available within the user's current session.
localStorage applies to only one user, sessionStorage applies to all concurrent users.
When using the <canvas> tag, which technique is used to draw the graphic to the page?
Only server side code can be used to draw on the the canvas element.
A scripting language (such as Javascript) is used.
JSON is used to send and receive data easily to and from the web server.
True
False
What is the purpose of JSON API?
Graphical processing inside of the web browser
Sending and receiving information from a web server through JavaScript
HTML5 includes which two history object methods to persist state information?
replaceState and pushState
pageState and pageHistory
What is the difference between an App Package and an App Container?
The App Container is the entire app packaged into a single file. This process is similar to archiving a large number of files to transfer them to another person. The App Package is the memory space allocated at runtime for the app on the user's local machine.
The App Package is the entire app packaged into a single file. This process is similar to archiving a large number of files to transfer them to another person. The App Container is the memory space allocated at runtime for the app on the user's local machine.
What code will create a CSS style that will modify the strong tag to apply blue color and add 60% transparency?
strong { color: rgba(0,0,255, 0.40); }
strong { color: rgba(0,0,255,60); }
What is jQuery?
A language specifically written to access databases
Lightweight, "write less, do more" JavaScript library
Which of the following is true of Scalable Vector Graphics?
SVG are static and cannot be animated
SVG are created purely in XML, and so require very little bandwidth compared to an actual file
