I’ll keep things short and sweet in this post. The content below will cover all of the sections described in the “Skills Measured” section of the Microsoft article that describes the Microsoft Certification exam 70-480: Programming in HTML5 with JavaScript and CSS3. I was not surprised to find that the vast majority of the test topics are discussed on the following three sites: http://w3schools.org/, http://www.w3.org/, and http://jquery.com/. Since all three of these sites provide extremely reliable information, I attempted to stick with these three sites for all of the study guide materials. You will find that for the most part I was successful. Enough of my rambling though. Let’s get started.
Skills Measured
This exam measures your ability to accomplish the technical tasks listed below. The percentages indicate the relative weight of each major topic area on the exam. The higher the percentage, the more questions you are likely to see on that content area on the exam.
The information after “This objective may include but is not limited to” is intended to further define or scope the objective by describing the types of skills and topics that may be tested for the objective. However, it is not an exhaustive list of skills and topics that could be included on the exam for a given skill area. You may be tested on other skills and topics related to the objective that are not explicitly listed here.
Microsoft Learning (09/18/2012): http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-480#tab2
Exam Overview
I am proud to say that as of today I have passed this exam! Don’t get me wrong. I didn’t score any A+ score, but an 800 was enough to put me in the passing range, which isn’t too bad for a guy that works more in the CS (connected systems) world than on UI and CAD (custom application development). After passing the test, I wanted to provide some information around my experience on the subject matter, how much time I’ve spent studying, and the test itself to help readers better prepare for the test.
My Experience with HTML, CSS, and JavaScript
I started my career in the .NET stack as an ASP.NET Web Forms developer about 6-7 years ago. I spent about 4 years dealing heavily with the technology until I moved more of a connected systems / EAI developer. In those four years, I worked heavily with HTML, CSS, and JavaScript (specifically jQuery and the prototype JavaScript framework). In my final years of web development I spent some time with MVC. So altogether, about 1 year of explicit JavaScript, CSS, and HTML and about 3 years of HTML / JavaScript / CSS via Web Forms.
Training for the Test
I have been researching HTML5 for about a month now and stepped into hard core study mode for the test about a week ago. Altogether, I have spent somewhere in the range of 30 hours studying for the test.
Test Structure
In terms of structure, one feature that was new to me on the Prometric test was the interactive questions. Maybe I’m just out of the loop on the new testing structure, but this concept is new to me and I’m more familiar with standard multiple choice question and answer. Test consists of questions that force the test taker to drag and drop items onto a story board in order to describe code, order of operations, or layout views. Also contains the standard multiple choice A-D questions as well as multiple choice / multiple answer (check boxes) questions. The test is timed, but at no point did I feel rushed or stressed.
Test Content
The test content surprised me a bit. I was expecting the test to be focused predominantly on HTML5 and CSS3 new features. In fact, I was somewhat surprised as I put the study guide together as the topics seemed a bit more focused on general topics rather than new feature sets. This realization was confirmed after taking the test. Overall, I would say that most of the test focused on general HTML, CSS, and JavaScript features. Some features that I was tested on date back to the original early stages of HTML, such as prototypes and class extensions. Therefore, even if you’re a master of the new HTML5 features, I would recommend refreshing a bit on some of the core concepts including document.getElementById().
Sorry, but I yanked a section I had here previously. I’ve read through Microsoft’s test contract a few more times now and although I don’t feel that I was breaking any of the rules, the semantics used in the contract are a bit open ended. Therefore, I figured it would be safer to pull the content. Sorry folks! The rest of this study guide lays out the topics in more detail. These topics are pulled straight from the Microsoft site that discusses the test.
Implement and Manipulate Document Structures and Objects
This part is specified as 24% of the test content.
Show - Implement and Manipulate Document Structures and Objects
Create the document structure.
This objective may include but is not limited to: structure the UI by using semantic markup, including for search engines and screen readers (Section, Article, Nav, Header, Footer, and Aside); create a layout container in HTML
- HTML5 Tag Reference (W3Schools), <section> (W3Schools), <area> (W3Schools), <article> (W3Schools), <header> (W3Schools), <aside> (W3Schools)
The entirety of these links will help you with the section: “structure the UI by using semantic markup, including for search engines and screen readers (Section, Article, Nav, Header, Footer, and Aside)”
- HTML Layouts (W3Schools), and Document Outlines (Other: HTML Doctors)
Covers “create a layout container in HTML”
Write Code that Interacts with UI controls
This objective may include but is not limited to: programmatically add and modify HTML elements; implement media controls; implement HTML5 canvas and SVG graphics
Apply Styling to HTML Elements Programmatically
This objective may include but is not limited to: change the location of an element; apply a transform; show and hide elements
Implement HTML5 APIs
This objective may include but is not limited to: implement storage APIs, AppCache API, and Geolocation API
Establish the scope of objects and variables
This objective may include but is not limited to: define the lifetime of variables; keep objects out of the global namespace; use the “this” keyword to reference an object that fired an event; scope variables locally and globally
- Global Variables in JavaScript (Other: snook.ca)
Convers “scope variables locally and globally”
- JavaScript Closures (Other: jabbering.com)
Covers “define the lifetime of variables; keep objects out of the global namespace; use the “this” keyword to reference an object that fired an event; scope variables locally and globally”
Create and implement objects and methods
This objective may include but is not limited to: implement native objects; create custom objects and custom properties for native objects using prototypes and functions; inherit from an object; implement native methods and create custom methods
- JavaScript Native Objects (Other: yaldex.com)
Covers “implement native objects”
- Extending JavaScript Native (Other: javascriptweblog.wordpress.com)
Covers sections “create custom objects and custom properties for native objects using prototypes and functions” & “implement native methods and create custom methods”
- Classical Inheritance in JavaScript (Other: crockford.com)
Covers sections: “inherit from an object” & “implement native methods and create custom methods”
Implement Program Flow
This section is marked as 25% of the test.
Show - Implement Program Flow
Implement program flow
This objective may include but is not limited to: iterate across collections and array items; manage program decisions by using switch statements, if/then, and operators; evaluate expressions
Raise and handle an event
This objective may include but is not limited to: handle common events exposed by DOM (OnBlur, OnFocus, OnClick); declare and handle bubbled events; handle an event by using an anonymous function
Implement exception handling
This objective may include but is not limited to: set and respond to error codes; throw an exception; request for null checks; implement try-catch-finally blocks
Implement a callback
This objective may include but is not limited to: receive messages from the HTML5 WebSocket API; use JQuery to make an AJAX call; wire up an event; implement a callback by using anonymous functions; handle the “this” pointer
Create a web worker process.
This objective may include but is not limited to: start and stop a web worker; pass data to a web worker; configure timeouts and intervals on the web worker; register an event listener for the web worker; limitations of a web worker
- HTML5 Web Workers (W3Schools), and Using web workers (Mozilla)
Covers all topics: “start and stop a web worker”, “pass data to a web worker”, “configure timeouts and intervals on the web worker”, “register an event listener for the web worker”, and “limitations of a web worker”
Access and Secure Data
This topic spans 26% of the test
Show - Access and Secure Data
Validate user input by using HTML5 elements
This objective may include but is not limited to: choose the appropriate controls based on requirements; implement HTML input types (for example, , , ) and content attributes (for example, required) to collect user input
- HTML5 Input Type (W3Schools)
Covers sections: “choose the appropriate controls based on requirements”, “implement HTML input types and content attributes to collect user input”
- HTML5 New Form Attributes (W3Schools)
Covers “implement HTML … content attributes to collect user input”
Validate user input by using JavaScript
This objective may include but is not limited to: evaluate a regular expression to validate the input format; validate that you are getting the right kind of data type by using built-in functions; prevent code injection
Consume data
This objective may include but is not limited to: consume JSON and XML data; retrieve data by using web services; load data or get data from other sources by using XMLHTTPRequest
Serialize, deserialize, and transmit data
This objective may include but is not limited to: binary data; text data (JSON, XML); implement the JQuery serialize method; Form.Submit; parse data; send data by using XMLHTTPRequest; sanitize input by using URI/form encoding
Use CSS3 in Applications
25% of the test will consist of material discussed under this heading.
Show - Use CSS3 in Applications
Style HTML text properties
This objective may include but is not limited to: apply styles to text appearance (color, bold, italics); apply styles to text font (WOOF and @font-face, size, understudy fonts); apply styles to text alignment, spacing, and indentation; apply styles to text hyphenation; apply styles for a text drop shadow
- Styling Text (W3Schools)
Covers “apply styles to text appearance (color, bold, italics)” and “apply styles to text alignment”
- Styling Fonts (W3Schools) and CSS3 Fonts (W3Schools)
Covers “apply styles to text font (WOOF and @font-face, size, understudy fonts)”
- Styling Links (W3Schools)
Covers “apply styles to text hyphenation”
- CSS3 Text Effects (W3Schools)
Covers “apply styles to text appearance (color, bold, italics)” and “apply styles for a text drop shadow”
- CSS Selectors (W3Schools)
Covers “applies to all topics indirectly”
Style HTML box properties
This objective may include but is not limited to: apply styles to alter appearance attributes (size, border and rounding border corners, outline, padding, margin); apply styles to alter graphic effects (transparency, opacity, background image, gradients, shadow, clipping); apply styles to establish and change an element’s position (static, relative, absolute, fixed)
- CSS3 Borders (W3Schools) & CSS Border (W3Schools)
Covers “apply styles to alter appearance attributes (border and rounding border corners)”
- CSS Box Model (W3Schools)
Covers “apply styles to alter appearance attributes (size, border and rounding border corners, outline, padding, margin)”
- CSS Dimension (W3Schools)
Covers “apply styles to alter appearance attributes (size …)”
- CSS Outline (W3Schools), CSS Margin (W3Schools), & CSS Padding (W3Schools)
Covers “apply styles to alter appearance attributes (outline, padding, margin)”
- CSS3 Backgrounds (W3Schools)
Covers “apply styles to alter graphic effects (background image)”
- background-clip (W3Schools)
Covers “apply styles to alter graphic effects (clipping)”
- CSS Image Opacity (W3Schools)
Covers “apply styles to alter graphic effects (transparency, opacity)”
- CSS3 Text Effects (W3Schools)
Covers “apply styles to alter graphic effects (shadow)”
- CSS3 Gradient Backgrounds (W3Schools)
Covers “apply styles to alter graphic effects (gradients)”
- CSS Positioning (W3Schools)
Covers “apply styles to establish and change an element’s position (static, relative, absolute, fixed)”
Create a flexible content layout
This objective may include but is not limited to: implement a layout using a flexible box model; implement a layout using multi-column; implement a layout using position floating and exclusions; implement a layout using grid alignment; implement a layout using regions, grouping, and nesting
Create an animated and adaptive UI
This objective may include but is not limited to: animate objects by applying CSS transitions; apply 3-D and 2-D transformations; adjust UI based on media queries (device adaptations for output formats, displays, and representations); hide or disable controls
Find elements by using CSS selectors and JQuery
This objective may include but is not limited to: choose the correct selector to reference an element; define element, style, and attribute selectors; find elements by using pseudo-elements and pseudo-classes (for example, :before, :first-line, :first-letter, :target, :lang, :checked, :first-child)
- CSS Selector Reference (W3Schools) and Selectors – jQuery API (jQuery)
Covers “choose the correct selector to reference an element”
- Attribute selectors (W3C), ID selectors (W3C),, Type selectors (W3C),, and Selectors – jQuery API (jQuery)
Covers ”define element, style, and attribute selectors”
- Pseudo-elements and pseudo-classes (W3C) and Selectors – jQuery API (jQuery)
Covers ”find elements by using pseudo-elements and pseudo-classes (for example, :before, :first-line, :first-letter, :target, :lang, :checked, :first-child)”
Structure a CSS file by using CSS selectors
This objective may include but is not limited to: reference elements correctly; implement inheritance; override inheritance by using !important; style an element based on pseudo-elements and pseudo-classes (for example, :before, :first-line, :first-letter, :target, :lang, :checked, :first-child)
Additional Resources
Beyond the resources that I listed above, some of the comments have linked to some additional reference material that I found to be helpful as well. Thank you Manjunath for these references:
- Developing in HTML5 with JavaScript and CSS3 Jump Start:
http://www.microsoftvirtualacademy.com/tracks/developing-html5-apps-jump-start?WT.mc_id=MSLS_HTML5OfferMVA
- Another Study Guide
http://geekswithblogs.net/WTFNext/archive/2012/10/08/exam-70-480-study-material-programming-in-html5-with-javascript-and.aspx
Wrapping Things Up
I really hope that this study guide helps you as much as it has helped me. After you take the test, please be sure to update the comments and let me know if this guide was helpful. If you like this post, please share your favorite social network using the links below.
Your input is very valuable, thank you very much!!
Thanks a million. There is not much on the web that focuses on what is covered on this test. Great job!
Thank you Julian. If you’re planning to take obtain the MCSD certification, then stay tuned to my blog as I will discuss the other certifications for that track on here as well.
Hey man,
Great guide, I’m working through it
I found the following is a better guide for Web Sockets, the W3C link has a lot of techno-gubbin noise…
http://www.html5rocks.com/en/tutorials/websockets/basics/
Thanks Stuart! I’ve added that link to the post in the WebSockets section. Great information in that article.
thanks cris
your study guide has helped me absurdly
you’re the man!!
[...] objects, inheritance, WebSockets, Geolocation and some other topics. Another helpful resource is Chris’s blog post that tries to provide links for each measured skill defined in the exams [...]
[...] all. Recently, I wrote a study guide for the 70-480 exam (Programming in HTML5 with JavaScript and CSS3). I wanted to follow that up with another study guide for 70-486: Developing ASP.NET MVC 4 Web [...]
Great Material. Not much is available on the internet. Thanks
Chris what is the minimum score to be obtained to get certificate.
Hi Anuj, 700/1000 or better is passing
Hi all,
I recently registered for this test so I can take it next month.
This is great information thanks
If you still have not registered use the promo code HTMLJMP
For FREE try at this. Also remember that second shot offer is still a thing.
Good luck
Chris,
Thanks a ton. Your blog helped me to clear the certification today.
For the rest of the guys planning to take this exams. I went through the above material and also….
1. Developing in HTML5 with JavaScript and CSS3 Jump Start.
http://www.microsoftvirtualacademy.com/tracks/developing-html5-apps-jump-start?WT.mc_id=MSLS_HTML5OfferMVA
2. http://geekswithblogs.net/WTFNext/archive/2012/10/08/exam-70-480-study-material-programming-in-html5-with-javascript-and.aspx
Thanks and Regards,
Manjunath
Thanks Manjunath. Those are both very good resources. I will include them in the main post.
Hi Chris!
Thank you very much for you contribution! Have passed the exam today.
Thank you for sharing. I will be taking this exam early next year and your post will be such a great help!
Hello, thanks for the list. Do you need to write any code in the exam? Or just choose from the list the elements and make it?
Thanks Cris!
Why are you reffering to the XML-DOM in the section “Write Code that Interacts with UI controls” and not the HTML-DOM (http://www.w3schools.com/htmldom/default.asp)?
Regards
T
Hey Chris,
Great post! I’m going to be taking the exam soon and this is helping a lot.
One thing: I’m not sure how much linear/radial gradients matter on the exam, but I couldn’t really get the syntax of radial gradients. I found a post on The Art of Web that explains them with a bit more detail. Also, the link you posted says W3Schools but it’s actually linking to CSS-Tricks.
The Art of Web: http://www.the-art-of-web.com/css/radial-gradients/
Thanks,
Andres
I passed the exam today. Thanks a lot for the info and the links. This helped a lot.
Totally 40 questions. Exam Duration: 2 hours
I passed the exam today. Thanks a lot for the information regarding this exam.
Hi I am getting HTTP/1.1 500 Server Error while scheduling the exam please help
Hi Chris,
thanks for your guide. I recently passed the exam by following your links. For readers not familiar with javascript inheritance, prototype, this and scope – I can highly recommend trying it yourself with some simple objects, a web page and perhaps also a web worker.
Thanks,
Harald.
Dear Chris,
Thank you for your effort. You have made my day!
I pass the exam follow your guide, it’s awesome! thank you very much
Check out my blog with my study notes for this exam:
http://moustafa-arafa.blogspot.com/2012/12/study-material-for-programming-html5.html
[...] HTML5 with JavaScript and CSS3 Jump Start that includes small assessments and these resources suggested by folks who have passed the exam.Also see: Free 42 episode video series on HTML5, CSS3, [...]
[...] how did I prepare for this exam? This is THE ultimate study guide (Blogged by Chris: Microsoft Exam 70-480 Study Guide) I recommend everybody to use, it is damn complete and comprehensive that it makes you near [...]
I passed today – The exam is not that dificult. If you prepare with the given resources you will pass easily. Thanks for the fantasitc list of resources.
Thank you, I passed the exam today!
Dear Chris,
Thanks a lot.. My exam date is 26 Dec..
I passed the exam today.
Thank you!
Thanks Chris this is a really useful resource! Taking the exam in February, its really hard to find many resources about it so much appreciated.
Chris,
Thank you for this outline. I passed today and this was very helpful. Thank you for taking the time to do this.
Best regards,
Tom
It is really a very nice and helpful blog.Thanks a lot for your help and effort.
Thank you so much for your valuable inputs. I’ve taken my exam today and have passed with a good 850+ score and your blog post has helped me more than anything else to prepare for the exam. Thanks a lot!
A few helpful hints for others preparing for this exam:
Time isn’t going to be an issue. Given time should be enough for you to go through each question twice!
Master jQuery, especially selectors and ajax.
Learn advanced features of JavaScript (inheritance, prototype, constructor; inheritance was particularly difficult to understand at first, at least for me).
Create your own sample files to test CSS3 features, JavaScript code and the new HTML5 features (and jQuery). There is no better option than handson learning.
Get Windows 8 and VS2012, run codeSHOW (codeshow.codeplex.com) and play with their samples to get a through understanding.
Go through IE10 Guide for Developers (http://msdn.microsoft.com/en-us/library/ie/hh673549(v=vs.85).aspx).
Thanks for the useful study guide Chris. I passed the exam today after reviewing the material you mention in this post. I found the w3schools tryit editors very useful for working out how various JavaScript code works.
Thanks for putting this up! I’m a network engineer who’s trying to add some development skills to my resume… and who know’s maybe I’ll port over to development altogether someday as it seems a lot more interesting and creative than what I do.
Since I had to start somewhere, I decided to set a goal of taking this exam in about six months. I have no idea whether I’ll be ready or not in that time, but I find a deadline to be a helpful thing.
These are some great resources. I took a class in Java in college, but that was a while back so I’m basically a complete noob. Using some of these online resources today I was able to open up Visual Studio and put together a JavaScript calculator using a lot of the material covered by the test. I feel like it was a good start. I’m really looking forward to picking up yet more as I work my way through this list.
Thank you for this guide. I’ll take the exam on Feb 6. Does anyone know any practical test?
[...] used for this test is a bit sloppier than my former posts (Microsoft Exam 70-486 Study Guide and Microsoft Exam 70-480 Study Guide) as well as very incomplete. However, a number of readers have requested that I at least post a [...]
Thanks for the Study guide. It has helped to learn a lot of things and to clear the test as well.
Chris,
Thanks for this study guide. I passed my exam today with 3 days to prepare. I scheduled my exam on Monday for today and freaked out when I learned the scope of the test. I tried to reschedule for next week but I needed to pay $35, so I said screw it. Glad I found this guide when I did.
Just kinda disappointed that there are MS-only specific questions.
Cheers!
[...] Microsoft Exam 70-480 Study Guide [...]
[...] 70-480 study guide [...]
Hey Chris,
Does you know if questions on promises are being asked in the exam?
Fantastic collection of exam materials…Passed the exam with great score.Keep up the good work!!
Radhika,
I was not tested on Promises in the tests outlined for this blog series (70-486, 70-480, & 70-487). However, I would imagine that this is a concept that would be covered on a WinJS test, since the technology is used extensively in that framework. Therefore, my guess is that tests 70-481 & 70-482 probably have questions for this concept. Great question! I hope that my response is helpful.
Hi Chris…… thanks so much… I made the exam yesterday, and I passed. Your tutorial helped me a lot.
Hi Chris,
Thanks heaps for your post. It is very helpful.
Can I also suggest that you add the following tutorial from MSDN?
http://msdn.microsoft.com/en-us/magazine/gg602402.aspx
AND/OR
https://developer.mozilla.org/en-US/docs/JavaScript/Introduction_to_Object-Oriented_JavaScript
I found it helpful to brush up on syntax etc.
Cheers,
Ro
hi, just passed the exam… thank you for this because it covered the topics i didnt learn in the jumpstart tutorial by microsoft
Alas, I found this list the night before my exam. It’s very comprehensive! I’m using it as my study guide for the retake!
Thanks for posting it!!
Dude…I went through only your blog thoroughly before my certification examination and guess what ! I am now Microsoft Certified. Can you believe this !!!…. Thanks Man!!!!
Hi Chris,
Thanks very much for this study guide. I went over it thoroughly and passed the exam yesterday. I plan on using your other two guides to help me with the next tests. Thanks a lot!
Hi Chris,
Just a quick thank you for this awesome guide. I just passed the exam. Now it’s time to go on with your other two guide to set me up for 70-486 & 70-487! Thanks a lot for this complete and comprehensive guide.
regards,
Casper
Hi,
Thanks for the great guide. For the section:
Implement and Manipulate Document Structures and Objects>Write Code that Interacts with UI controls>“programmatically add and modify HTML elements”
Do you think that these two links:
http://www.w3schools.com/htmldom/dom_elements.asp
http://www.w3schools.com/jsref/dom_obj_element.asp
would be more appropriate than:
http://www.w3schools.com/dom/dom_element.asp ?
Hi Chris,
Just wanted to thank you for your guide. I passed the test last week. Now onto 70-487…
Appreesh!
Steve
Great feedback alirezaa110! I’ve added the additional link to that section. I didn’t realize until just now that the previous link I had was specific to the XML DOM.
[...] a similar study guide: http://www.bloggedbychris.com/2012/09/19/microsoft-exam-70-480-study-guide/ (Click the Show/Hide link for each [...]
[...] Blogged By Chris - www.bloggedbychris.com/2012/09/19/microsoft-exam-70-480-study-guide/ [...]
How many questions are on the 70-480 Exam?
Hi Chris,
Just found this really awesome guide to jQuery selectors especially for this exam.
http://home.techphernalia.com/70480/HTML/Selector.html
Greetings, There’s no doubt that your website could be having web browser compatibility issues. Whenever I look at your web site in Safari, it looks fine but when opening in I.E., it has some overlapping issues. I just wanted to provide you with a quick heads up! Besides that, wonderful website!
Hey Chris,
I found an awesome training guide for the 70-480 exam. You can get it this week for only $23. It specifically says it prepares for the 70-480 exam. The title of the book is – Training Guide: Programming in HTML5 with JavaScript and CSS3 by Glen Johnson from O’reilly Books. It is available for early release now in e-book format. Check it out.
Thanks Chris, passed yesterday with the help of your guide and the MVA jump start videos.
Chris, thank you for putting up these reference material. It was highly helpful and I passed the exam with a score of 785. In my opinion, you must include more details on jQuery
Hi Cris!! I passed the exam with a almost good score!!
Thank you so much for the wonderful guide and bringing all useful links together in one place! This guide helped me focus on the reading rather than googling/binging for answers!!
Really appreciate your effort!!
Thanks,
Sam
BTW does anyone here knows the total score of the whole exam? If the passing score is 700, then whats the overall score? 1000?
Hi Chris,
Just a note to say thanks for the study guide. I used it religiously over the past 3 weeks and passed with a 935/1000 today (1st March).
The closures link was possibly the only exception.. reads like a legal document! But there are more accessible pages out there if you Google ‘what is a closure JavaScript’.
On to 70-486..!
Thanks again. Great work.
Rich
Hi Chris,
Just passed the exam; thanks for your great guide. Similar to Casper… I’m moving on to 70-486 & 70-487!
Best regards,
M
Thanks for the Study guide. It has helped to learn a lot of things and do my best to clear the test as well.
waiting for your next blog..
I read books and saw some videos but then I found out this guide.
It’s really complete and clear, I passed my exam last friday! Thanks
Hi Chris cleared the exam today this guide was great thanks for your efforts , for others looking to do the exam if you dont have experience first get a book that has HTML CSS Javascript do a couple of small projects (they are fun to do) and then go through this guide you’ll pass with flying colors…
I appreciate your study guide. I passed the exam today with a score of 978/1000. It was not an easy exam by any means. One must write code to understand everything.
Hi Chris,
I just passed the test – in large measure thanks to your guide. It really helped me prepare. Thank you for putting the effort into compiling the materials and making them available to the rest of us.
Cheers!
Elena
Hello Chris,
So… this is the first Microsof certification I want to take, and i have a question. I understand that there are 40 questions; what type of questions are there(e.g multiple chioce, code writing, explanation??).
.
Anyways, thanks a lot for the guide, hope I will pass, even if I have little Html5 or Css3 experience. Will keep you posted after the exam
Me again; just read again the guide, and realised that you already explained how the questions look like. Knew i read something about them, but a lot of info got mixed up in my head, and forgot where. Thanks again.
You can delete my comments
.
This guide is awesome, i just pass the exam today studying for one week, thank you.
Thanks Chris, your article provided a lot of help in preparing for 70-480
Thanks so much… I made the exam today, and I passed. Your tutorial helped me a lot.
Thanks for guide! Just passed the exam got score 1000.Your guide was very helpful. Thanks again.
I cleared my exam today and foloowing link is sufficient as it covers complete syllabus.
http://blog.beckybertram.com/Lists/Exam%2070480%20Study%20Guide/AllItems.aspx
just read these for 1 hour for 1 week (worked for me) and u will clear exam.
Hi Chris
Thanks for the guide. Just passed the test today.
Again much appreciated.
Andrew
Chris,
Thank you so much for the guide, it is very very useful and helps students studying for 70-480.
If anyone is interested in Web Sockets, the following may help:
http://www.tutorialspoint.com/html5/html5_websocket.htm
http://www.asp.net/vnext/overview/signalr/signalr-and-web-sockets
For regular expressions learning, the following site is brilliant – an on-line editor:
http://www.rubular.com/
Many thanks..
Tks for this post!
I’ll take the test this week…
Here’s a nice HTML5 guide that I’ve found: http://diveintohtml5.info/
thanks for such a useful tips,this will be helpful for me in exam
Hi Chris,
Just to send you a feedback: yes, this guide was very helpfull!
I’ve studied basically using your Guide + The Jumpstart videos https://www.microsoftvirtualacademy.com/training-courses/learn-html5-with-javascript-css3-jumpstart-training + http://diveintohtml5.info/
I just passed the exam!
Congrats for the initiative!
Hey Chris,
Thanks for this guide. I passed my exam today with a score of 850 and I owe a lot of it to this guide that you have compiled. Keep up the good work!
[...] If you’re looking for a great guide on the topics covered, use http://www.bloggedbychris.com/2012/09/19/microsoft-exam-70-480-study-guide/ [...]
Hi,
.
Thanks to you I passed the exam. This is the only guide I used for studying beside the Microsoft Jumpstart, and I scored 935, with little previous experience in web development. So, your guide is quite complete
Thank you!
1000???!?!? That is awesome Chandu! Congrats!!
Questions include all, but “explanation”. There will be multiple choice (single answer), multiple choice (multiple answer), and code writing (through drag and drop interface).
Yes Samuel, it is 1000. Therefore a 100% would be 1000/1000.
Thanks forex. I will look into the issues w/ browser compatibility. The site design could definitely use some work.
idapzcmphhfeczdisjt, Phen375, NsryTkR, [url=http://phen375web.com/]Phen 375[/url], rjpQyjn, http://phen375web.com/ Buy phen 375, vNVvpFL.
Really great guide. Thank you very much! :•)
Today i passed the exam with 935/1000, this post has helped me a lot.thanks
This is very fascinating, You are a very professional blogger.
I have joined your feed and stay up for in quest of more
of your magnificent post. Also, I’ve shared your website in my social networks
Hi Chris.
I’m about to take the MCSD Web Apps certification, and have a question: How big a part does Windows 8 play in this exam? (My workplace does not use Windows 8 yet, so unless I find another computer with Windows 8, I’m stuck on Windows 7) Will it be possible, in your opinion, to take the exam just fine using Windows 7 for the preparation?
Is node.js part of the certification exam?
Hi Chris,
I am interested to start my career as web developer and I am fresh (don’t have any experience with HTML, JavaScript and CSS)….Can you please show me a way to start? Is it worth for anyone like me to take and pass this exam 70-480???
IT background: I am CompTIA A+, MCSA: Windows 7.
Thank you!
node.js is not a part of any of the MS exams
Michael,
To study for the MCSD test Win 7 + VS 2012 will be sufficient.
I passed the 70-480 exam. Thanks to this blog, I was more confident.
Your link for:
CSS Structure and Rules (htmlhelp.com)
Covers “reference elements correctly”
Seems to give wrong information regarding !important:
“Authors should be wary of using ! important rules since they will override any of the user’s ! important rules.”
as well as other places in the article mentioning the same thing.
But the correct implementation of !important from http://www.w3.org/TR/CSS21/cascade.html:
By default, rules in author style sheets have more weight than rules in user style sheets. Precedence is reversed, however, for “!important” rules.
Meaning that the User’s rules will override the Author’s if they are both !important.