Preparing for Microsoft 70-480 Exam. Part 1

By

August 26, 2012Featured16 Comments

I have been working as a front-end developer for roughly half a year. To prove myself that I have learned a lot and that I can successfully learn even more I have decided to pursue the brand new “MCSD: Web Applications” certificate from Microsoft. The certificate has three prerequisite exams:

  • Programming in HTML5 with JavaScript and CSS3 (70-480)
  • Developing ASP.NET MVC 4 Web Applications (70-486)
  • Developing Windows Azure and Web Services (70-487)

To be honest I have absolutely zero experience with the later two technologies: MVC4 and Azure. So this is going to be quite a challenge. As far as HTML5 goes, I have some experience with that and I am hoping to prepare for this exam in about a month or so. In order to better remember what I have learned I will be writing everything I study in this blog. I hope that this will be helpful not only for me, but for others who decide to take 70-480 exam. Also I have not seen the exam or any “brain dumps” of that exam so I will be preparing according to the description at the MS exam page.

According to the exam page all of the questions are divided into 4 groups:

  • Implement and Manipulate Document Structures and Objects (24%)
  • Implement Program Flow (25%)
  • Access and Secure Data (26%)
  • Use CSS3 in Applications (25%)

However, if you take a closer look at the questions inside those 4 groups you will notice that JavaScript takes up about 70% of the actual questions, CSS3 about 20% and HTML about 10%. I think that is so because in reality there have not been many changes or additions to the actual HTML markup. All the new and hyped HTML5 features are actually JavaScript API’s, like web workers, Geo location etc.

So in order to better separate the material that I am going to review I will not follow the structure of those 4 question groups. Instead, I am planning to write 4 or more blog posts in the following order: HTML, CCS3, JavaScript. This should help to concentrate better on the new things that have to be learned. I will also be adding a lot of links for further reading. This should help you to broaden your understanding of the topic even more. Furthermore, I should probably point out again that I have not seen the actual exam questions and thus I do not know what questions might come up. So it is much smarter and safer to learn a little more than it is described in the exam page.

So without further ado, let’s look at HTML related questions and topics.

  • Create the document structure.
  • 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
  • Implement media controls
  • Choose the appropriate controls based on requirements
  • Implement HTML5 canvas and SVG graphics
  • Validate user input by using HTML5 elements
  • Implement HTML input types
  • Content attributes (for example, required) to collect user input

So in reality this is not very much. As I have already said my prediction is that HTML is going to account for about 10% of the overall number of questions. Let’s look at those topics in more detail.

First three topics/questions a highly related to one another, they are all based on the same premise that a good HTML5 developer should be able to write semantic, valid and concise HTML markup. There are quite a few of these new semantic elements, check out the list here. Most common ones are very obvious <header><footer><article>. I imagine that in the exam there should be several questions about which tag to use or maybe which tags are placed incorrectly so I think it is wise to learn them all. I will not write any examples of semantic HTML here because this blog post is getting rather lengthy already. I will post some links at the bottom of this page which include code examples.

There is a part about markup for search engines. I think that these questions will be related to microdata. Microdata is not exactly HTML but search engines use it and HTML5 supports it. You can read more about it here. To be honest, this is a rather deep topic which I have little knowledge of. So personally I will read a lot about this.

Screen reader markup should be about WAI-ARIA. I do not know much about this topic so I will be reading some additional materials too. What I suspect is that there will be questions about “role=” attributes, because Windows 8 Metro app examples use a lot of this markup. So it is logical that this exam will also test and encourage such markup.

So the other topic is media controls. There are only two of them <audio><video> and they can be as simple as this:  <video src=”http://example.com/movie.mp4″ controls></video>. The thing that bothers me about this question is the part “Choose the appropriate controls based on requirements”, maybe there is something that I am missing, because it does not make any sense to say that, when there are only two media tags. I mean if you can’t choose the appropriate tag for video or audio, it is safe to say you shouldn’t be allowed to develop software at all. You can read more about audio and video controls here. There is also the JavaScript side of these controls, but we will talk about it later.

OK, now let’s look at Canvas vs. SVG. I do not have a lot of working experience with either of these, but form HTML perspective there is nothing special about these tags. To make a <canvas> element is as simple as <canvas id=”newCanvas” width=”200″ height=”200″></canvas>. SVG is basically the same. However, drawing on these elements is fundamentally different. I will have too read a lot about these and probably make several example projects just to check if I understand them properly.

The final HTML topic is forms and user input. This topic is rather wide, because there have been several additions to the form and input field markup. <tel><color><number><range><date> are all new input types. There are several more that I have not mentioned. Almost every one of these also have some additional markup. For example <input type=”datemin=”2010-08-14″ max=”2011-08-14″ value=”2010-08-14″/> Example taken from here. Also there are tags which specify if the field is required or not. All in all, this is one of the major areas where I will have to learn actual new markup. For further reading about HTML5 form markup I suggest this page.

To sum up, we have just looked at what types of questions might be present in the MS 70-480 exam. We have identified the major areas of reading about markup – HTML part of the exam. Now what remains, is to go ahead and learn these things. It will probably take me up to a week to go through all of the markup. Later I will probably update this post with some more links and maybe code snippets. Also I would like to again remind that I do not know if these questions will actually come up in the exam, I am simply following the guidelines in the exam description.

 

Further reading on HTML questions:

Best site about HTML5 – http://www.html5rocks.com

Semantic markup, semantic markup 2

Microdata, Schema.org, Google on Rich Snippets

ARIA in the real world

16 Responses to “Preparing for Microsoft 70-480 Exam. Part 1”
  1. Gonçalo

    Great post! Thanks.

  2. Nick Rodriquez

    I am planning to take 70-480 in mid December. I stumbled upon this post while looking for appropriate resources in order to prepare for this exam. I am a C# Developer by profession, but most of my programming till now has been concentrated on Windows Forms and a bit of ASP.NET Web Forms. With Microsoft now placing major emphasis on JavaScript (And its own TypeScript), its time to upgrade my skills.

    I have touched JavaScript “just on the surface” during my ASP.NET Web Forms programming days. Needless to say, I have never dived deep into JS, jQuery or related technologies. From the onset, this exam (70-480) seems simple, nonetheless, many people have failed this exam miserably with this mindset. This is a difficult exam and I am glad you are blogging about your preparations. Helps me keep motivated!

    I have gone through some practice exams (not brain-dumps – I don’t believe in cheating) and if the real questions are anything near to the level of difficulty of the practice exams, then I am in real trouble.

    Some of the preparation resources I am using are the HeadFirst series on HTML5 and JavaScript and the online Microsoft Virtual Academy. I am also planning to purchase some training videos from either AppDev or Pluralsight depending on quality and content.

    Gemi, please continue blogging about your journey and I am confident we can pass this exam with a combined effort.

  3. jojoba oil

    Many patients are suffering from acne and other skin disease.
    It is also anti-fungal so if you are unlucky enough to acquire a fungal infection this can help with that.
    Let’s just say there’s a lot of tears being shed, and I kind of expect it to go on for
    a few more weeks, at least – healing process, you know.

  4. grapeseed oil

    This oil is also good for your skin, hair and eyes. It can help
    with the prevention and fading of scars and stretch marks.
    As a result, grape oil can be used for many cooking practices like stir
    frying, deep frying and saut.

  5. Cawagged13c

    http://www.konferencjewpolsce.org.pl/dachowiec
    Shopping for a used or new automobile can be a challenging approach should you not know what you really are carrying out. By educating yourself about auto buying before you decide to visit the dealer, you could make points easier for yourself. The following tips might help your next purchasing getaway become more pleasurable.

    Constantly deliver a auto mechanic together when looking for a new vehicle. Automobile sellers are popular for offering lemons and you may not desire to be their next target. If you can not have a technician to consider vehicles together with you, at the very least ensure that you have him review your last choice before you buy it.

    Know your restrictions. Before starting store shopping for your forthcoming auto or pickup truck, determine what you can manage to spend, and follow it. Don’t neglect to feature desire for your computations. You will definitely spend close to 20 percent as an advance payment too, so be well prepared.

    Well before seeing a dealership, know which kind of vehicle you want. Investigation all of you possibilities just before buying to help you figure out what works best for your financial allowance and household needs. Do your homework to discover how much you should pay for the possible car.

    Prior to signing any contract spend some time to study each line, like the small print. If there is anything listed you do not recognize, usually do not signal till you have an answer that you just recognize. Unsavory salesmen are able to use a contract to put a lot of charges that were not discussed.

    Should you keep your previous assistance in mind when that you go buying a automobile, you will end up more likely to get a good deal. Investing in a auto does not have to become a headaches. Just use the guidelines out of this post and you can get the vehicle you need at the excellent value.

  6. 76Leland

    Hello admin, i must say you have high quality posts here.
    Your website can go viral. You need initial traffic boost only.
    How to get it? Search for: Mertiso’s tips go viral

  7. HarveyNum

    bInARyopTONssvERGE.COm

  8. AstaffeHok

    latest online tether shop

  9. Artisanhyr

    ???????,??????????! .

  10. Artisanvny

    ???????,??????????! .

  11. Zapatillas Adidas online

    Helpful information. Fortunate me I discovered your website by chance, and I am shocked why this coincidence did not happened earlier!
    I bookmarked it.

  12. mcmillan

    Hello, I’m Colleen McMillan.
    Welcome to my website . I started writing in my early school years after a creative writing assignment for my English teacher. I did creative writing for almost a year before I thought about doing something else.
    I had always loved doing non-fiction writing because I’m passionate about learning. When you combine writing talent with a love of learning, dissertation writing only makes sense as a job.
    I’m passionate about aiding the students of the future in their school career. When they don’t like their assignment , I am there to help.

    Colleen McMillan – Professional Academic Writer – //www.45northresearch.com/]45northresearchCorp

  13. READY EARNINGS ON THE INTERNET from $5958 per day: http://unsaneko.ml/reg1i

    Fast and Big money on the Internet from $5618 per day: https://jtbtigers.com/get10bitcoins684325

  14. HeatherZem

    С высокой периодичностью возникают обстоятельства, когда нужно быстро решить простую проблему или получить полезную информацию. В сети распространены разнообразные сайты советники. Об одном из таких ресурсов и будет рассказано в данной статье.
    Журнал – “ALLQA” описывает разные ситуации. Некоторые из них.
    – Рубрики успех в бизнесе и карьере повествуют о том: как продвигаться по карьерной лестнице, повышать рабочие знания и свои навыки, составлять резюме и т.п.
    – Вопросы моды – позволяют получить ответы о известных модных профессиях – парикмахерах, стилистах, визажистах. Получить информацию про крупные косметические бренды и тенденции в сфере моды и красоты.
    – Проблемы кулинарии – как быстро приготовить вкусный ужин из простых продуктов, список продуктов для улучшения зрения, искусство приготовления каш из тыквы.
    – Психология отношений – животрепещущие мифы о беременности и родах, ошибках в воспитании детей и др.
    – Интересные данные о автомобильной тематике, работе в саду и огороде, спорте – какой вид спорта позволяет быстро похудеть, как совместить работу в саду и похудение или почему нужно проходить техосмотр.
    Сайт: https://allqa.ru/o-ede/pochemu-koshki-priveredlivy-k-ede
    Кликайте на страничку ресурса в сети и знакомьтесь с интересными вам статьями. Только полезная и эффективная информация.

  15. rufus

    My name is Rufus. And I am a professional Content writer with many years of experience in writing.

    My main focus is to solve problems related to writing. And I have been doing it for many years. I have been with several groups as a volunteer and have assisted people in many ways.
    My love for writing has no end. It is like the air we breathe, something I cherish with all my being. I am a full-time writer who started at an early age.
    I’m happy that I`ve already sold several copies of my works in different countries like Canada and China and others too numerous to mention.
    I also work in a company that provides assistance to many clients from different parts of the world. Students always come to me because I work no matter how difficult their projects are. I help them to save money, because I feel happy when people come to me for writing help.

    Professional academic Writer – Rufus – http://www.technlogyreview.com Team

  16. Jkbdzzy

    Kegctgj

    paul.elliott73@googlemail.com
    :

Leave a Reply