You create an interface for a touch-enabled application.
You discover that some of the input buttons do not trigger when you tap the screen. You need to identify the cause of the
problem. What are two possible causes? (Choose two.)
A D
You work as a senior developer at ABC.com. The ABC.com network consists of a single domain named ABC.com.
You are running a training exercise for junior developers. You are currently discussing the relative positioning scheme.
Which of the following is TRUE with regards to this positioning scheme?
B
Which JavaScript method is used to draw a circle on a canvas?
D
Which CSS code fragment centers an image horizontally?
D
You work as a senior developer at ABC.com. The ABC.com network consists of a single domain named ABC.com.
You are running a training exercise for junior developers. You are currently discussing a position property value that is used
when an element is positioned relative to the browser window.
Which of the following is the value being discussed?
B
You work as a senior developer at ABC.com. The ABC.com network consists of a single domain named ABC.com.
You are running a training exercise for junior developers. You are currently discussing a position property value that is used
when an element is positioned relative to the first positioned ancestor.
Which of the following is the value being discussed?
D
Which two are WebSocket events? (Choose two.)
B D
Explanation:
Following are the events associated with WebSocket object. Assuming we created Socket object:
Event, Event Handler, Description
* open
Socket.onopen
This event occurs when socket connection is established.
* message
Socket.onmessage
This event occurs when client receives data from server. error
Socket.onerror
This event occurs when there is any error in communication.
* close
Socket.onclose
This event occurs when connection is closed.
You work as a senior developer at ABC.com. The ABC.com network consists of a single domain named ABC.com.
You are running a training exercise for junior developers. You are currently discussing an HTML5 element that groups
related elements in a form.
Which of the following is the element being discussed?
D
Which three properties can be used with the TouchEvent object in the Safari touch API? (Choose three.)
C D E
The variable named "ctx" is the context of an HTML5 canvas object. What does the following code fragment draw? ctx.arc(x,
y, r, 0, Math.PI, true);
C