Microsoft.Certexpert.70-480.v2013-05-20.by.oho.71q.vcehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.htmlMicrosoft.Certexpert.70-480.v2013-05-20.by.oho.71q.vceToohttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-273239When people get in Limpopo they post such comments while some are focused on studying....Wednesday, July 22, 2015 4:58 PM UTtryhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-199524Can anybody tell the answer for:<br /> The page must look like this (dots stand for empty space): <br /> <br /> This is main contents. This <br /> is Section 1. The end of <br /> Section 1. The end of main <br /> contents. <br /> <br /> ...Section 2 <br /> ...contents <br /> <br /> The HTML is: <br /> <br /> &lt;html&gt; <br /> &lt;style&gt; <br /> #section1 { <br /> position: *choose*; <br /> } <br /> <br /> #section2 { <br /> /* choose position or float*/ <br /> position: absolute or relative; <br /> or float: right; <br /> <br /> top: 200px; <br /> left: -100px; <br /> width: 100; <br /> } <br /> &lt;/style&gt; <br /> &lt;div&gt; <br /> This is main contents. <br /> &lt;span id="section1"&gt;This is Section 1. The end of Section 1.&lt;/span&gt; <br /> &lt;span id="section2"&gt;Section 2 contents&lt;/span&gt; <br /> The end of main contents. <br /> &lt;/div&gt; <br /> &lt;/html&gt; <br /> <br /> <br /> thanksMonday, November 04, 2013 8:21 AM UTHakkı Buluthttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-195407this dump 50% valid, about 20 new questions<br /> passed with 930Saturday, October 12, 2013 7:56 PM UTarnab and deephttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-19464215.dont forget the order of link, visited, hover , active (i forgot :P)<br /> <br /> 16. I had a question with webworker and had to post a message,<br /> <br /> My answer was something like :<br /> var msg=document.getElementbyID("abc");<br /> $.post(socket.onmessage, function aab (msd) { } )<br /> <br /> <br /> 17.a question was like how to stop a web worker from main page. My answer was:<br /> <br /> 1. from the main page call the close() method of the web worker.<br /> 2.from the webworker call the close() methode of the main page.<br /> <br /> 18.there was a list which need to be sorted and then added back to the html. the html was like this:<br /> &lt;ul&gt;<br /> &lt;li&gt;HTML&lt;/li&gt;<br /> &lt;li&gt;CSS&lt;/li&gt;<br /> &lt;li&gt;Javascript&lt;/li&gt;<br /> &lt;/ul&gt;<br /> <br /> u have to sort the list. i dont remember the code.do check this.<br /> <br /> 19. there was a number of divs in an html page with some css associated with the divs. u have to change the css of all the divs.Tuesday, October 08, 2013 2:58 PM UTarnab and deephttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-19464113. An HTML was given something like<br /> <br /> E-mail: &lt;input type="email" name="userid" required&gt;&lt;br&gt;<br /> &lt;input type="submit" value="Submit"&gt;&lt;br&gt;<br /> &lt;input type="submit" formnovalidate value="Save"&gt;<br /> <br /> 3 questions with Yes/No options<br /> a) If you click submit without filling email error occurs - Yes<br /> b) If you hover over email it shows a message about the field - No<br /> c) If you click Save without fillinf email error occure - No<br /> <br /> 14.<br /> <br /> css was given for<br /> article {color :something}<br /> aside {color :something}<br /> article h4 {color :something} <br /> aside h4 {color :something}<br /> h4 {color: something}<br /> headline{color: something }<br /> <br /> html was something like<br /> <br /> &lt;article&gt;<br /> &lt;h4 class="headline"&gt; International News&lt;/h4&gt;<br /> &lt;aside&gt; &lt;h4&gt; New Developments &lt;/h4&gt;&lt;/aside&gt;<br /> &lt;h4&gt;Impact on Markets&lt;/h4&gt;<br /> &lt;/article&gt;<br /> <br /> <br /> questions were Yes/No type<br /> a)color of International news was something -<br /> b)color of New Developments was something<br /> c)color of Impact on Markts news was somethingTuesday, October 08, 2013 2:58 PM UTarnab and deephttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-19464010.<br /> <br /> | |<br /> | |<br /> |Start Of text. span1 starts|<br /> |here.span1 ends here. |<br /> | |<br /> | |<br /> | | <br /> | |<br /> | |<br /> | span2 |<br /> | | <br /> | |<br /> | |<br /> <br /> The html was<br /> <br /> &lt;p&gt;Start of text &lt;span1&gt;Span1 starts here &lt;span2&gt; span2 &lt;/span2 &gt;Span 1 ends here&lt;span1&gt;&lt;/p&gt;<br /> <br /> and the css was<br /> <br /> span1 : float : ??? (i selected left)<br /> <br /> span 2: position : ??? (i selected relative)<br /> <br /> 11. There was a canvas questionand you had to associate an event on the click over the canvas (radio button question)<br /> <br /> There was a javascript onload method<br /> where the canvas was defined as<br /> <br /> var canvas = document.getElementById("c"),<br /> context = canvas.getContext("2d");<br /> context.fillRect(10, 20, 200, 100);<br /> ????????? ( I select canvas.click=function-name)<br /> Check this out<br /> <br /> 12. a question came with html as<br /> <br /> &lt;section&gt;<br /> &lt;h1&gt; &lt;/h1&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;/section&gt;<br /> <br /> &lt;section&gt;<br /> &lt;h2&gt; &lt;/h2&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;article&gt; &lt;/article&gt;<br /> &lt;/section&gt;<br /> <br /> I had to apply all the the first article with a css<br /> answer was article:first-of-typeTuesday, October 08, 2013 2:57 PM UTarnab and deephttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-1946397. A JSON had to be parsed and added to the table.like<br /> var a=$.parseJSON(jsonobj);<br /> $.each(a,function(key,val))<br /> $(#MyTable).after("&lt;tr&gt;&lt;td&gt;key&lt;/td&gt;&lt;td&gt;val&lt;/td&gt;&lt;tr&gt;")<br /> <br /> 8. An Xml was given of books<br /> &lt;book genre="abc"&gt;<br /> &lt;title&gt; def &lt;/title&gt; <br /> &lt;author&gt; def &lt;/author&gt;<br /> .<br /> &lt;book&gt;<br /> <br /> had to arrange codes to find out the genre and title<br /> <br /> ans: node=something.getSingleNode("//book");<br /> genre= node.getAttribute("genre");<br /> node=node.firstChild;<br /> title= node.nodevalue;<br /> <br /> 9.had a question with custom events name orderlisting<br /> answer was something like;<br /> <br /> a) var orderlisting =document.getElementbyID("orders")<br /> <br /> b) orderlisting.addEventListener("orderlistingevent",Showorderscount)<br /> <br /> c) orderlisting.dispatchEvent(new custom event<br /> {<br /> detail: {order count=5;}<br /> bubble: false;<br /> cancellable: true<br /> })<br /> <br /> had to make sure that the event was cancellable and other dom elements didnt know about the event and the event contained a order count dataTuesday, October 08, 2013 2:56 PM UTarnab and deephttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-194638. A JSON had to be parsed and added to the table.like<br /> var a=$.parseJSON(jsonobj);<br /> $.each(a,function(key,val))<br /> $(#MyTable).after("&lt;tr&gt;&lt;td&gt;key&lt;/td&gt;&lt;td&gt;val&lt;/td&gt;&lt;tr&gt;")<br /> <br /> 8. An Xml was given of books<br /> &lt;book genre="abc"&gt;<br /> &lt;title&gt; def &lt;/title&gt; <br /> &lt;author&gt; def &lt;/author&gt;<br /> .<br /> &lt;book&gt;<br /> <br /> had to arrange codes to find out the genre and title<br /> <br /> ans: node=something.getSingleNode("//book");<br /> genre= node.getAttribute("genre");<br /> node=node.firstChild;<br /> title= node.nodevalue;<br /> <br /> 9.had a question with custom events name orderlisting<br /> answer was something like;<br /> <br /> a) var orderlisting =document.getElementbyID("orders")<br /> <br /> b) orderlisting.addEventListener("orderlistingevent",Showorderscount)<br /> <br /> c) orderlisting.dispatchEvent(new custom event<br /> {<br /> detail: {order count=5;}<br /> bubble: false;<br /> cancellable: true<br /> })<br /> <br /> had to make sure that the event was cancellable and other dom elements didnt know about the event and the event contained a order count dataTuesday, October 08, 2013 2:55 PM UTarnab and deephttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-194554We passed the exam yesterday with 953. Got around 30-35 qsn common. Read Helper's comments.<br /> <br /> Apart from the comments some new questions were<br /> <br /> 1. access private method using priviledged class. Read code of the priveledged class.I got a drag drop and had to arrange the code. Guessed it :P<br /> <br /> 2.IsNAN() -2, "5", 2.3<br /> <br /> 3.A question on drag and drop an element.The javascript of that was just something.setData('text',e.something.id) in the first dropdown<br /> <br /> and var id=something.getData('text') in the second drop down<br /> <br /> 4. func1() inherits from func2(). How to determine?<br /> func1.isInstanceOF(func2)<br /> func2.isInstanceOF(func1)<br /> func1.isPrototypeOF(func2)<br /> func2.isPrototypeOF(func1)<br /> <br /> 5. set all inputs with class name ending with xxx<br /> answer is input[xxx$]<br /> <br /> 6. func1()<br /> {<br /> var a=1000; &lt;-- 1st block<br /> func2()<br /> {<br /> var a=800; &lt;-- 2nd block<br /> func3()<br /> {<br /> var a=400; &lt;-- 3rd block<br /> alert(a)<br /> }<br /> alert(a)<br /> func1(); &lt;-- 4th block<br /> }<br /> alert(a);<br /> }<br /> <br /> The four blocks were missing had to fill such that it displays the greatest first and smallest last.Tuesday, October 08, 2013 6:27 AM UTLeohttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-194354I passed exam today. This dump is very useful. My scope is 976. I have many new questions. <br /> <br /> - custom javascript event; <br /> - question with isNaN function; <br /> - questions posted Helper; <br /> -one question with geolocation.watchPosition; <br /> - one question with -ms-flexbox<br /> - very difficult and confused question with WebSocket and more. <br /> <br /> Exam was very difficult. I take 2 hour. Now my head throbs all over the placeMonday, October 07, 2013 10:24 AM UTTThttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-194249Passed the exam. Most questions from dumps. Got nearly 20-25 new questions.<br /> <br /> Got new questions on followings :<br /> - Geo location ( get location and speed) - 2 question<br /> - CSS selectors ( few yes/No questions )<br /> - Custom Java script event ( have to drag and drop codes to create event)<br /> - Create custom font ( already custom font is created, but customer complan instead of custom font display default font. solve this problem (need to drag & drop code)<br /> - validate ssl in input box. ( what is the property to use this validation. (text type or pattern . )<br /> - question from isNaN function.<br /> - read data receive from json object.<br /> <br /> read the comments of others. got several questions from them as well.Sunday, October 06, 2013 2:57 PM UTV.Jhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-19419470% questions on there. still was able to pass with 950+Sunday, October 06, 2013 12:57 AM UTJohn Doehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-193304Passed earlier this week - 80% valid ;-)Tuesday, October 01, 2013 3:46 PM UTDavidhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-192832Can you send some new questions ?Monday, September 30, 2013 10:52 AM UTsureshhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-192580Valid, but 16 new questions, passed with 930.Sunday, September 29, 2013 1:20 PM UTShivahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-19250230 Questions ValidSunday, September 29, 2013 4:15 AM UTlambhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-19248750% valid. 58 questions, tight time, score 953<br /> The comments from Helper are very useful.<br /> SOAP $ajax (type: . ContentType: . dataType:. data: .) Fill in .<br /> rotate circle 2d rotate transformSunday, September 29, 2013 1:32 AM UTkotoboyhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-19208050% valid, about 20 new questions.Friday, September 27, 2013 5:54 AM UTserdthttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-192000there was the ask with 3 no's or yes about blue or othr box i ask all with no, was right.Thursday, September 26, 2013 6:27 PM UTserdthttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-191998dump i to 50% validThursday, September 26, 2013 6:23 PM UTmustaphahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-190739valid dump passed last week with 853Saturday, September 21, 2013 1:37 PM UTAdnanhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-190572These dumps worked for me in Dubai, got more than 900 maksFriday, September 20, 2013 3:30 PM UTEvgenyhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-189072I'm not sure I remember the questions correctly, please forgive me if cause you trouble. Good luck! :)Thursday, September 12, 2013 2:32 PM UTEvgenyhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-189071The page must look like this (dots stand for empty space):<br /> <br /> This is main contents. This <br /> is Section 1. The end of <br /> Section 1. The end of main <br /> contents. <br /> <br /> ......Section 2 <br /> ......contents<br /> <br /> The HTML is:<br /> <br /> &lt;html&gt;<br /> &lt;style&gt;<br /> #section1 {<br /> position: *choose*;<br /> }<br /> <br /> #section2 {<br /> /* choose position or float*/<br /> position: absolute or relative;<br /> or float: right;<br /> <br /> top: 200px;<br /> left: -100px;<br /> width: 100;<br /> }<br /> &lt;/style&gt;<br /> &lt;div&gt;<br /> This is main contents.<br /> &lt;span id="section1"&gt;This is Section 1. The end of Section 1.&lt;/span&gt;<br /> &lt;span id="section2"&gt;Section 2 contents&lt;/span&gt;<br /> The end of main contents.<br /> &lt;/div&gt;<br /> &lt;/html&gt;<br /> <br /> None of the options for #section2 looked quite right to me. Pay attention to the negative left.Thursday, September 12, 2013 2:29 PM UTEvgenyhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-189070Will the text fill all the columns and rows? Will the blue box be in the center? (see http://msdn.microsoft.com/en-us/library/ie/hh673558%28v=vs.85%29.aspx)<br /> <br /> &lt;html&gt;<br /> &lt;style&gt;<br /> #grid {<br /> display: -ms-grid;<br /> -ms-grid-columns: 100px 100px 100px;<br /> -ms-grid-rows: 50px 50px 50px;<br /> }<br /> <br /> #text {<br /> -ms-grid-row: 1;<br /> -ms-grid-column: 1;<br /> -ms-grid-column-span: 3;<br /> -ms-grid-row-span: 3;<br /> }<br /> <br /> #bluebox {<br /> background: blue;<br /> -ms-grid-row: 2;<br /> -ms-grid-column: 2;<br /> -ms-wrap-flow: auto;<br /> }<br /> &lt;/style&gt;<br /> &lt;div id="grid"&gt;<br /> &lt;div id="text"&gt;<br /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. <br /> &lt;/div&gt; <br /> &lt;div id="bluebox"&gt;<br /> &lt;/div&gt; <br /> &lt;/div&gt;<br /> &lt;/html&gt;Thursday, September 12, 2013 2:25 PM UTEvgenyhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-189067The dump and the comments to the dump are sufficient to pass the exam. Thanks to everybody!<br /> However, there were some new questions.Thursday, September 12, 2013 2:22 PM UTNikahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-188294One of tasks about function creation.<br /> There is a list &lt;ul&gt;&lt;li&gt;&lt;/li&gt;..&lt;/ul&gt; and there is an array with elements. You need to get elements from the list, sort them and add to the end of the array.Sunday, September 08, 2013 9:43 AM UTNikahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-188292Passed, 976.<br /> <br /> About 25 questions are new. Other questions are from this dump. The dump is valid. <br /> Some questions are from Helper from Poland, slav from Bosnia and Herzegovina and slavAli from Bosnia and Herzegovina. Thank you.<br /> <br /> Some questions <br /> - geolocation, if user change his location you need to show..<br /> - click event using "on", $(document).on(., .., ..)<br /> - isNan for string, expression (3*8), decimal, ..<br /> - xmlhttp.readyState==4 && xmlhttp.status==200<br /> - border-radius, text-shadow, different for -ms-grid-row..<br /> <br /> It is difficult to remember other questions, the idea of many of them is to create a function. You have several lines of code and you need to select correct lines and place them in appropriate order. <br /> <br /> It is difficult to pass the exam without good knowledge in js, css3.Sunday, September 08, 2013 9:32 AM UTbibivuihttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187766Can some one assist me with questions 10 and 11 from slaAli<br /> <br /> 10. Processing UI related things with web workers, what should they process (select 2): <br /> a. Long running graphic calculations <br /> b. long and large data localStorage write/writes <br /> c. long mathematical operations with looping through array <br /> d. applying DOM styles <br /> <br /> is the answer: a and c ?<br /> <br /> 11. iframe in page. User can enter comments in iframe. You should prevent attacks. Sandbox attribute is response <br /> <br /> Not clear with this question, is the answer sandbox="response"?Wednesday, September 04, 2013 4:10 PM UTslavAlihttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187683This is good vce 20 new questions<br /> 9. You get HTML with two text inputs int1 and int2 and two buttons Add and Divide. There is code:<br /> <br /> onerror = function () {alert(error)}<br /> <br /> function Add() { Int1.val() + int2.val()}<br /> <br /> function Divide() {<br /> <br /> if(isNAN(int1.val() || isNAN(int2.val())) throw ("Error")<br /> <br /> else return int1.val()/int2.val()} <br /> <br /> Three questions<br /> <br /> a. Add button is pressed and user entered 2 + 3. is result 5 - answer is no (because plus in this situation is string concatenation)<br /> <br /> b. Divide function (val1=3, val2=0 ) is error handler called. NO<br /> <br /> c. Divide function val1=3, val2='a' is onerror called. Yes<br /> <br /> 10. One question with the processing UI related things with web workers, what should they process (select 2):<br /> <br /> a. Long running graphic calculations<br /> <br /> b. long and large data localStorage write/writes<br /> <br /> c. long mathematical operations with looping through array<br /> <br /> d. applying DOM styles<br /> <br /> 11. iframe in page. User can enter comments in iframe. You should prevent attacks. Sandbox attribute is response<br /> <br /> 12. test for empty object. You have described DoWork function<br /> <br /> a. if no parameter passed it parses some xml<br /> <br /> b. if parameter is passed performs ajax call<br /> <br /> c. if no param and something empty opbject is returned???<br /> <br /> Correct answer Obj.length == 0(other options $.IsObjectEmpty().)<br /> <br /> 13. HTML input type='range' or type='date' for month input. Answer is range min=1 max=12Wednesday, September 04, 2013 5:33 AM UTBrunohttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187616this thump is not valid.Tuesday, September 03, 2013 4:03 PM UTslavhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187581About 20 new questions: <br /> . Css3. Question to create shadow on picture and text to go to new line in case of overflow. <br /> <br /> a. text-shadow: blue 1px 1px 1px 2px; <br /> <br /> b. word-wrap:break-word <br /> <br /> 2. JavaScript. Parse xml with AJAX legacy browsers too 6-7 bloks of code lineup <br /> <br /> (see http://www.w3schools.com/ajax/ajax_xmlhttprequest_create.asp): <br /> <br /> if (window.XMLHttpRequest) <br /> { <br /> xmlhttp=new XMLHttpRequest(); <br /> } <br /> else <br /> { <br /> xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); <br /> } <br /> <br /> xmlhttp.open("GET","ajax_info.txt",true); <br /> xmlhttp.send(); <br /> xmlDoc = xmlhttp.responseXml <br /> // set the div's values from xmlDoc <br /> <br /> <br /> 3. Create your JS library with private method _private() that can not be called directly. <br /> <br /> a. Answer is to create create privileged method that calls _private method (http://javascript.crockford.com/private.html) <br /> <br /> 4. -ms-grid 3 cols 3 rows. Div with class Bluebox in col:2 row:2 and div content in col:1,row:1, col-span 3, row-span 3. Three questions is 1. div content around bluebox 2. Bluebox in fixed position 3. Div content spans all cells. All yes <br /> <br /> 5. You have html table with header and few rows. And css set <br /> <br /> a. Table border is set <br /> <br /> b. tr:nth-child(odd) background-color: red <br /> <br /> c. td:nth-oftype(even) background-color: blue <br /> <br /> three questions about: color of first row (red), color of second cell in firs row (red), color of 2nd cell in third row (blue) <br /> <br /> 6. JS code. Create custom event on element. Create and dispatch event with custom info one liner. bubbles= false, cancelable: true. <br /> <br /> Answer like: http://www.sitepoint.com/javascript-custom-events/ <br /> <br /> 7. -ms-flexbox. Picture with boxes is given, <br /> <br /> need to be fixed size. Anwer is to select ones with pixels 100px 250px 100px 250px . <br /> <br /> 8. SVG scale circle to be greater by 50%. Answer is: var box = selectElembById("cicle") box.r = box.r*1.5;Tuesday, September 03, 2013 12:24 PM UTMoh Samhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187424@Zero from Germany,<br /> about 50% from this dumpMonday, September 02, 2013 11:43 AM UTMoh Samhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187402I passed today with 9531000 :)Monday, September 02, 2013 9:54 AM UTAnonymoushttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187086I passed the exam yesterday. The dump is valid. I got 39 questions from dump and I scored 884.Friday, August 30, 2013 3:09 PM UTJoao3000https://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-187044Passing today with 953.<br /> <br /> Questions:<br /> 1. Check the value of Contoso.Name (Undefined - Yes, all other options - No)<br /> 2. Input with javascript on focus and blur (Check if input are yellow on load - No, If input get value they have white color - Yes, third option i don't remember but i select - No)<br /> <br /> Javascript<br /> <br /> if (text1.value == null || text1.value = "")<br /> text1.color = yellow<br /> else<br /> text1.color = white<br /> <br /> 3. Two questions to select figure/figurecaption/figurecaption/figure<br /> 4. Two questions with throw new Error (id, message)<br /> 5. if (window.XMLHttpRequest) <br /> { <br /> xmlhttp=new XMLHttpRequest(); <br /> } <br /> else <br /> { <br /> xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); <br /> } <br /> <br /> xmlhttp.open("GET","ajax_info.txt",true); <br /> xmlhttp.send(); <br /> xmlDoc = xmlhttp.responseXml <br /> <br /> 6.SVG - Rotate a rectangle with animation<br /> Need to get rectangle<br /> Define speed of timer<br /> Call transform with rotate optionFriday, August 30, 2013 10:47 AM UTJohnsonhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-18703950% of questions came from this Dump and got passed.Friday, August 30, 2013 10:12 AM UTRosshttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-186761Dump is not valid. Can someone post a new dump? ThanksWednesday, August 28, 2013 8:27 PM UTZimhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-186563Passed today with 1000. Thanks very much for the dump which is very helpful. 20 more new questions.Tuesday, August 27, 2013 6:51 PM UTpbhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-1863681000/1000 this stuff is very helpful! Nearly half of the questions were from this dump. But don't forget to look at all recommended areas for this certificate, for example function scope, web worker communication, handling JSON objects etc. Good luck :-)Monday, August 26, 2013 5:57 PM UTTonyhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-186313Scored 1000/1000 with latest dumps.Monday, August 26, 2013 10:50 AM UTStevenhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-186311My exam is booked for tomorrow.Monday, August 26, 2013 10:34 AM UTZerohttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-186170Attention please: silenskies want to sell the answer! :(Saturday, August 24, 2013 11:42 PM UTKing Kong Bonghttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-186030Still valid i Denmark (I had 958p of 1000, there were 58 questions totally in the test).<br /> <br /> At least 50% (propably more) of my examination questions was in this dump. Study specially @Helper's questions. _ALL_ of them appeared on my exam (thx @Helper).<br /> <br /> Oh, one new thing. There were one tricky question about user defined javascript events which I haven't seen here or anywhere before! <br /> <br /> If I remember it right you had to:<br /> * provide the new event with a (string) name (like 'click', 'mouseover', 'enter')<br /> * make the event cancelable<br /> * know how to prevent the target object from gossiping of other objects in the DOM structure that an event has occurred (bubbling ..)<br /> <br /> A very similar example of the particular question can be found here: <br /> * http://www.sitepoint.com/javascript-custom-events/<br /> (read the code section starting with "var event = new CustomEvent( ..")<br /> <br /> Good luck!Friday, August 23, 2013 4:56 PM UTMichaelhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-185964Hi guys and girls The exam above is valid about 20% come from this exam, study the last questions really hard even though they are a bit vague. I wrote today, the paper was a nightmare, I used all my time and scored 9780. Nothing in the above will prepare you for it, rely on your studies, the study guides mentioned in the previous responses really really helped and the dude called helper really helped. Thnx dude.Friday, August 23, 2013 9:51 AM UTmatt pricehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-185427Dump accurate for majority. Other questions on XMLHttpRequest (parsing XML), CSS 3 nth child selectors, JSONPTuesday, August 20, 2013 1:26 PM UTVichttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-185386still valid in Spain, passed today with 1000/1000. about 20 new question of 58Tuesday, August 20, 2013 9:31 AM UTdlhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-184482still valid in Vietnam, passed today with 976/1000. about 45% new questionWednesday, August 14, 2013 4:22 AM UTExhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-184443Passed the test with 1000 score. 35 questions were from this dump, the other 23 were new. Study what others have posted here before, it should be enough. I remember one new question that wasn`t posted here either: <br /> <br /> Q: Theres a code snipet and the requirements: if the value is greather then 500 show "DENIED". If the value is less than 300 show "aproved with warnings" and if the value is greater than 300 and less then 300 show "aproved". <br /> <br /> It`s a drag and drop question. Just drag if (foo &gt; 500), then else if (foo &lt;300) and else { }.Tuesday, August 13, 2013 7:16 PM UTrotivhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-184351Hi all, <br /> I just take the exam, from Portugal and this dump still valid, half of the questions where from here. I got 1000 score, I will tell What I remember.<br /> 1)Custom events: atach de event, create and dispatch the event with bubbles= false, cancelable: true<br /> 2)There was a big javascript function and you had to choose from board what will return the output variable. I put all NO, and the answer UNDEFINED-YES<br /> 3)There was only a &lt;p ./p&gt;, and you must choose the answer that changes the p, I choose the one with heigth<br /> 4)fill a table with json object, you have to create the function, one I choose was the each function to do that.<br /> 5)You have xml doc, and have to access to attributes and nodes and values.<br /> <br /> There were lots of questions to create functions with drag and drop. Not easy, I need some time to those questions. Good luck to all.Tuesday, August 13, 2013 10:51 AM UTHelperhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183887One question with the processing UI related things with web workers, what should they process (select 2):<br /> a) canvas operations<br /> b) long and large data localStorage write/writes<br /> c) long mathematical operations with looping through array<br /> d) applying DOM stylesFriday, August 09, 2013 4:24 PM UTHelperhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183841And one question with IsNaN function. You had two inputs and two buttons. One button called add() and another divide().<br /> In add you had alert(input1.val() + input2.val()). In divide you had checking with isNan and then perform input1.val() /input2().val. There was a global error handler that alert-ed with message. You should answer yes or not what happend if you provide 5 and 1, 5 and 0 and 5 and a. Be careful what happends if you add input1.val() and input2.val() as string.Friday, August 09, 2013 11:27 AM UTHelperhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-1838409. There was div with two ul-s<br /> &lt;div id="d"&gt;<br /> &lt;ul&gt; &lt;li&gt;/&lt;li&gt;<br /> &lt;ul&gt;.&lt;ul&gt;<br /> &lt;/div&gt;<br /> <br /> The task was to append the border with 1px the first ul on the page<br /> a) answer with $.each(div) then $.each ul<br /> b) answer with first-of-type()<br /> c) direct border="1px" assignment to the ul<br /> d) div#d &gt; ul css selector<br /> <br /> 10. One multiselectable with table that has header only, and yo have json like:<br /> <br /> &lt;table id="t"&gt;<br /> &lt;tr&gt;<br /> &lt;th&gt;Friut&lt;/tr&gt;<br /> &lt;th&gt;Quantity&lt;/tr&gt;<br /> &lt;/tr&gt;<br /> &lt;/table&gt;<br /> var fruits = {"bananas", 12, "oranges" 11}. You need to add them to the table<br /> he answer was like (IMHO):<br /> $.each(fruits, function(key,val){<br /> $(#t).after("&lt;tr&gt;" + key + "&lt;/tr&gt;" +.)<br /> });<br /> <br /> But were also <br /> $.Json()<br /> var data = parseJSON()<br /> append()<br /> <br /> 11. The most stupid was with images you had response from Ajax call with JSON format, and had function that was appending object to some div:<br /> function ImageData(image){<br /> // requested code<br /> }<br /> var imgageData = new ImageData(json);<br /> and $(#div).html(imageData.img);<br /> <br /> This question IMHO was not possible to do, beacause you could only select 3 answers but this required 4 to complete the task:<br /> 1) var img = document.CreateElement(img)<br /> 2) img.src = image.FileName;<br /> img.alt = image.Description;<br /> ???????? <br /> 3) return this.img;<br /> <br /> one missing part that was available was this.img = img that I could not set between 2 and 3 because of 3 elements limitation.<br /> others answers were <br /> return img.HTMLImage()<br /> this.img = document.CreateElement(img)<br /> this.img.Description = image.Description<br /> .Friday, August 09, 2013 11:23 AM UTHelperhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-1838394. One conceptual how to send data from contoso.com to fabricam.com. I do not remeber all answers:<br /> a) websockets<br /> b) CQRS?<br /> c) REST<br /> d) crossdomain.xml<br /> <br /> 5. There was svg and circle inside of it. You had to increase circle size by 1,5.<br /> a) c.r = c.r *1,5<br /> b) c.setAttribute()<br /> c) c.setTransformSthIdontRemember<br /> d) svg.setAttribute()<br /> <br /> 6. How to capture click on canvas<br /> 7. Change color of canvas when mouse is over or is movin with one event (i selected onmouseover, but there was onmousemove and onmouseout).<br /> 8. There was a form with checkbox and input field. The main taks was to disable input if checkbox is not checked. <br /> There was some part of css like<br /> input:placeholder {<br /> bg-color: gray<br /> }<br /> and i chose placeholder = disabled (http://www.w3schools.com/cssref/sel_disabled.asp)<br /> and the secod part was to disable this input by checkbox<br /> if(cheb.checked){<br /> i.disabled = false;<br /> }<br /> else{<br /> i.disabled = true;<br /> }Friday, August 09, 2013 11:22 AM UTHelperhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183838I hope this will help with preparation. I got 953/1000.<br /> 1. Question about how to get the data with ajax, the correct answer should be very similar <br /> (see http://www.w3schools.com/ajax/ajax_xmlhttprequest_create.asp):<br /> <br /> if (window.XMLHttpRequest)<br /> {<br /> xmlhttp=new XMLHttpRequest();<br /> }<br /> else<br /> {<br /> xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");<br /> }<br /> <br /> xmlhttp.open("GET","ajax_info.txt",true);<br /> xmlhttp.send();<br /> xmlDoc = xmlhttp.responseXml<br /> // set the div's values<br /> <br /> 2. There were 3 boxes that were one-by-one. In order to achieve the nice flow of them I selected flex-box attribute values<br /> - stretch and then<br /> - justify<br /> <br /> 3. Get the data from web service. The difference was with the Http method and the way you passed the arguments (here below is just the idea),<br /> a) $.ajax( url ="http://contoso.com/webservice.asmx/GetProducts", type ="POST", data ={ cat ='A'})<br /> b) $.ajax( url ="http://contoso.com/webservice.asmx/GetProducts", type ="SEND", data ={ cat ='A'})<br /> c) $.ajax( url ="http://contoso.com/webservice.asmx/GetProducts?cat='A'", type ="POST")<br /> d) $.ajax( url ="http://contoso.com/webservice.asmx/GetProducts?cat='A'", type ="SEND")<br /> <br /> I marked Post and data ={}Friday, August 09, 2013 11:22 AM UTwebfredhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183836Hi, I passed today with 930. I had 58 questions and like others almost the half were new ones. Some answer options from some questions coming from the dump has been changed. For example regarding the text- transform CSS property. 'capitalize' has been replaced to 'uppercase'.<br /> <br /> I had 4 to 5 questions about form validation. Read about the 'formonvalidate' attribute. 1 question concerned an iframe and sandbox. Read about the attribute sandbox='allow-scripts' and the difference to the attribute 'seamless'.<br /> <br /> I had 5 or 7 questions about JavaScript custom object syntax, JSON and Ajax. Also I had some larger text questions which has to be marked as yes or no. Like - do the above code raises an error?. <br /> <br /> good luck<br /> WebfredFriday, August 09, 2013 11:18 AM UTVianhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-18356660% valid in South Africa. +- 30 new questions. Make sure you know your JS/AJAX/JSON syntax.Wednesday, August 07, 2013 6:04 PM UTTPhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183428100% valid I get 930Wednesday, August 07, 2013 6:23 AM UTiSoohttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183379Me to please. <br /> <br /> csying @ naver.com<br /> <br /> Thanks.<br /> <br /> I am taking the exam this week ~ plz help~~~~~~~~Wednesday, August 07, 2013 12:16 AM UTMihailhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183278Passed today with score 1000. To prepare for Exam, I suggest to use<br /> http://geekswithblogs.net/WTFNext/archive/2012/10/08/exam-70-480-study-material-programming-in-html5-with-javascript-and.aspx<br /> and JumpStart.<br /> Additional you should to read about Drag & Drop,Tuesday, August 06, 2013 1:56 PM UTkevinhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183183Me to please.<br /> <br /> j2plus @ gmx.de<br /> <br /> Thanks.Tuesday, August 06, 2013 7:02 AM UTdamdsilvahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183128someone Can you please email me the pictures at damdsilva @ g mail. com. Thanks very much.Tuesday, August 06, 2013 12:31 AM UTJoaohttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183124Me to please.<br /> joao3000@gmail.com<br /> Thanks.Monday, August 05, 2013 11:18 PM UTMikehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183072Plz send me new questions too (michaelkaraz @ gmail.com) thanks a million.Monday, August 05, 2013 5:46 PM UTsureshhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-183065Hi, pls send me new questions or the pictures Fabio sent <br /> at sureshmalluri @ gmail.com, am writing soon. Thanks in advance.Monday, August 05, 2013 5:16 PM UTmphttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182979Hey! Guys, pls send me new questions or the pictures Fabio sent<br /> at zeemththw@gmail.com, am writing tomorrow. Thanx in advance.Monday, August 05, 2013 9:38 AM UTrotivhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182972Sorry, my email is vitoralves100@outlook.com.<br /> <br /> ThanksMonday, August 05, 2013 9:07 AM UTrotivhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182971I am taking the exam this week, Fabio or another person can email me the pictures of the exam or anything that helps. <br /> <br /> Thank you!!Monday, August 05, 2013 9:06 AM UThavhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182934Everyone, stop flooding!! @Fabio sent us 12 pictures: 4 pictures you can take from dump, 4 pictures don't clear. It has only 3 normal questions. Don't worry, new questions do not count!!Monday, August 05, 2013 6:13 AM UTJoycehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182909I done the teste yesterday. Are 58 questions, 21 new questions. This dump is valid!!! I take 1000 on test! =)Monday, August 05, 2013 1:55 AM UTviesulishttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182841Hi, can anyone send me newest questions for this exam, pls? email: viesulis1982@gmail.com. Thanks, a lot, in advice! <br /> <br /> ViesulisSunday, August 04, 2013 11:13 AM UTJoehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182823Hello can anyone send me new questions from Fabio at joemacmacjoe @ gmail .com? Thanks! <br /> JoeSunday, August 04, 2013 9:24 AM UTEneshttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182781Please does someone have the book "Microsoft 70-480 Exam Quick Study Guide - Weston Henry" ??Saturday, August 03, 2013 10:09 PM UTMJhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182738I wrote mine today, Got 953, dump is good, new questions were there also, am good in web development so it didn't cause much of a problem, read on Json.Saturday, August 03, 2013 1:17 PM UTdamdsilvahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182651@hav, I also need the new issues. please could someone send to damdsilva @ g mail. com . thank you!Friday, August 02, 2013 7:29 PM UTbibivuihttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182607@hav Can you kindly to share the new questions or the picture from Fabio. Thank you very much. my email: bibivui@hotmail.comFriday, August 02, 2013 3:00 PM UTdamdsilvahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182591I also need the new issues. please could someone send to damdsilva @ g mail. comFriday, August 02, 2013 1:39 PM UThavhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182536Hi everyone,<br /> <br /> Got 884. 15-20 new questions. The dump is enough to pass. Fabio pictures don't very helpful, only 1 question i had. Don't worry. It is easy to pass.Friday, August 02, 2013 9:47 AM UTskhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182490hey plz update the dump or mail me.Friday, August 02, 2013 5:40 AM UTHarshahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182280Hi anyone, please suggest me the updated questions. If possible, mail me at harsha.ped@gmail.comThursday, August 01, 2013 7:30 AM UTdamdsilvahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182187@Fabio or the guys who received the questions, <br /> Can you please email me the pictures at damdsilva @ g mail. com. Thanks very much.Wednesday, July 31, 2013 7:08 PM UTbivuihttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182181Im taking this exam this month and want to know if there are some more new questions. Pls Help!<br /> <br /> My email: bibivui@hotmail.comWednesday, July 31, 2013 6:44 PM UTannhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182170can anyone send me new questions at annmonteg@yahoo.com ? I'll be very grateful.Wednesday, July 31, 2013 6:21 PM UTVigneshhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182109When do we get the new dump for this test as so many people are posting that they faced new questionsWednesday, July 31, 2013 1:34 PM UTNasirhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182090Guys, i want to give Programming in HTML5 with JavaScript and CSS3<br /> please help me what i need to do..<br /> nasir.online90@gmail.com<br /> ThanksWednesday, July 31, 2013 11:58 AM UTDionhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-182015Can anyone mail me the new questions to dyanshadiz@gmail.com . It will be very helpful to me.Wednesday, July 31, 2013 6:57 AM UTNeha Jainhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181996Request you to share the 20 new questions. Please e-mail new questions to me @ nehajain24@rediffmail.comWednesday, July 31, 2013 5:15 AM UTchanghttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181945@Fabio or the guys who received the questions,<br /> Can you please email me the pictures at chang.iris @ g mail. com. Thanks very much.Tuesday, July 30, 2013 10:43 PM UTRizOzhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181822About 50% valid. New questions are mostly drag n drop. The dump give you good idea of the questions and you just need to have good programming logic to solve drag n drop questions!! Passed with 953 today.Tuesday, July 30, 2013 12:33 PM UTAshhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181649@Fabio: can you please email me the latest at dashwithash @ gmail.comMonday, July 29, 2013 8:27 PM UTExhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181547Can anyone send the new question to exgerth @ gmail . com, plz? My test is at august 1st.Monday, July 29, 2013 2:12 PM UTMikehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181508Pls I will be writing mine in few days time, any help will be appreciated, thanks, oshadami_mj@yahoo.comMonday, July 29, 2013 12:23 PM UTKorayhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181467Hello all <br /> @Fabio: can you please email me the pictures at the<br /> koray_ozdemir@msn.com <br /> Thank you!Monday, July 29, 2013 10:16 AM UTDmitriyhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181423Hello all<br /> Could you guys send the questions to me too :)<br /> dm.kazinov@gmail.com<br /> Thank you!Monday, July 29, 2013 7:45 AM UTswitchhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181408Hey all,<br /> <br /> I have this exam really soon and passing is extremely Important. If anyone has those new questions or the pictures please forward then to <br /> <br /> Jihaut@hotmail.co.uk and I will be extremely grateful. Thanks in advance. Once i have them I will share. <br /> <br /> :)Monday, July 29, 2013 5:59 AM UTleytonhttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181406@Fabio: can you please email me the pictures at the.great04@yahoo.com<br /> <br /> Thank you!Monday, July 29, 2013 5:56 AM UTHomer from Canadahttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181390Hi all, I will be writing an exam a few weeks, I would appreciate if you could share the new questions. Please email me at iamoutlook@yahoo.com.<br /> <br /> Thank youMonday, July 29, 2013 2:52 AM UTakashttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181054What type of new questions are you guys facing? are they from jquery, js, css.? People who passed can please discuss it here, it'd helpful for manyFriday, July 26, 2013 9:51 PM UTAuzihttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-181052Hi Guys am having the exam in a weeks time please,please and please email me the new updated questions to k.mathole@webmail.co.za or kag.mathole@gmail.com your help and co-operation will be highly appreciatedFriday, July 26, 2013 9:29 PM UTRookiehttps://www.examcollection.com/microsoft/Microsoft.Yesuse.70-480.v2013-05-20.by.oho.71q.vce.file.html#comment-180983@Fabio Hi, please kindly send new questions to me, I will have exam next week. devrookie@libero.itFriday, July 26, 2013 3:23 PM UT