Our pass rate is high to 98.9% and the similarity percentage between our 98-375 study guide and real exam is 90% based on our seven-year educating experience. Do you want achievements in the Microsoft 98-375 exam in just one try? I am currently studying for the Microsoft 98-375 exam. Latest Microsoft 98-375 Test exam practice questions and answers, Try Microsoft 98-375 Brain Dumps First.
Q9. Which attribute prefills a default value for an input element in HTML5?
A. name
B. placeholder
C. autocomplete
D. required
Answer: B
Q10. Which two are WebSocket events? (Choose two.)
A. onconnect
B. onmessage
C. ondatareceived
D. onopen
Answer: 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.
Q11. Which HTML5 code fragment shows a way to validate numeric input as having a value from 1 to 100, inclusive?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D
Q12. Which two code segments declare JavaScript functions? (Choose two.)
A. varfunct= (a);
B. function Foo(a){
…
}
C. var a=new Foo();
D. Foo=function(a){
...}
Answer: C,D
Explanation: Example:
function add(x, y) {
return x + y;
}
var t = add(1, 2);
alert(t); //3
Example:
//x,y is the argument. 'returnx+y' is the function body, which is the last in the argument list.
var add = new Function('x', 'y', 'return x+y');
var t = add(1, 2);
alert(t); //3
Incorrect:
Not A: funct keyword not used in JavaScript
Q13. DRAG DROP
Match the HTML5 elements to the corresponding functions. (To answer, drag the appropriate HTML5 element from the column on the left to its function on the right. Each HTML5 element may be used once, more than once, or not at all. Each correct match is worth one point.)
Answer:
Q14. Which CSS position value is used to position an element relative to the browser window?
A. position: relative;
B. position: absolute;
C. position: static;
D. position: fixed;
Answer: D
Q15. The data in a specific HTML5 local storage database can be accessed from:
A. Different browsers on the same device.
B. Different browsers on different devices.
C. The same browser on different devices.
D. The same browser on the same device.
Answer: A
Q16. Which code fragment will display an image file while the video is downloading?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: B